wip: add python multipart

This commit is contained in:
Jakub Miazek 2024-02-17 09:47:03 +01:00
parent a8882084d5
commit 47aaef2bd4
2 changed files with 16 additions and 1 deletions

16
poetry.lock generated
View File

@ -1358,6 +1358,20 @@ files = [
[package.extras] [package.extras]
cli = ["click (>=5.0)"] cli = ["click (>=5.0)"]
[[package]]
name = "python-multipart"
version = "0.0.9"
description = "A streaming multipart parser for Python"
optional = false
python-versions = ">=3.8"
files = [
{file = "python_multipart-0.0.9-py3-none-any.whl", hash = "sha256:97ca7b8ea7b05f977dc3849c3ba99d51689822fab725c3703af7c866a0c2b215"},
{file = "python_multipart-0.0.9.tar.gz", hash = "sha256:03f54688c663f1b7977105f021043b0793151e4cb1c1a9d4a11fc13d622c4026"},
]
[package.extras]
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)"]
[[package]] [[package]]
name = "pyupgrade" name = "pyupgrade"
version = "3.15.0" version = "3.15.0"
@ -2138,4 +2152,4 @@ files = [
[metadata] [metadata]
lock-version = "2.0" lock-version = "2.0"
python-versions = "^3.12" python-versions = "^3.12"
content-hash = "b2b8464d0d8bae8804ead5aa13137a140b2a22ad23736f3d66243d0b0ea63315" content-hash = "bc15607e221af1a158fd869785e02e017b5b50633d3205d50f1b2bd2bd58d92d"

View File

@ -26,6 +26,7 @@ redis = "5.0.1"
passlib = {version = "^1.7.4", extras = ["bcrypt"]} passlib = {version = "^1.7.4", extras = ["bcrypt"]}
sourcery = "^1.15.0" sourcery = "^1.15.0"
polars = "^0.20.8" polars = "^0.20.8"
python-multipart = "^0.0.9"
[tool.poetry.dev-dependencies] [tool.poetry.dev-dependencies]
devtools = { extras = ["pygments"], version = "*" } devtools = { extras = ["pygments"], version = "*" }