quart-trio

A Quart extension to provide trio support


Keywords
quart
License
MIT
Install
pip install quart-trio==0.11.1

Documentation

Quart-Trio

Build Status docs pypi python license

Quart-Trio is an extension for Quart to support the Trio event loop. This is an alternative to using the asyncio event loop present in the Python standard library and supported by default in Quart.

Quickstart

QuartTrio can be installed via pip,

$ pip install quart-trio

and requires Python 3.8 or higher (see python version support for reasoning).

A minimal Quart example is,

from quart import websocket
from quart_trio import QuartTrio

app = QuartTrio(__name__)

@app.route('/')
async def hello():
    return 'hello'

@app.websocket('/ws')
async def ws():
    while True:
        await websocket.send('hello')

app.run()

if the above is in a file called app.py it can be run as,

$ python app.py

To deploy in a production setting see the deployment documentation.

Contributing

Quart-Trio is developed on GitHub. You are very welcome to open issues or propose merge requests.

Testing

The best way to test Quart-Trio is with Tox,

$ pip install tox
$ tox

this will check the code style and run the tests.

Help

The Quart-Trio and Quart documentation are the best places to start, after that try searching stack overflow, if you still can't find an answer please open an issue.