Skip to main content

Asynchronous web framework.

Project description

PyPI version info PyPI supported Python versions PyPI downloads Documentation Status License: MIT Discord support server

baguette is an asynchronous web framework for ASGI servers.

Installation

Python 3.6 or higher is required.

Run the following command:

pip install baguette

Quickstart

Create an application, in example.py:

from baguette import Baguette

app = Baguette()

@app.endpoint("/")
async def index(request):
    return "<h1>Hello world</h1>"

Run the server with uvicorn (pip install uvicorn):

uvicorn example:app

Contribute

Support

If you are having issues, please let me know by joining the discord support server at https://discord.gg/8HgtN6E

License

The project is licensed under the MIT license.

Project details


Download files

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

Source Distribution

baguette-0.0.2.tar.gz (5.7 kB view hashes)

Uploaded Source

Built Distribution

baguette-0.0.2-py3-none-any.whl (7.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page