FastCoAP — a modern, high-performance Python framework for building CoAP applications and APIs.
Documentation
Coming soon...
Source Code
https://github.com/darixsamani/fastcoap
FastCoAP is a modern, fast (high-performance) Python framework for building CoAP (Constrained Application Protocol) applications based on standard Python type hints.
Inspired by FastAPI, FastCoAP brings the same developer experience to the Internet of Things, making it easy to build scalable, maintainable, and production-ready CoAP services.
Key Features
- ⚡ Fast — High-performance asynchronous framework built for CoAP communication.
- 🌐 IoT-first — Designed specifically for connected devices, edge computing, and constrained networks.
- 📡 Native CoAP — Full support for the Constrained Application Protocol.
- 🧩 Simple & Intuitive — Clean API inspired by FastAPI, with minimal boilerplate.
- 🚀 Developer Friendly — Modern Python features, type hints, dependency injection, and automatic validation.
- 📦 Production Ready — Modular architecture suitable for embedded systems, gateways, and cloud IoT platforms.
- 🔒 Reliable — Built with robustness, scalability, and maintainability in mind.
- 🐍 Pythonic — Leverages standard Python type annotations for an excellent developer experience.
Why FastCoAP?
Building CoAP applications shouldn't feel different from building modern HTTP APIs.
FastCoAP provides an elegant programming model inspired by FastAPI while embracing the CoAP ecosystem. Whether you're developing applications for IoT devices, smart homes, industrial automation, or sensor networks, FastCoAP helps you write less code and ship faster.
Project Structure
FastCoAP/
├── pyproject.toml # uv project file, dependencies, CLI entry point
├── README.md
├── FastCoAP/
│ ├── __init__.py # Public API re-exports
│ ├── application.py # FastCoAP class, dispatcher, aiocoap bridge, serve()
│ ├── routing.py # Router, Route, path-to-regex compiler
│ ├── request.py # CoapRequest wrapper around aiocoap.Message
│ ├── response.py # CoapResponse → aiocoap.Message conversion
│ ├── params.py # Path(), Query(), Body(), Depends() descriptors
│ ├── dependencies.py # Dependency injection resolver
│ ├── exceptions.py # CoapException hierarchy + handler registry
│ ├── middleware.py # Async middleware chain
│ └── encodings.py # JSON / CBOR encode + decode, ContentFormat enum
└── examples/
├── main.py # Full demo app (sensors CRUD)
└── cbor_client.py # Test client — JSON and CBOR requests
Architecture
┌─────────────────────────────────────────────────────┐
│ FastCoAP CLI (Typer) │
│ fastcoap run main:app --reload │
└───────────────────────┬─────────────────────────────┘
│
┌───────────────────────▼─────────────────────────────┐
│ FastCoAP application │
│ lifespan · routers · middleware · │
│ |
└──────┬──────────────────────────────┬───────────────┘
│ │
┌──────▼──────┐ ┌───────▼──────────────┐
│ Router │ │ Dispatcher │
│ GET/POST │ │ path match │
│ PUT/DELETE │ │ DI resolve │
└─────────────┘ └───────┬───────────────┘
│
┌───────────────┬───────┴───────────────┐
│ │ │
┌────────▼──────┐ ┌──────▼──────┐ ┌────────────▼──────┐
│ Dependency │ │ Validation │ │ Encoding │
│ injection │ │ Pydantic │ │ JSON (CF=50) │
│ Depends() │ │ v2 models │ │ CBOR (CF=60) │
└───────────────┘ └─────────────┘ └───────────────────┘
│
┌─────────────────────────────────────▼───────────────┐
│ aiocoap UDP server │
│ coap://0.0.0.0:5683 │
└──────────────────────────────────────────────────────┘
Request lifecycle
CoAP UDP packet
│
▼
aiocoap.Context → _WildcardSite → _RouteResource.render()
│
▼
FastCoAP._dispatch()
1. Wrap aiocoap.Message → CoapRequest
2. Detect Content-Format (JSON or CBOR)
3. Run middleware stack
4. Router.find_route(method, path) → Route + path_params
5. resolve_handler_kwargs()
├── resolve Depends() dependencies (cached)
├── extract + coerce path params
├── extract + coerce query params
└── parse + validate body with Pydantic
6. Normalise result → CoapResponse
7. CoapResponse.to_message() → aiocoap.Message
│
▼
CoAP UDP response
Quick Start
1. Create a project with uv
uv init my-iot-api
cd my-iot-api
uv add aiocoap pydantic cbor2 typer rich anyio watchfiles
uv pip install -e .
2. Write your app
# main.py
from contextlib import asynccontextmanager
from typing import AsyncGenerator
from pydantic import BaseModel
from FastCoAP import FastCoAP, CoapResponse, Depends, Path, NotFound
class Sensor(BaseModel):
name: str
value: float
_db: dict[int, Sensor] = {}
@asynccontextmanager
async def lifespan(app: FastCoAP) -> AsyncGenerator[dict, None]:
print("startup")
yield {"db": _db}
print("shutdown")
app = FastCoAP(title="Sensor API", lifespan=lifespan)
async def get_db() -> dict:
return _db
@app.get("/sensors/{id}")
async def get_sensor(id: int = Path("id"), db: dict = Depends(get_db)):
item = db.get(id)
if not item:
raise NotFound(f"Sensor {id} not found")
return item.model_dump()
@app.post("/sensors/")
async def create_sensor(sensor: Sensor, db: dict = Depends(get_db)):
db[len(db) + 1] = sensor
return CoapResponse(content=sensor.model_dump(), status_code=201)
3. Run
FastCoAP run main:app
FastCoAP run main:app --reload # auto-reload on file changes
FastCoAP run main:app --host 0.0.0.0 --port 5683
4. Inspect routes
FastCoAP routes main:app
CLI Reference
FastCoAP run MODULE:APP [OPTIONS]
--host TEXT Bind host [default: 0.0.0.0]
--port INTEGER CoAP UDP port [default: 5683]
--reload Auto-reload on file changes
--log-level TEXT Logging level [default: info]
FastCoAP routes MODULE:APP
List all registered routes in a Rich table.
Routing
Path parameters
@app.get("/devices/{device_id}/sensors/{sensor_id}")
async def get_sensor(
device_id: int = Path("device_id"),
sensor_id: str = Path("sensor_id"),
):
...
Query parameters
@app.get("/sensors/")
async def list_sensors(
limit: int = Query("limit", default=20),
unit: str = Query("unit", default="celsius"),
):
...
Sub-routers
from FastCoAP import Router
sensors_router = Router(prefix="/sensors", tags=["sensors"])
@sensors_router.get("/")
async def list_sensors(): ...
@sensors_router.post("/")
async def create_sensor(): ...
app.include_router(sensors_router)
# or with an additional prefix:
app.include_router(sensors_router, prefix="/v2")
Request Body & Validation
Annotate a handler parameter with a Pydantic model and FastCoAP automatically parses and validates the incoming payload — JSON or CBOR, whichever Content-Format the client sent.
from pydantic import BaseModel, Field
class SensorReading(BaseModel):
sensor_id: str = Field(..., min_length=1)
temperature: float = Field(..., ge=-100, le=100)
humidity: float = Field(..., ge=0, le=100)
@app.post("/sensors/")
async def create(reading: SensorReading):
return CoapResponse(content=reading.model_dump(), status_code=201)
You can also use the explicit Body() descriptor:
from FastCoAP import Body
@app.put("/sensors/{id}")
async def update(
id: int = Path("id"),
reading: SensorReading = Body(model=SensorReading),
):
...
Dependency Injection
Depends() works for both sync and async callables. Results are cached for the duration of a single request.
from FastCoAP import Depends
async def get_db():
return _db
async def get_current_token(request: CoapRequest):
token = request.query_params.get("token")
if not token:
raise Unauthorized("Missing token")
return token
@app.get("/secure/")
async def secure_route(
db: dict = Depends(get_db),
token: str = Depends(get_current_token),
):
...
Encodings
FastCoAP reads the CoAP Content-Format option on every incoming message and dispatches to the right codec automatically:
| Content-Format | Value | Codec |
|---|---|---|
| JSON | 50 | json.loads / json.dumps |
| CBOR | 60 | cbor2.loads / cbor2.dumps |
Responses default to JSON. To reply with CBOR:
from FastCoAP import CoapResponse, ContentFormat
@app.get("/data/")
async def get_data():
return CoapResponse(
content={"value": 42},
content_format=ContentFormat.CBOR,
)
Lifespan
Two styles are supported — pick whichever feels natural.
Context-manager style (recommended)
from contextlib import asynccontextmanager
@asynccontextmanager
async def lifespan(app: FastCoAP):
# startup — runs before the server accepts connections
db = await connect_db()
yield {"db": db} # dict is merged into app.state
# shutdown — runs after the server stops
await db.close()
app = FastCoAP(lifespan=lifespan)
Hook style
app = FastCoAP()
@app.on_startup
async def startup():
app.state["db"] = await connect_db()
@app.on_shutdown
async def shutdown():
await app.state["db"].close()
Built-in exceptions
| Class | CoAP code |
|---|---|
BadRequest |
4.00 |
Unauthorized |
4.01 |
NotFound |
4.04 |
MethodNotAllowed |
4.05 |
InternalServerError |
5.00 |
Middleware
from FastCoAP import CoapRequest, CoapResponse
async def logging_middleware(request: CoapRequest, call_next):
print(f"→ {request.method} {request.path}")
response = await call_next(request)
print(f"← {response.status_code}")
return response
app.add_middleware(logging_middleware)
Dependencies
| Package | Purpose |
|---|---|
aiocoap |
Async CoAP server and client |
pydantic >= 2.0 |
Request body validation and serialisation |
cbor2 |
CBOR encoding / decoding |
typer |
CLI (FastCoAP run, FastCoAP routes) |
rich |
Pretty terminal output |
anyio |
Async primitives |
watchfiles |
--reload file watcher |
Release files for fastcoap 0.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| fastcoap-0.1.0.tar.gz | 44.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| fastcoap-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 61.7 kB
Release files / fastcoap-0.1.0.tar.gz
| Download URL | fastcoap-0.1.0.tar.gz |
|---|---|
| Size | 44.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
a8f77bf5ecaa1864b99777e37a9648c88c2709c0b2506968b18aa26c8f9b7bac
|
|
BLAKE2b-256 checksum How to use checksums |
6ee5d99d9e48b6d83baa3e9ecbdb2bf5b2baa06b392c1ae821a1b7f39b36a662
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 2, 2026.
Transparency logRelease files / fastcoap-0.1.0-py3-none-any.whl
| Download URL | fastcoap-0.1.0-py3-none-any.whl |
|---|---|
| Size | 17.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
9e95bf589efd4ab4b7a30b2bbc65dbb3f3b6b2214e98b20941aac7e4bc4705cf
|
|
BLAKE2b-256 checksum How to use checksums |
353f27e51d1405f064a918c1a9ac3855f15a303f219fd92b544c0ffb91d0457d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 2, 2026.
Transparency log