= Quart
{wiki=Quart}
Quart is an asynchronous web framework for Python that is designed to be compatible with Flask while providing the capabilities of asyncio for concurrent handling of requests. It is built on top of the ASGI (Asynchronous Server Gateway Interface) standard, which allows it to handle multiple connections simultaneously, making it more scalable than traditional synchronous frameworks. Key features of Quart include: 1. **Flask Compatibility**: Quart shares a similar API with Flask, making it easier for Flask developers to transition to Quart.
Back to article page