Posts by Rodrigo Augusto Martins • 41 points
7 posts
-
0
votes1
answer88
viewsQ: How to get the current user in the HTML page to insert in the Flask Python database
Hello I need to get the user who is logged in to the system for when he does an Update or Insert in the database enter his record, currently in the template I can already get the user name with this…
-
0
votes1
answer145
viewsQ: Using IF ELSE JINJA2 Python and Flask
I’m starting web development using Python and Flask, I am trying to change the class of a TAG but analyzing the value I am going through to be reinderized follows below how I am doing to try to use…
-
0
votes1
answer26
viewsA: Deployment Python/Flask Application Failure in Heroku
Personnel managed to solve the case, I only changed the main file as follows:: if __name__ == "__main__": port = int(os.environ.get("PORT", 5000)) app.run(host='0.0.0.0', port=port) Application…
-
-2
votes1
answer26
viewsQ: Deployment Python/Flask Application Failure in Heroku
Hello, I’m starting my journey with Python and Flask, I developed an application and I’m currently trying to upload it to Heroku, but I have the following error message in the panel log: I…
-
1
votes1
answer197
viewsQ: Cassandra installation error - DRIVER in python
Hello, I’m trying to create a development environment with python and Cassandra, however I’m having difficulties to install the connector in python, follows below the environment I currently have…
-
0
votes0
answers498
viewsQ: Python code to generate event in Google Calendar
I would like a help to create a code using Python to generate events in Google’s calendar, I already have the API set up and released for this action, but I can’t make my code work, I’ve done this…
-
2
votes2
answers26379
viewsQ: Returning only the highest value of a Python list
I have the list ['4', '07', '08', '2017', '364', '355673087875675'] and would like to re a formula to return the higher value, which in this case would be the '355673087875675', tried to use the…