quart icon indicating copy to clipboard operation
quart copied to clipboard

An async Python micro framework for building web applications.

Results 94 quart issues
Sort by recently updated
recently updated
newest added

This PR brings Quart's CLI in line with Flask's by exposing an explicit `--debug/--no-debug` option on the `quart run` command. ``` Usage: quart run [OPTIONS] Run a local development server....

Hello! Thanks you kindly for your work on Quart. This pull request addresses #439 by detecting [URI schemes that don't use a port number](https://hypercorn.readthedocs.io/en/latest/how_to_guides/configuring.html#configuration-options) and passing the correct configuration to...

When I try to run my app over a UNIX socket it seems that Quart appends a bogus port number to the socket name. For example: ``` quart run --host=unix:///$(pwd)/fun.sock...

The documentation in https://quart.palletsprojects.com/en/latest/how_to_guides/middleware/ and https://quart.palletsprojects.com/en/latest/reference/source/quart.app/#quart.app.Quart.asgi_app says to install middleware using a pattern like: ```py app.asgi_app = middleware(app.asgi_app) ``` However, following that pattern in practice produces type errors with `mypy`...