A modern Python web framework filled with asynchronous salsa.
Project description
Bocadillo
Bocadillo is a Python web framework that provides a sane toolkit for quickly building performant web applications and services, while encouraging best practices and keeping developer experience in mind.
Under the hood, it uses the Starlette ASGI toolkit and the lightning-fast uvicorn ASGI server.
Quick start
Install it:
pip install bocadillo
Build something:
# app.py
from bocadillo import App, Templates
app = App()
templates = Templates(app)
@app.route("/")
async def index(req, res):
# Use a template from the ./templates directory
res.html = await templates.render("index.html")
@app.route("/greet/{person}")
async def greet(req, res, person):
res.media = {"message": f"Hi, {person}!"}
if __name__ == "__main__":
app.run()
Launch:
python app.py
Make requests!
curl http://localhost:8000/greet/Bocadillo
{"message": "Hi, Bocadillo!"}
Hungry for more? Head to the docs.
Contributing
See CONTRIBUTING for contribution guidelines.
Changelog
See CHANGELOG for a chronological log of changes to Bocadillo.
Roadmap
For a list of short, mid and long-term feature ideas currently in our scope, see the Roadmap.
To see what has already been implemented for the next release, see the Unreleased section of our changelog.
Credits
Logo:
- Designed by Florimond Manca.
- Sandwich icon designed by macrovector.
Project details
Release history Release notifications | RSS feed
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
Hashes for bocadillo-0.12.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5beff345f77e05aad9c172bb76bfc50912f7a519cea6c0bf7b11dae1d6779416 |
|
MD5 | 81372f170641952c625cb612fa161168 |
|
BLAKE2b-256 | 70c5b1ba2421967a966e0cf73046c767f578b26d42bc49e7347096764e4dad19 |