-
Notifications
You must be signed in to change notification settings - Fork 5
/
requirements.txt
41 lines (30 loc) · 1.63 KB
/
requirements.txt
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
# Flask web framework
Flask==3.0.3
# System information and performance monitoring
psutil==6.0.0 # Retrieves system metrics (CPU, memory, etc.)
# Environment variable management
python-dotenv==1.0.1 # Loads environment variables from .env file
# WSGI HTTP server for production
gunicorn==23.0.0 # Production server for running Flask applications
# Flask extensions for database and session management
flask-sqlalchemy==3.1.1 # SQLAlchemy ORM integration with Flask
flask-login==0.6.3 # User session management (authentication)
flask-session==0.8.0 # Server-side session storage
flask-migrate==4.0.7 # Handles database migrations for Flask apps
Flask-WTF==1.2.1 # Flask integration with WTForms
Flask-Caching==2.3.0 # Caching extension for Flask
Flask-Compress==1.15 # Compresses Flask HTTP responses (e.g., gzip)
# File system monitoring
watchdog==5.0.2 # Monitors filesystem events and changes
# HTTP requests library
requests==2.32.3 # Simplified HTTP requests for Python
# Internet speed testing
speedtest-cli==2.1.3 # CLI for testing internet speed
# Prometheus client for monitoring and exposing metrics
prometheus_client==0.20.0 # Exposes metrics for Prometheus to scrape
# (Optional) InfluxDB client for writing metrics to InfluxDB
# influxdb-client==1.46.0 # InfluxDB client for time-series data
# YAML parsing and configuration handling
pyyaml==6.0.2 # Reads and writes YAML configuration files
# Asynchronous HTTP client/server framework
aiohttp==3.10.7 # Async HTTP client for non-blocking requests