15 Chapter 15: Web Development with Python
Python is not only useful for scripts and data analysis—you can also use it to build websites and web applications. In this chapter, you’ll see how Python can:
- Respond to requests from a web browser
- Generate HTML pages dynamically
- Handle user input from forms
- Provide simple APIs
You’ll build up from a minimal web server to a very small but complete web application using Flask, a popular beginner‑friendly web framework.
15.1 How the web works (basic overview)
15.2 Introduction to Flask
15.3 Creating a simple web server
15.4 Routing and templates
15.5 Handling user input (forms)
15.6 Very basic APIs
Views: 352
KAHIBARO