You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
462 B
Markdown

1 year ago
# Flask example
1 year ago
This is a Flask example that you can use to make web applications.
1 year ago
## Install
1 year ago
You need to install Flask on your computer (or on the server you are working):
1 year ago
`$ pip3 install flask`
1 year ago
## Run the web application
1 year ago
You can run the example application in different ways, here two examples:
1 year ago
* `$ python3 app.py`
* `$ flask --debug run`
1 year ago
## Documentation
1 year ago
* <https://flask.palletsprojects.com/en/2.2.x/>
* <https://pzwiki.wdka.nl/mediadesign/Flask>