Commit
·
1e69640
1
Parent(s):
d596fb5
made app.py better
Browse files- .gitignore +1 -0
- __pycache__/app.cpython-310.pyc +0 -0
- requirements.txt +70 -0
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
venv
|
__pycache__/app.cpython-310.pyc
ADDED
|
Binary file (5.36 kB). View file
|
|
|
requirements.txt
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
aiofiles==23.2.1
|
| 2 |
+
aiohttp==3.8.5
|
| 3 |
+
aiosignal==1.3.1
|
| 4 |
+
altair==5.0.1
|
| 5 |
+
annotated-types==0.5.0
|
| 6 |
+
anyio==3.7.1
|
| 7 |
+
async-timeout==4.0.3
|
| 8 |
+
attrs==23.1.0
|
| 9 |
+
certifi==2023.7.22
|
| 10 |
+
charset-normalizer==3.2.0
|
| 11 |
+
click==8.1.6
|
| 12 |
+
contourpy==1.1.0
|
| 13 |
+
cycler==0.11.0
|
| 14 |
+
exceptiongroup==1.1.2
|
| 15 |
+
fastapi==0.101.0
|
| 16 |
+
ffmpy==0.3.1
|
| 17 |
+
filelock==3.12.2
|
| 18 |
+
fonttools==4.42.0
|
| 19 |
+
frozenlist==1.4.0
|
| 20 |
+
fsspec==2023.6.0
|
| 21 |
+
gradio==3.40.1
|
| 22 |
+
gradio_client==0.4.0
|
| 23 |
+
h11==0.14.0
|
| 24 |
+
httpcore==0.17.3
|
| 25 |
+
httpx==0.24.1
|
| 26 |
+
huggingface-hub==0.16.4
|
| 27 |
+
idna==3.4
|
| 28 |
+
importlib-resources==6.0.1
|
| 29 |
+
Jinja2==3.1.2
|
| 30 |
+
jsonschema==4.19.0
|
| 31 |
+
jsonschema-specifications==2023.7.1
|
| 32 |
+
kiwisolver==1.4.4
|
| 33 |
+
linkify-it-py==2.0.2
|
| 34 |
+
markdown-it-py==2.2.0
|
| 35 |
+
MarkupSafe==2.1.3
|
| 36 |
+
matplotlib==3.7.2
|
| 37 |
+
mdit-py-plugins==0.3.3
|
| 38 |
+
mdurl==0.1.2
|
| 39 |
+
multidict==6.0.4
|
| 40 |
+
numpy==1.25.2
|
| 41 |
+
orjson==3.9.4
|
| 42 |
+
packaging==23.1
|
| 43 |
+
pandas==2.0.3
|
| 44 |
+
Pillow==10.0.0
|
| 45 |
+
pydantic==2.1.1
|
| 46 |
+
pydantic_core==2.4.0
|
| 47 |
+
pydub==0.25.1
|
| 48 |
+
pyparsing==3.0.9
|
| 49 |
+
python-dateutil==2.8.2
|
| 50 |
+
python-multipart==0.0.6
|
| 51 |
+
pytz==2023.3
|
| 52 |
+
PyYAML==6.0.1
|
| 53 |
+
referencing==0.30.2
|
| 54 |
+
requests==2.31.0
|
| 55 |
+
rpds-py==0.9.2
|
| 56 |
+
semantic-version==2.10.0
|
| 57 |
+
six==1.16.0
|
| 58 |
+
sniffio==1.3.0
|
| 59 |
+
starlette==0.27.0
|
| 60 |
+
toolz==0.12.0
|
| 61 |
+
tqdm==4.66.1
|
| 62 |
+
tree-sitter==0.20.1
|
| 63 |
+
tree-sitter-languages==1.7.0
|
| 64 |
+
typing_extensions==4.7.1
|
| 65 |
+
tzdata==2023.3
|
| 66 |
+
uc-micro-py==1.0.2
|
| 67 |
+
urllib3==2.0.4
|
| 68 |
+
uvicorn==0.23.2
|
| 69 |
+
websockets==11.0.3
|
| 70 |
+
yarl==1.9.2
|