Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 636 Bytes

File metadata and controls

28 lines (18 loc) · 636 Bytes

Learning Flask & Quart

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)

Features

  • Simple web routes with query and route parameters
  • HTML templates using Jinja2
  • Basic page structure (home, about, contact)
  • Quart version uses async functions

To run

  1. Clone the repository and navigate into the folder.

  2. Create and activate a virtual environment.

  3. Install the required package:

    • Flask for main
    • Quart for quart-async
  4. Run the app with: python app.py