Update requirements.txt
Browse files- requirements.txt +21 -15
requirements.txt
CHANGED
@@ -14,29 +14,35 @@ python-docx>=0.8.11
|
|
14 |
# PDF Generation
|
15 |
fpdf2>=2.7.0
|
16 |
|
17 |
-
# Web Search
|
18 |
duckduckgo-search>=3.8.0
|
19 |
|
20 |
-
# Async HTTP
|
21 |
aiohttp>=3.8.0
|
22 |
|
23 |
-
# System Monitoring
|
24 |
psutil>=5.9.0
|
25 |
|
26 |
-
#
|
27 |
-
# sqlite3 is included with Python standard library
|
28 |
-
|
29 |
-
# Utilities
|
30 |
python-dateutil>=2.8.0
|
31 |
-
hashlib
|
32 |
-
# hashlib is included with Python standard library
|
33 |
|
34 |
-
# Development/Optional
|
35 |
-
jupyter>=1.0.0
|
36 |
-
matplotlib>=3.7.0
|
37 |
-
seaborn>=0.12.0
|
38 |
|
39 |
# Additional useful packages
|
40 |
tqdm>=4.65.0
|
41 |
-
|
42 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
# PDF Generation
|
15 |
fpdf2>=2.7.0
|
16 |
|
17 |
+
# Web Search
|
18 |
duckduckgo-search>=3.8.0
|
19 |
|
20 |
+
# Async HTTP
|
21 |
aiohttp>=3.8.0
|
22 |
|
23 |
+
# System Monitoring
|
24 |
psutil>=5.9.0
|
25 |
|
26 |
+
# Date utilities
|
|
|
|
|
|
|
27 |
python-dateutil>=2.8.0
|
|
|
|
|
28 |
|
29 |
+
# Development/Optional (comment out if not needed)
|
30 |
+
# jupyter>=1.0.0
|
31 |
+
# matplotlib>=3.7.0
|
32 |
+
# seaborn>=0.12.0
|
33 |
|
34 |
# Additional useful packages
|
35 |
tqdm>=4.65.0
|
36 |
+
|
37 |
+
# Note: The following are built-in Python modules and don't need to be installed:
|
38 |
+
# - sqlite3 (included with Python)
|
39 |
+
# - hashlib (included with Python)
|
40 |
+
# - logging (included with Python)
|
41 |
+
# - tempfile (included with Python)
|
42 |
+
# - os (included with Python)
|
43 |
+
# - datetime (included with Python)
|
44 |
+
# - shutil (included with Python)
|
45 |
+
# - random (included with Python)
|
46 |
+
# - time (included with Python)
|
47 |
+
# - re (included with Python)
|
48 |
+
# - typing (included with Python 3.5+)
|