fastapi-extra 0.3.4__tar.gz → 0.3.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/PKG-INFO +2 -2
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/__init__.py +1 -1
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/_patch.py +1 -1
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra.egg-info/PKG-INFO +2 -2
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra.egg-info/requires.txt +1 -1
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/pyproject.toml +1 -1
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/LICENSE +0 -0
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/README.rst +0 -0
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/cache/__init__.py +0 -0
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/cache/redis.py +0 -0
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/cursor.pyi +0 -0
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/database/__init__.py +0 -0
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/database/model.py +0 -0
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/database/service.py +0 -0
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/database/session.py +0 -0
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/dependency.py +0 -0
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/form.py +0 -0
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/native/cursor.pyx +0 -0
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/native/routing.pyx +0 -0
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/native/urlparse.pyx +0 -0
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/py.typed +0 -0
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/response.py +0 -0
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/routing.pyi +0 -0
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/settings.py +0 -0
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/types.py +0 -0
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/urlparse.pyi +0 -0
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra/utils.py +0 -0
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra.egg-info/SOURCES.txt +0 -0
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra.egg-info/dependency_links.txt +0 -0
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/fastapi_extra.egg-info/top_level.txt +0 -0
- {fastapi_extra-0.3.4 → fastapi_extra-0.3.5}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fastapi-extra
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.5
|
|
4
4
|
Summary: extra package for fastapi.
|
|
5
5
|
Author-email: Ziyan Yin <408856732@qq.com>
|
|
6
6
|
License: BSD-3-Clause
|
|
@@ -18,7 +18,7 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
|
18
18
|
Requires-Python: >=3.12
|
|
19
19
|
Description-Content-Type: text/x-rst
|
|
20
20
|
License-File: LICENSE
|
|
21
|
-
Requires-Dist: fastapi<0.
|
|
21
|
+
Requires-Dist: fastapi<0.137.0,>=0.136.0
|
|
22
22
|
Requires-Dist: httpx<0.29.0,>=0.28.0
|
|
23
23
|
Requires-Dist: pydantic-settings>=2.12.0
|
|
24
24
|
Requires-Dist: sqlmodel>=0.0.22
|
|
@@ -71,7 +71,7 @@ def request_params_to_args(
|
|
|
71
71
|
for key in received_params.keys():
|
|
72
72
|
if key not in processed_keys:
|
|
73
73
|
if hasattr(received_params, "getlist"):
|
|
74
|
-
value = received_params.getlist(key)
|
|
74
|
+
value = received_params.getlist(key) # type: ignore
|
|
75
75
|
if isinstance(value, list) and (len(value) == 1):
|
|
76
76
|
params_to_process[key] = value[0]
|
|
77
77
|
else:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fastapi-extra
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.5
|
|
4
4
|
Summary: extra package for fastapi.
|
|
5
5
|
Author-email: Ziyan Yin <408856732@qq.com>
|
|
6
6
|
License: BSD-3-Clause
|
|
@@ -18,7 +18,7 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
|
18
18
|
Requires-Python: >=3.12
|
|
19
19
|
Description-Content-Type: text/x-rst
|
|
20
20
|
License-File: LICENSE
|
|
21
|
-
Requires-Dist: fastapi<0.
|
|
21
|
+
Requires-Dist: fastapi<0.137.0,>=0.136.0
|
|
22
22
|
Requires-Dist: httpx<0.29.0,>=0.28.0
|
|
23
23
|
Requires-Dist: pydantic-settings>=2.12.0
|
|
24
24
|
Requires-Dist: sqlmodel>=0.0.22
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|