Spaces:
Running
Running
Commit
·
3030331
1
Parent(s):
f19bca7
Create requirements.txt
Browse files- requirements.txt +22 -0
requirements.txt
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Web scraping libraries
|
2 |
+
beautifulsoup4==4.9.3
|
3 |
+
requests==2.25.1
|
4 |
+
|
5 |
+
# Summarization library
|
6 |
+
transformers==4.5.1
|
7 |
+
|
8 |
+
# Web framework
|
9 |
+
flask==1.1.2
|
10 |
+
|
11 |
+
# HTML template engine
|
12 |
+
jinja2==2.11.3
|
13 |
+
|
14 |
+
# Docker SDK for Python
|
15 |
+
docker==5.0.0
|
16 |
+
|
17 |
+
# Other necessary libraries
|
18 |
+
numpy==1.20.2
|
19 |
+
pandas==1.2.4
|
20 |
+
|
21 |
+
# For testing
|
22 |
+
pytest==6.2.4
|