Examples
A few examples on various things you will need to do with Flask.
Last updated
Was this helpful?
A few examples on various things you will need to do with Flask.
Last updated
Was this helpful?
Throughout this example page, I base a lot of the examples on the following repo. Please clone or download the example as a base starting point when I mention the use of that repo.
If you go to the Flask docs you will see a very simple example to quickly teach you the simple concepts and I have that listed below. I would recommend taking a look at the afterward. I got the idea for this better example from .
Create a new file called app.py
, paste the following code, and then inside your terminal run python app.py
.
Don't forget to be inside your virtual environment.
Coming soon...