quart
Package — Web FrameworkPython 3.7+Intermediate
Async reimplementation of Flask using ASGI instead of WSGI
Quick Info
- Documentation
- Official Docs
- Python Version
- 3.7+
- Dependencies
- Werkzeug, Jinja2, itsdangerous, click, hypercorn
- Install
pip install quart
Learn by Difficulty
Quick Example
python
# Install: pip install quart import quart # Basic quart usage print(f"Using quart") # See documentation for detailed examples
quart is a third-party package. Async reimplementation of Flask using ASGI instead of WSGI. Install with: pip install quart
Try in PlaygroundTags
packagewebframeworkbackend