This project is for practicing Python web development using Flask and Quart.
There are two branches:
-main: version built with Flask (synchronous) -quart-async: version using Quart (asynchronous)
- Simple web routes with query and route parameters
- HTML templates using Jinja2
- Basic page structure (home, about, contact)
- Quart version uses async functions
-
Clone the repository and navigate into the folder.
-
Create and activate a virtual environment.
-
Install the required package:
- Flask for main
- Quart for quart-async
-
Run the app with: python app.py