Get Monglo up and running in less than 5 minutes.
Choose your installation method below.
The fastest way to get started. Install with your favorite framework extras.
monglo[fastapi]
FastAPI + Uvicorn
monglo[django]
Coming v0.2.0
monglo[flask]
Coming v0.2.0
monglo[all]
All frameworks
For development or to get the latest unreleased features.
# Clone the repository
git clone https://github.com/mE-uMAr/Monglo.git
cd Monglo
# Create virtual environment
python -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
# Install in development mode with FastAPI
pip install -e ".[fastapi]"
# Or install with all extras
pip install -e ".[all]"
Check that Monglo is installed correctly:
import monglo
print(f"Monglo version: {monglo.__version__}")
# Output: Monglo version: 0.1.1
Now let's choose your framework adapter and build something amazing.