External Links & Ecosystem
Core Dependencies
Section titled “Core Dependencies”| Project | Purpose | Link |
|---|---|---|
| Pydantic | Data validation and serialization | pydantic.dev |
| Starlette | ASGI toolkit (used by JustAPI’s shim) | starlette.io |
| PyO3 | Python ↔ Rust FFI | pyo3.rs |
| maturin | Build Rust Python packages | maturin.rs |
Related Rust-Powered Frameworks
Section titled “Related Rust-Powered Frameworks”| Framework | What It Does |
|---|---|
| Robyn | Rust runtime, decorator API |
| Granian | Rust ASGI server |
| Litestar | Python-native ASGI framework |
| FastAPI | Python web framework (the compatibility target) |
| Typer | CLI framework (FastAPI for CLIs) |
Community
Section titled “Community”- GitHub: github.com/swadhinbiswas/JustAPI
- Stack Overflow: tag: justapi
- Issues: GitHub Issues
Ecosystem
Section titled “Ecosystem”Database Drivers
Section titled “Database Drivers”- aiosqlite — async SQLite
- asyncpg — async PostgreSQL
- aiomysql — async MySQL
Serialization
Section titled “Serialization”- orjson — fast JSON (JustAPI has built-in
orjsonfeature) - simd-json — SIMD-accelerated JSON
Testing
Section titled “Testing”- pytest — Python testing framework
- httpx — async HTTP client for testing
- criterion — Rust benchmarking
Deployment
Section titled “Deployment”- uvicorn — ASGI server (JustAPI’s ASGI shim)
- gunicorn — pre-fork server
- Docker — container deployment
- Kubernetes — orchestration