Spaces:
Running
Running
Commit
·
decedbe
1
Parent(s):
e125769
Add python-multipart dependency
Browse files- poetry.lock +16 -1
- pyproject.toml +1 -0
poetry.lock
CHANGED
|
@@ -1928,6 +1928,21 @@ files = [
|
|
| 1928 |
[package.extras]
|
| 1929 |
cli = ["click (>=5.0)"]
|
| 1930 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1931 |
[[package]]
|
| 1932 |
name = "pyyaml"
|
| 1933 |
version = "6.0.2"
|
|
@@ -3159,4 +3174,4 @@ test = ["pytest (>=8.1,<9.0)", "pytest-rerunfailures (>=14.0,<15.0)"]
|
|
| 3159 |
[metadata]
|
| 3160 |
lock-version = "2.1"
|
| 3161 |
python-versions = "^3.11"
|
| 3162 |
-
content-hash = "
|
|
|
|
| 1928 |
[package.extras]
|
| 1929 |
cli = ["click (>=5.0)"]
|
| 1930 |
|
| 1931 |
+
[[package]]
|
| 1932 |
+
name = "python-multipart"
|
| 1933 |
+
version = "0.0.6"
|
| 1934 |
+
description = "A streaming multipart parser for Python"
|
| 1935 |
+
optional = false
|
| 1936 |
+
python-versions = ">=3.7"
|
| 1937 |
+
groups = ["main"]
|
| 1938 |
+
files = [
|
| 1939 |
+
{file = "python_multipart-0.0.6-py3-none-any.whl", hash = "sha256:ee698bab5ef148b0a760751c261902cd096e57e10558e11aca17646b74ee1c18"},
|
| 1940 |
+
{file = "python_multipart-0.0.6.tar.gz", hash = "sha256:e9925a80bb668529f1b67c7fdb0a5dacdd7cbfc6fb0bff3ea443fe22bdd62132"},
|
| 1941 |
+
]
|
| 1942 |
+
|
| 1943 |
+
[package.extras]
|
| 1944 |
+
dev = ["atomicwrites (==1.2.1)", "attrs (==19.2.0)", "coverage (==6.5.0)", "hatch", "invoke (==1.7.3)", "more-itertools (==4.3.0)", "pbr (==4.3.0)", "pluggy (==1.0.0)", "py (==1.11.0)", "pytest (==7.2.0)", "pytest-cov (==4.0.0)", "pytest-timeout (==2.1.0)", "pyyaml (==5.1)"]
|
| 1945 |
+
|
| 1946 |
[[package]]
|
| 1947 |
name = "pyyaml"
|
| 1948 |
version = "6.0.2"
|
|
|
|
| 3174 |
[metadata]
|
| 3175 |
lock-version = "2.1"
|
| 3176 |
python-versions = "^3.11"
|
| 3177 |
+
content-hash = "c4d94b392e42648629ce227cabb60a1edb8d3e151dc065bcec8bef87d574de59"
|
pyproject.toml
CHANGED
|
@@ -14,6 +14,7 @@ pydantic = "^2.5.0"
|
|
| 14 |
pydantic-settings = "^2.1.0"
|
| 15 |
yt-dlp = "^2025.9.5"
|
| 16 |
python-dotenv = "^1.0.0"
|
|
|
|
| 17 |
loguru = "^0.7.2"
|
| 18 |
slowapi = "^0.1.9"
|
| 19 |
cachetools = "^5.3.0"
|
|
|
|
| 14 |
pydantic-settings = "^2.1.0"
|
| 15 |
yt-dlp = "^2025.9.5"
|
| 16 |
python-dotenv = "^1.0.0"
|
| 17 |
+
python-multipart = "^0.0.6"
|
| 18 |
loguru = "^0.7.2"
|
| 19 |
slowapi = "^0.1.9"
|
| 20 |
cachetools = "^5.3.0"
|