-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
62 lines (47 loc) · 1020 Bytes
/
requirements.txt
File metadata and controls
62 lines (47 loc) · 1020 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Modern, secure Python packages for the API server
# Updated to latest stable versions as of 2025
# Core web framework
Flask==3.0.3
Werkzeug==3.0.3
# Flask extensions
Flask-Caching==2.3.0
Flask-Cors==4.0.1
Flask-SocketIO==5.3.6
Flask-Limiter==3.8.0
# Rate limiting dependencies
limits==3.13.0
packaging>=21,<25
# Socket.IO
python-socketio==5.11.2
python-engineio==4.9.0
# HTTP client with better security
requests==2.32.3
urllib3==2.2.2
# Redis for caching and message queue
redis==5.0.7
# Async support
eventlet==0.36.1
greenlet==3.0.3
# Production server
gunicorn==22.0.0
# Template engine (included with Flask but explicit version)
Jinja2==3.1.4
MarkupSafe==2.1.5
# Utilities
click==8.1.7
itsdangerous==2.2.0
# DNS resolution
dnspython==2.6.1
# Character detection
chardet==5.2.0
# SSL certificates
certifi==2024.7.4
# Compatibility
six==1.16.0
# Development and testing (optional)
# Uncomment these for development
# pytest==8.2.2
# pytest-flask==1.3.0
# black==24.4.2
# flake8==7.1.0
# mypy==1.10.1