Posts by VinCor • 49 points
5 posts
-
0
votes1
answer33
viewsA: Error in Flask development environment
From what I’ve been researching in the flask repository, this seems to be a problem in the library itself but has been fixed. A user opened a ticket in May:…
-
0
votes1
answer35
viewsA: Problem with python modules
This confusion is common when we have installed more than one version of python or use a virtualenv to package libraries needed for a particular project. If you have more than one version of python,…
-
0
votes1
answer59
viewsA: How to Scrap with Python to compare prices on a shopping site?
If the problem is just the value being as string, just convert it to float. preçoatual =…
-
0
votes1
answer39
viewsA: Add a number to another
Okay, if I understand correctly, your wish would be to "concatenate" the meters of the is to multiply by eight. In case this is possible yes, just convert the value of the counter to a string and…
-
0
votes1
answer50
viewsA: Load multiple functions on main page using Django
The path function you are using serves to register Urls, and the first parameter you pass to this function is a string with the URL you want to register. So when a user writes in the browser the…