01 — Framework
Aquilia
Write the intent. Skip the ceremony.
The async Python framework that ships production-ready APIs in hours, not days. Declare your modules — routes, middleware, and injected dependencies generate automatically.
users.py
python@manifest(module="users")
class UserController:
orm = inject(UserRepository)
cache = inject(RedisCache)
@get("/me")
async def profile(self, user: CurrentUser) -> UserSchema:
return await self.cache.get_or_fetch(
key=f"user:{user.id}",
fetch=lambda: self.orm.find(user.id)
)
@post("/me/avatar")
async def upload_avatar(self, file: Upload) -> AvatarSchema:
return await self.orm.attach_file(user, file)Manifest-FirstASGI NativeBuilt-in ORMDI ContainerAuth + RBACMFAWebSocketsBackground TasksMLOpsAdmin DashboardDocker + K8s
Manifest-First
Declare modules. Routes, middleware, and DI graph generate from intent.
ASGI Native
Built on async from the ground up. WebSockets and SSE are first-class.
Built-in ORM
Type-safe repositories. No second framework to learn.
Auth + RBAC
OAuth, MFA, role hierarchies, and token rotation included.
MLOps Ready
Versioned model serving, batched inference, prediction logging.
Docker + K8s
Generated manifests, health probes, and zero-config Helm charts.
Get started
pip install aquilia — and you're shipping.
