Spaces:
Sleeping
Sleeping
Python multipart dependency (#13)
Browse files- Added python-multipart dependency to support uploading (a0eb7112fc8f921df62b705e9bcd75e5e634c5c3)
- poetry.lock +15 -1
- pyproject.toml +1 -0
poetry.lock
CHANGED
@@ -3122,6 +3122,20 @@ files = [
|
|
3122 |
[package.extras]
|
3123 |
cli = ["click (>=5.0)"]
|
3124 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3125 |
[[package]]
|
3126 |
name = "pytz"
|
3127 |
version = "2024.1"
|
@@ -4376,4 +4390,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "jaraco.test", "more
|
|
4376 |
[metadata]
|
4377 |
lock-version = "2.0"
|
4378 |
python-versions = "^3.11,<3.12"
|
4379 |
-
content-hash = "
|
|
|
3122 |
[package.extras]
|
3123 |
cli = ["click (>=5.0)"]
|
3124 |
|
3125 |
+
[[package]]
|
3126 |
+
name = "python-multipart"
|
3127 |
+
version = "0.0.9"
|
3128 |
+
description = "A streaming multipart parser for Python"
|
3129 |
+
optional = false
|
3130 |
+
python-versions = ">=3.8"
|
3131 |
+
files = [
|
3132 |
+
{file = "python_multipart-0.0.9-py3-none-any.whl", hash = "sha256:97ca7b8ea7b05f977dc3849c3ba99d51689822fab725c3703af7c866a0c2b215"},
|
3133 |
+
{file = "python_multipart-0.0.9.tar.gz", hash = "sha256:03f54688c663f1b7977105f021043b0793151e4cb1c1a9d4a11fc13d622c4026"},
|
3134 |
+
]
|
3135 |
+
|
3136 |
+
[package.extras]
|
3137 |
+
dev = ["atomicwrites (==1.4.1)", "attrs (==23.2.0)", "coverage (==7.4.1)", "hatch", "invoke (==2.2.0)", "more-itertools (==10.2.0)", "pbr (==6.0.0)", "pluggy (==1.4.0)", "py (==1.11.0)", "pytest (==8.0.0)", "pytest-cov (==4.1.0)", "pytest-timeout (==2.2.0)", "pyyaml (==6.0.1)", "ruff (==0.2.1)"]
|
3138 |
+
|
3139 |
[[package]]
|
3140 |
name = "pytz"
|
3141 |
version = "2024.1"
|
|
|
4390 |
[metadata]
|
4391 |
lock-version = "2.0"
|
4392 |
python-versions = "^3.11,<3.12"
|
4393 |
+
content-hash = "99d9141afef8d1d15a2e26cd82d141146ba630edd99b3adc82803f50c2682091"
|
pyproject.toml
CHANGED
@@ -36,6 +36,7 @@ asyncpg = "^0.29.0"
|
|
36 |
asyncio = "^3.4.3"
|
37 |
pytest-postgresql = "^6.0.0"
|
38 |
psycopg-binary = "^3.1.19"
|
|
|
39 |
|
40 |
[tool.poetry.dependencies.uvicorn]
|
41 |
extras = [ "standard" ]
|
|
|
36 |
asyncio = "^3.4.3"
|
37 |
pytest-postgresql = "^6.0.0"
|
38 |
psycopg-binary = "^3.1.19"
|
39 |
+
python-multipart = "^0.0.9"
|
40 |
|
41 |
[tool.poetry.dependencies.uvicorn]
|
42 |
extras = [ "standard" ]
|