A modern async python3 web framework
Project description
Albatross
A modern, fast, simple, natively-async web framework. (Python3.5 only)
from albatross import Server
import asyncio
class Handler:
async def on_get(self, req, res):
await asyncio.sleep(0.1)
res.write('Hello, %s' % req.args['name'])
app = Server()
app.add_route('/{name})', Handler())
app.serve()
Notes for Usage
For now (pre 1.0.0), I’m making no claims about API stability (but will try to avoid changes). That said, I’m using this framework for some small projects, and it is a joy to work in! Reach out if you want to use this, as I’m happy to incorporate your feedback!
Install
pip3 install albatross3
Features
You can read the entire codebase in about 30 minutes.
It’s natively async. Doing await database calls or controller calls in your views just works!
This works with the uvloop project, to make your server fast!
Benchmarks
My benchmarks indicate that albatross is as fast as aiohttp, both of which are twice as fast as tornado. You can run the benchmarks by poking around in the bench/ folder.
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
File details
Details for the file albatross3-0.6.3.tar.gz
.
File metadata
- Download URL: albatross3-0.6.3.tar.gz
- Upload date:
- Size: 8.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4fc41ccea351e9c5e4b5c7c29568c39d29c23057e4e87fd95dddae6436f6304a |
|
MD5 | ccfcf31740a1d880361d499e74bfb5fc |
|
BLAKE2b-256 | aef53910ea235780c9f90d7fa9185817f7e5599d596949c50d01c2775bb6ccd6 |
File details
Details for the file albatross3-0.6.3-py3-none-any.whl
.
File metadata
- Download URL: albatross3-0.6.3-py3-none-any.whl
- Upload date:
- Size: 11.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9677b715211b14bc11bf3ed07a5affe412f7012f529129802b34937205d0f5af |
|
MD5 | ceb7b53193a881b78cf96fd59ac2d310 |
|
BLAKE2b-256 | 9638f72d0f5fefddb2f82c970bbb3722ebab8767443b23761b4e8ba50c27671d |