Deploy Python Apps
Zero-config deployment for Django, Flask, FastAPI, and any Python application.
Quick Start
Deploying Python apps is automatic. We detect your framework, install dependencies from requirements.txt or pyproject.toml, and configure Gunicorn/Uvicorn for production.
# Deploy from current directoryanchorscape deploy# Or specify your appanchorscape deploy --entrypoint app:appSupported Frameworks
- Django - Full-featured with static files, migrations
- Flask - Lightweight deployment with Gunicorn
- FastAPI - Async support with Uvicorn
- Starlette - ASGI deployment
- Tornado - Non-blocking deployment
Database Support
One-click database provisioning for Python apps:
- PostgreSQL with psycopg2/asyncpg
- MySQL with mysqlclient
- Redis for caching/Celery
- MongoDB with motor/pymongo