Spaces:
Runtime error
Runtime error
Create requirements.txt
Browse files- requirements.txt +23 -0
requirements.txt
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# filename: requirements.txt
|
| 2 |
+
|
| 3 |
+
# Web framework for the health check endpoint and optional UI
|
| 4 |
+
fastapi
|
| 5 |
+
uvicorn[standard]
|
| 6 |
+
|
| 7 |
+
# The core asynchronous Telegram client library
|
| 8 |
+
telethon
|
| 9 |
+
|
| 10 |
+
# High-performance cryptography library used by Telethon for faster encryption
|
| 11 |
+
cryptg
|
| 12 |
+
|
| 13 |
+
# The official asynchronous driver for connecting to your MongoDB database
|
| 14 |
+
motor
|
| 15 |
+
|
| 16 |
+
# A library for running scheduled tasks, used for auto-deleting messages
|
| 17 |
+
apscheduler
|
| 18 |
+
|
| 19 |
+
# A utility to load environment variables from a .env file for easy local development
|
| 20 |
+
python-dotenv
|
| 21 |
+
|
| 22 |
+
# A standard library for making synchronous HTTP requests (used by the terabox utility)
|
| 23 |
+
requests
|