2025-08-12 18:17:30 +02:00
|
|
|
# services/external/requirements.txt
|
|
|
|
|
# FastAPI and web framework
|
2025-10-17 23:09:40 +02:00
|
|
|
fastapi==0.119.0
|
|
|
|
|
uvicorn[standard]==0.32.1
|
2025-08-12 18:17:30 +02:00
|
|
|
|
|
|
|
|
# Database
|
2025-10-17 23:09:40 +02:00
|
|
|
sqlalchemy==2.0.44
|
|
|
|
|
psycopg2-binary==2.9.10
|
|
|
|
|
asyncpg==0.30.0
|
|
|
|
|
aiosqlite==0.20.0
|
|
|
|
|
alembic==1.17.0
|
2025-08-12 18:17:30 +02:00
|
|
|
|
|
|
|
|
# HTTP clients for external APIs
|
2025-10-17 23:09:40 +02:00
|
|
|
httpx==0.28.1
|
|
|
|
|
aiofiles==24.1.0
|
|
|
|
|
requests==2.32.3
|
2025-08-12 18:17:30 +02:00
|
|
|
|
|
|
|
|
# Data processing and time series
|
2025-10-17 23:09:40 +02:00
|
|
|
pandas==2.2.3
|
|
|
|
|
numpy==2.2.2
|
2025-08-12 18:17:30 +02:00
|
|
|
|
|
|
|
|
# Validation and serialization
|
2025-10-17 23:09:40 +02:00
|
|
|
pydantic==2.12.3
|
|
|
|
|
pydantic-settings==2.7.1
|
|
|
|
|
email-validator==2.2.0
|
2025-08-12 18:17:30 +02:00
|
|
|
|
|
|
|
|
# Authentication and security
|
|
|
|
|
python-jose[cryptography]==3.3.0
|
2025-10-17 23:09:40 +02:00
|
|
|
cryptography==44.0.0
|
2025-08-12 18:17:30 +02:00
|
|
|
|
|
|
|
|
# Logging and monitoring
|
2025-10-17 23:09:40 +02:00
|
|
|
structlog==25.4.0
|
|
|
|
|
prometheus-client==0.23.1
|
2025-08-12 18:17:30 +02:00
|
|
|
|
|
|
|
|
# Message queues
|
2025-10-17 23:09:40 +02:00
|
|
|
aio-pika==9.4.3
|
2025-08-12 18:17:30 +02:00
|
|
|
|
|
|
|
|
# Background job processing
|
2025-10-17 23:09:40 +02:00
|
|
|
redis==6.4.0
|
2025-08-12 18:17:30 +02:00
|
|
|
|
|
|
|
|
# Date and time handling
|
2025-10-17 23:09:40 +02:00
|
|
|
pytz==2024.2
|
|
|
|
|
python-dateutil==2.9.0.post0
|
2025-08-12 18:17:30 +02:00
|
|
|
|
|
|
|
|
# XML parsing (for some APIs)
|
2025-10-17 23:09:40 +02:00
|
|
|
lxml==5.3.0
|
2025-08-12 18:17:30 +02:00
|
|
|
|
|
|
|
|
# Geospatial processing
|
2025-10-17 23:09:40 +02:00
|
|
|
pyproj==3.7.1
|
2025-08-12 18:17:30 +02:00
|
|
|
|
|
|
|
|
# Development
|
|
|
|
|
python-multipart==0.0.6
|
|
|
|
|
|
|
|
|
|
# External API specific
|
2025-10-17 23:09:40 +02:00
|
|
|
beautifulsoup4==4.12.3
|
|
|
|
|
xmltodict==0.14.2
|