A minimal ASGI-style API framework
Project description
PathiumAPI — Minimal ASGI API Framework
Version 0.1.12 | GitHub | PyPI
PathiumAPI is a small, synchronous-friendly ASGI-style web framework inspired by FastAPI and other micro-frameworks. It focuses on a compact, explicit API for routing, request/response helpers, middleware, and simple route parameter converters. It's ideal for small services, learning, or as a foundation to build more opinionated tooling.
Key Features
- Minimal Core: Dependency-free routing and ASGI handling
- Request/Response Helpers: Simple
RequestandResponseobjects with JSON support - Path Converters: Type-aware parameter conversion (e.g.
{id:int}) - Pydantic Integration: Request body and query parameter validation with
@validate_bodyand@validate_query - OpenAPI Support: Auto-generated OpenAPI 3.0 specs and interactive Swagger UI docs
- Authentication: JWT middleware and helpers for protected routes
- Built-in Middleware: CORS, security headers, rate limiting, logging, and error handling
- CLI Tools: Scaffold and run apps with
pathiumapi newandpathiumapi run - CLI Tools & Runner: Scaffold and run apps with
pathiumapi newandpathiumapi run— a built-in, purpose-built runner so you don't need a separateuvicorncommand to run development servers. The CLI also provides a small scaffolding helper to create a newpathiumapiproject.
Installation
Install from PyPI:
pip install PathiumAPI
Quickstart
Create app.py:
from pathiumapi import Pathium, Response
from pydantic import BaseModel
app = Pathium()
class User(BaseModel):
name: str
email: str
@app.get("/")
async def index(req):
return Response("Hello, PathiumAPI!")
@app.get("/users/{id:int}")
async def get_user(req, id: int):
return Response.json({"id": id, "name": f"User {id}"})
@app.post("/users")
@app.validate_body(User)
async def create_user(req):
user_data = req.validated_body
return Response.json({"created": user_data.dict()}, status=201)
Run and manage your app with the built-in pathiumapi CLI
# install the package (if not already installed)
pip install PathiumAPI
Quick CLI workflow
- Scaffold a new app:
pathiumapi new myapp
cd myapp
- Run the app (looks for
app.pywith anappobject):
pathiumapi run
# or run a folder containing app.py from anywhere
pathiumapi run path/to/myapp
- Generate scaffolding (route stub example):
# creates routes/users.py and attempts to auto-register in app.py
pathiumapi generate route users --path /users --method get
Notes
pathiumapi runwill useuvicornunder-the-hood if it is installed; ifuvicornis not available the CLI will ask you topip install uvicorn.- The CLI's
runcommand expects a folder with anapp.pyfile. It does not take a module argument; pass the folder path instead. - If you want live reload you can either install
uvicornand run it directly withuvicorn app:app --reload, or you can add a--reloadforwarding flag topathiumapi runlike so:pathiumapi run myapp --reload.
Visit http://localhost:8000/docs (the built-in Swagger UI) for interactive API documentation!
Examples and Documentation
Available Examples
examples/app.py— Minimal app with basic routingexamples/auth_app.py— JWT authentication with login and protected routesexamples/middleware_demo.py— CORS, security headers, and rate limitingexamples/query_app.py— Query parameter validation with Pydantic models
Features Overview
OpenAPI & Documentation
from pathiumapi.openapi_pydantic import add_openapi, add_docs
add_openapi(app, title="My API", version="1.0.0")
add_docs(app) # Serves Swagger UI at /docs
Request Validation
from pydantic import BaseModel
class QueryParams(BaseModel):
page: int = 1
limit: int = 10
@app.get("/items")
@app.validate_query(QueryParams)
async def list_items(req):
params = req.validated_query
return Response.json({"page": params.page, "limit": params.limit})
JWT Authentication
from pathiumapi.auth import jwt_middleware_factory, create_token
# Protect routes requiring authentication
app.use(jwt_middleware_factory(secret="your-secret-key"))
Middleware
from pathiumapi.middleware import cors_middleware, security_headers_middleware
app.use(cors_middleware(allow_origins=["*"]))
app.use(security_headers_middleware())
For comprehensive usage details, see usage.md.
Development
- Run tests:
python -m pytest -q - Static checks (optional):
flake8andmypy
Contributing
See CONTRIBUTING.md for branch naming, PR workflow, and guidelines. Open a
PR against main when ready and include tests for new functionality.
What's New
v0.1.12 (Latest)
- Improved onboarding and README quickstart
- OpenAPI + Pydantic improvements: component schemas,
@validate_query, and more robust schema normalization for OpenAPI consumption - New examples and tests demonstrating query-model docs and validation
v0.1.11
- Auto-generation of OpenAPI query parameter schemas from Pydantic models
@validate_querydecorator with OpenAPI integration- Enhanced query parameter validation and documentation
Recent Releases
- v0.1.10 — Common middleware (CORS, security headers, rate limiting)
- v0.1.9 — JWT authentication middleware and helpers
- v0.1.8 — Pydantic integration for request body validation
- v0.1.7 — OpenAPI generation and Swagger UI documentation
See CHANGELOG.md for complete release history and release-notes/ for detailed notes.
License
MIT
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 pathiumapi-0.2.0.tar.gz.
File metadata
- Download URL: pathiumapi-0.2.0.tar.gz
- Upload date:
- Size: 19.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d3eaa3445f44ecac546984667d647c8e4a4cf44a61a9ed079fa522cc8ae4a58
|
|
| MD5 |
1c67e3704ed8741d73f10d3852b5e726
|
|
| BLAKE2b-256 |
87b5ca97fac36b9c308ddb5e5b55c4b01fc7a0e147d667ed834a932a794efae2
|
File details
Details for the file pathiumapi-0.2.0-py3-none-any.whl.
File metadata
- Download URL: pathiumapi-0.2.0-py3-none-any.whl
- Upload date:
- Size: 23.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e8df903841984b5ab1ebe0d289c1950ca6d2f4aaa1994e966ac69906976718a
|
|
| MD5 |
1519c3e6f7f24d22db97ff4b16c4b961
|
|
| BLAKE2b-256 |
7905510f5124242ee1a553cb65245d2e7222978983e71184bdcdb9852232f1a4
|