Posts by Paulo França • 1 point
2 posts
-
-1
votes1
answer98
viewsA: python - strange loop
I created this function that removes the bars from the string to work with the date in string format that contains only the numbers ("31/12/2999" -> "31122999"). Inside the function is a for that…
-
0
votes1
answer89
viewsA: Extract data from a website and play in your Flask web application
It has a lib called requests (Pip install requests), which is used to make requests. In the example below I get and remove the json from the request reply. from requests import get url =…