29 lines
463 B
Plaintext
29 lines
463 B
Plaintext
# FastAPI and ASGI server
|
|
fastapi==0.104.1
|
|
uvicorn[standard]==0.24.0
|
|
python-multipart==0.0.6
|
|
|
|
# Database drivers
|
|
motor==3.3.2 # Async MongoDB
|
|
redis[hiredis]==5.0.1 # Redis with hiredis for better performance
|
|
|
|
# Data validation and settings
|
|
pydantic==2.5.0
|
|
pydantic-settings==2.1.0
|
|
|
|
# Async HTTP client
|
|
aiohttp==3.9.1
|
|
|
|
# WebSockets
|
|
websockets==12.0
|
|
|
|
# Data processing
|
|
pandas==2.1.4
|
|
numpy==1.26.2
|
|
|
|
# FTP support
|
|
ftputil==5.0.4
|
|
|
|
# Utilities
|
|
python-dateutil==2.8.2
|