cliffracer-http
HTTP routes and websockets for cliffracer services, on FastAPI.
Core serves GET /health and GET /info from an asyncio listener. This package
is for services that also serve routes of their own.
from cliffracer import CliffracerService, rpc
from pydantic import BaseModel
from cliffracer_http import HttpExtension
class Order(BaseModel):
sku: str
qty: int
class OrderService(CliffracerService):
http = HttpExtension()
@rpc
async def create(self, order: Order) -> str: ...
@http.get("/orders/{order_id}")
async def get_order(self, order_id: str) -> dict[str, str]: ...
The extension serves /health and /info on its own FastAPI app as well.
Ports
Declaring this extension gives the service one port: the extension's. It serves
your routes, /health and /info, and the core listener does not bind.
HttpExtension listens on 8000. Set the port with HttpExtension(port=8080)
or with CLIFFRACER_HTTP_PORT. CLIFFRACER_HTTP_HOST sets the bind address,
which defaults to 0.0.0.0. ServiceConfig.health_port is what the core
listener uses on a service that does not declare this extension.
Point probes at the extension's port.
Auto-Gateway for Dynamic RPC Ingress
AutoGatewayExtension dynamically mounts FastAPI HTTP endpoints backed by Cliffracer
RPC services, automatically inferring HTTP verbs, parsing parameters, dispatching NATS
RPC calls, translating error responses, and generating interactive OpenAPI docs.
Example Service Definition
from pydantic import BaseModel
from cliffracer import CliffracerService, rpc
from cliffracer_http import AutoGatewayExtension, HttpExtension
class UserModel(BaseModel):
id: str
name: str
email: str
class CreateUserPayload(BaseModel):
name: str
email: str
class UserService(CliffracerService):
name = "users"
http = HttpExtension(port=8080)
gateway = AutoGatewayExtension(prefix="/api/v1")
@rpc
async def get_user(self, user_id: str) -> UserModel:
"""Fetch user by id."""
return UserModel(id=user_id, name="Alice", email="alice@example.com")
@rpc
async def create_user(self, payload: CreateUserPayload) -> UserModel:
"""Create new user."""
return UserModel(id="usr_1", name=payload.name, email=payload.email)
@rpc
async def delete_user(self, user_id: str) -> bool:
"""Delete user by id."""
return True
Verb and Route Mapping
Method name prefixes map to standard HTTP verbs:
get_user->GET /api/v1/users/get_user?user_id=...(query parameters)create_user->POST /api/v1/users/create_user(JSON request bodyCreateUserPayload)delete_user->DELETE /api/v1/users/delete_user?user_id=...(query parameters)
The gateway prefixes routes with /{prefix}/{service_name}/{method_name} and infers:
GET:get_,list_,fetch_,find_,read_,search_,query_POST:create_,add_,post_,insert_,register_,new_(and default for unrecognized prefixes)PUT:update_,set_,put_,modify_,replace_PATCH:patch_DELETE:delete_,remove_,drop_,clear_,cancel_
Dedicated Gateway
A dedicated gateway service can also front downstream services by passing service classes to targets:
from cliffracer import CliffracerService
from cliffracer_http import AutoGatewayExtension, HttpExtension
class GatewayService(CliffracerService):
name = "gateway"
http = HttpExtension(port=8080)
gateway = AutoGatewayExtension(
targets=[UserService],
prefix="/api/v1",
)
Swagger and OpenAPI Documentation
When running, FastAPI serves interactive documentation:
- Swagger UI:
http://localhost:8080/docs - OpenAPI JSON Schema:
http://localhost:8080/openapi.json
Error Status Codes
200 OK: Successful RPC response.422 Unprocessable Entity: Validation failure or downstreamRPCErrorcontaining error details.502 Bad Gateway: Downstream RPC failure.504 Gateway Timeout: Downstream service timed out (RPCTimeoutError).500 Internal Server Error: Unhandled gateway exception.
Installed from PyPI, versioned in lockstep with cliffracer.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
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 cliffracer_http-1.0.0-py3-none-any.whl.
File metadata
- Download URL: cliffracer_http-1.0.0-py3-none-any.whl
- Upload date:
- Size: 14.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a9f319fe27e70dc4ad94c6be0e045acd8d835de39f154dd15439bd6878d793f5
|
|
| MD5 |
237d565f4c0eaa41acefcaf0ff605610
|
|
| BLAKE2b-256 |
42d8f730eb691ec9ad23cd6a62bd881d63c4b563de1fa6f690b80ad54a004ca5
|