< Flask
This lesson shows how to display dynamic content pages using Flask.
Readings
Multimedia
Activities
- Create or modify the Flask application page.
- Modify main.py or app.py to include the following code:
import flask
app = flask.Flask(__name__)
@app.route('/')
def root():
return str(datetime.datetime.now())
if __name__ == "__main__":
app.run(host='0.0.0.0', port=5000)
- Run the program.
- Refresh the output window or open a browser window to http://localhost:5000.
- Refresh the output window again to see the dynamic content.
- Stop the program.
- Modify main.py or app.py to include the following code:
References
This article is issued from Wikiversity. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.