Quart (original) (raw)

Project description

Quart is an async Python web application framework. Using Quart you can,

Quickstart

Install from PyPI using an installer such as pip.

$ pip install quart

Save the following as app.py. This shows off rendering a template, returning JSON data, and using a WebSocket.

from quart import Quart, render_template, websocket

app = Quart(name)

@app.route("/") async def hello(): return await render_template("index.html")

@app.route("/api") async def json(): return {"hello": "world"}

@app.websocket("/ws") async def ws(): while True: await websocket.send("hello") await websocket.send_json({"hello": "world"})

$ quart run
 * Running on http://127.0.0.1:5000 (CTRL + C to quit)

To deploy this app in a production setting see the deployment documentation.

Contributing

Quart is developed on GitHub. If you come across a bug, or have a feature request, please open an issue. To contribute a fix or implement a feature, follow our contributing guide.

Help

If you need help with your code, the Quart documentation and cheatsheet are the best places to start. You can ask for help on the Discussions tab or on our Discord chat.

Relationship with Flask

Quart is an asyncio reimplementation of the popular Flask web application framework. This means that if you understand Flask you understand Quart.

Like Flask, Quart has an ecosystem of extensions for more specific needs. In addition, a number of the Flask extensions work with Quart.

Migrating from Flask

It should be possible to migrate to Quart from Flask by a find and replace offlask to quart and then adding async and await keywords. See themigration documentation for more help.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Built Distribution

Filter files by name, interpreter, ABI, and platform.

If you're not sure about the file name format, learn more about wheel file names.

Copy a direct link to the current filters

File details

Details for the file quart-0.20.0.tar.gz.

File metadata

File hashes

Hashes for quart-0.20.0.tar.gz | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 08793c206ff832483586f5ae47018c7e40bdd75d886fee3fabbdaa70c2cf505d | | | MD5 | 05e155791d94a534c5522919658ed54f | | | BLAKE2b-256 | 1d9d12e1143a5bd2ccc05c293a6f5ae1df8fd94a8fc1440ecc6c344b2b30ce13 | |

See more details on using hashes here.

Provenance

The following attestation bundles were made for quart-0.20.0.tar.gz:

Publisher: publish.yaml on pallets/quart

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file quart-0.20.0-py3-none-any.whl.

File metadata

File hashes

Hashes for quart-0.20.0-py3-none-any.whl | Algorithm | Hash digest | | | ----------- | ---------------------------------------------------------------- | | | SHA256 | 003c08f551746710acb757de49d9b768986fd431517d0eb127380b656b98b8f1 | | | MD5 | 2264aa6acf75bdd15591a528784e8526 | | | BLAKE2b-256 | 7ee9cc28f21f52913adf333f653b9e0a3bf9cb223f5083a26422968ba73edd8d | |

See more details on using hashes here.

Provenance

The following attestation bundles were made for quart-0.20.0-py3-none-any.whl:

Publisher: publish.yaml on pallets/quart

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.