A toolkit to write HTTP/1.1 web services and applications, with first class support for streaming
Project description
__ ._.
____ ___ ____/ |_ _______ _____ | |
_/ __ \ \ \/ /\ __\\_ __ \\__ \ | |
\ ___/ > < | | | | \/ / __ \_ \|
\___ >/__/\_ \ |__| |__| (____ / __
\/ \/ \/ \/
Extra is an toolkit to write HTTP/1.1 web services and applications, with first class support for streaming.
It is focused on providing primitives for creating web services, implemented to work well both in development and production while providing a great developer experience.
Key Features:
- Client and server
- Streaming reads and writes, lazy decoding and encoding
- Embedded asynchronous HTTP/1 development server
- Only requires Python stdlib
- Good baseline performance (5-10K RPS on average hardware)
Design principles:
- Declarative: decorators to expose methods as web services
- Stream-oriented: encourages writing stream processing handlers
- Service focused: template are left out, but lots of building blocks are available for services.
Highlights:
- Pre/post conditions for request handlers
- HTML templating (plays nice with HTMX)
- CORS support
- Configurable proxy support
- Integrated logging
- Regexp-based tree router
Extra is the successor of Retro, one of the oldest decorator-based framework for HTTP applications and built on the 15+ years of experience developing and maintaining that toolkit.
Like Retro, Extra is designed as a kit, providing easily composable building blocks that help you build fast, readable and resilient web services.
Similar projects include Quart, Starlette, bareASGI and of course, FastAPI.
Example: Hello, World! Service
Here is helloworld.py:
#!/usr/bin/env uv run --with extra-http
from extra import Service, HTTPRequest, HTTPResponse, on, run
class HelloWorld(Service):
@on(GET="{any}")
def helloWorld(self, request: HTTPRequest, any:str) -> HTTPResponse:
return request.respond(b"Hello, World !", "text/plain")
app = run(HelloWorld())
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
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 extra_http-1.0.10.tar.gz.
File metadata
- Download URL: extra_http-1.0.10.tar.gz
- Upload date:
- Size: 58.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a633425b4027d290ffef9574847c8d3db9b724c0387b5dcb3cdd22970ec276a9
|
|
| MD5 |
d53c01ab539b29700902db1d870bf0a2
|
|
| BLAKE2b-256 |
637c478ac5b87253650a68107b91a4df5403f8ae76ae8fefa2c2bab77f864355
|
File details
Details for the file extra_http-1.0.10-py3-none-any.whl.
File metadata
- Download URL: extra_http-1.0.10-py3-none-any.whl
- Upload date:
- Size: 67.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f39b84f384f4131562b1a43dd2ffbc0e66b5c785fb2a47eb07db0a4a669ce2dc
|
|
| MD5 |
b979f659f7035dca9c3d4ad48336a8fb
|
|
| BLAKE2b-256 |
6892fc52d398170a19b62662474ddba0ad161f99152b9b9e61c2f96ec586c7fc
|