Chapter 15: Web Development with Python
Flask: A Lightweight Web Framework
pip install flaskfrom flask import Flask
app = Flask(__name__)
@app.route("/")
def home():
return "Hello, Flask!"
if __name__ == "__main__":
app.run(debug=True)Django: A Full-Featured Web Framework
Building REST APIs
Templates in Flask and Django
Exercises
Best Practices
PreviousChapter 14: Testing and DebuggingNextChapter 16: Data Science and Machine Learning with Python
Last updated