A familiar HTTP Service Framework for Python.
Project description
Responder
A familiar HTTP Service Framework for Python, powered by Starlette.
import responder
api = responder.API()
@api.route("/{greeting}")
async def greet_world(req, resp, *, greeting):
resp.text = f"{greeting}, world!"
if __name__ == "__main__":
api.run()
$ pip install responder
That's it. Supports Python 3.10+.
The Basics
resp.textsends back text.resp.htmlsends back HTML.resp.contentsends back bytes.resp.mediasends back JSON (or YAML, with content negotiation).resp.file("path.pdf")serves a file with automatic content-type detection.File(...)uploads use streamedUploadFileobjects;await file.save(path)writes them to disk.req.headersis case-insensitive.req.paramsgives you query parameters.- Both sync and async views work — the
asyncis optional.
Highlights
# Type-safe route parameters
@api.route("/users/{user_id:int}")
async def get_user(req, resp, *, user_id):
resp.media = {"id": user_id}
# HTTP method filtering
@api.route("/items", methods=["POST"])
async def create_item(req, resp):
data = await req.media()
resp.media = {"created": data}
# Route-local hooks
def require_json(req, resp):
if not req.is_json:
resp.status_code = 415
resp.media = {"error": "JSON required"}
@api.post("/events", before=require_json)
async def events(req, resp):
resp.media = await req.media()
# Local dependencies
from responder import Depends
def current_user(req):
return req.headers.get("X-User")
@api.get("/me")
def me(req, resp, *, user=Depends(current_user)):
resp.media = {"user": user}
# Route-level auth with OpenAPI security
from responder.ext.auth import BearerAuth
auth = BearerAuth(tokens=["s3cret"])
@api.get("/private", auth=auth)
def private(req, resp, *, user):
resp.media = {"user": user}
# Class-based views
@api.route("/things/{id}")
class ThingResource:
def on_get(self, req, resp, *, id):
resp.media = {"id": id}
def on_post(self, req, resp, *, id):
resp.text = "created"
# Before-request hooks (auth, rate limiting, etc.)
@api.route(before_request=True)
def check_auth(req, resp):
if not req.headers.get("Authorization"):
resp.status_code = 401
resp.media = {"error": "unauthorized"}
# Custom error handling
@api.exception_handler(ValueError)
async def handle_error(req, resp, exc):
resp.status_code = 400
resp.media = {"error": str(exc)}
# Lifespan events
from contextlib import asynccontextmanager
@asynccontextmanager
async def lifespan(app):
print("starting up")
yield
print("shutting down")
api = responder.API(lifespan=lifespan)
# GraphQL
import graphene
api.graphql("/graphql", schema=graphene.Schema(query=Query))
# WebSockets
@api.route("/ws", websocket=True)
async def websocket(ws):
await ws.accept()
while True:
name = await ws.receive_text()
await ws.send_text(f"Hello {name}!")
# Mount WSGI/ASGI apps
from flask import Flask
flask_app = Flask(__name__)
api.mount("/flask", flask_app)
# Background tasks
@api.route("/work")
def do_work(req, resp):
@api.background.task
def process():
import time; time.sleep(10)
process()
resp.media = {"status": "processing"}
Built-in OpenAPI docs, cookie-based sessions, gzip compression, static file serving, Jinja2 templates, and a production uvicorn server.
Route convertors: str, int, float, uuid, path.
Pass problem_details=True to API(...) for RFC 7807-style framework errors
using application/problem+json.
Documentation
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 responder-6.6.1.tar.gz.
File metadata
- Download URL: responder-6.6.1.tar.gz
- Upload date:
- Size: 166.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
987a850c585b024178ae92700ba2b5d6a7732481b6a9b1d4ee4f4c21088d3971
|
|
| MD5 |
b150c0ee9a92a6dbe0136461cc9d5448
|
|
| BLAKE2b-256 |
ea26aac756deab74f4adfcc2b9bae8ff05066521f5e78d5a0fc1fc03e9dad2c0
|
File details
Details for the file responder-6.6.1-py3-none-any.whl.
File metadata
- Download URL: responder-6.6.1-py3-none-any.whl
- Upload date:
- Size: 116.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
173e9303f3ee064e1e531153934fa8586ecff9c079cef50f3665029eeb9a080f
|
|
| MD5 |
81d9413d2e98fffee688a10018ca11af
|
|
| BLAKE2b-256 |
8031c9539f264306db40f291a50ed64c0b778e8c674a6787eb3e08c8a1f26b5a
|