fastapi 0.116.0__py3-none-any.whl → 0.116.1__py3-none-any.whl
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.
Potentially problematic release.
This version of fastapi might be problematic. Click here for more details.
- fastapi/__init__.py +1 -1
- fastapi/routing.py +2 -1
- {fastapi-0.116.0.dist-info → fastapi-0.116.1.dist-info}/METADATA +2 -2
- {fastapi-0.116.0.dist-info → fastapi-0.116.1.dist-info}/RECORD +7 -7
- {fastapi-0.116.0.dist-info → fastapi-0.116.1.dist-info}/WHEEL +0 -0
- {fastapi-0.116.0.dist-info → fastapi-0.116.1.dist-info}/entry_points.txt +0 -0
- {fastapi-0.116.0.dist-info → fastapi-0.116.1.dist-info}/licenses/LICENSE +0 -0
fastapi/__init__.py
CHANGED
fastapi/routing.py
CHANGED
|
@@ -9,6 +9,7 @@ from typing import (
|
|
|
9
9
|
Any,
|
|
10
10
|
AsyncIterator,
|
|
11
11
|
Callable,
|
|
12
|
+
Collection,
|
|
12
13
|
Coroutine,
|
|
13
14
|
Dict,
|
|
14
15
|
List,
|
|
@@ -862,7 +863,7 @@ class APIRouter(routing.Router):
|
|
|
862
863
|
def route(
|
|
863
864
|
self,
|
|
864
865
|
path: str,
|
|
865
|
-
methods: Optional[
|
|
866
|
+
methods: Optional[Collection[str]] = None,
|
|
866
867
|
name: Optional[str] = None,
|
|
867
868
|
include_in_schema: bool = True,
|
|
868
869
|
) -> Callable[[DecoratedCallable], DecoratedCallable]:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: fastapi
|
|
3
|
-
Version: 0.116.
|
|
3
|
+
Version: 0.116.1
|
|
4
4
|
Summary: FastAPI framework, high performance, easy to learn, fast to code, ready for production
|
|
5
5
|
Author-Email: =?utf-8?q?Sebasti=C3=A1n_Ram=C3=ADrez?= <tiangolo@gmail.com>
|
|
6
6
|
Classifier: Intended Audience :: Information Technology
|
|
@@ -38,7 +38,7 @@ Project-URL: Repository, https://github.com/fastapi/fastapi
|
|
|
38
38
|
Project-URL: Issues, https://github.com/fastapi/fastapi/issues
|
|
39
39
|
Project-URL: Changelog, https://fastapi.tiangolo.com/release-notes/
|
|
40
40
|
Requires-Python: >=3.8
|
|
41
|
-
Requires-Dist: starlette<0.
|
|
41
|
+
Requires-Dist: starlette<0.48.0,>=0.40.0
|
|
42
42
|
Requires-Dist: pydantic!=1.8,!=1.8.1,!=2.0.0,!=2.0.1,!=2.1.0,<3.0.0,>=1.7.4
|
|
43
43
|
Requires-Dist: typing-extensions>=4.8.0
|
|
44
44
|
Provides-Extra: standard
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
fastapi-0.116.
|
|
2
|
-
fastapi-0.116.
|
|
3
|
-
fastapi-0.116.
|
|
4
|
-
fastapi-0.116.
|
|
5
|
-
fastapi/__init__.py,sha256
|
|
1
|
+
fastapi-0.116.1.dist-info/METADATA,sha256=pnu4s6rAsNuB66sYhB59UFxRuZv2ua6fbH_jUM6HM2k,28115
|
|
2
|
+
fastapi-0.116.1.dist-info/WHEEL,sha256=9P2ygRxDrTJz3gsagc0Z96ukrxjr-LFBGOgv3AuKlCA,90
|
|
3
|
+
fastapi-0.116.1.dist-info/entry_points.txt,sha256=GCf-WbIZxyGT4MUmrPGj1cOHYZoGsNPHAvNkT6hnGeA,61
|
|
4
|
+
fastapi-0.116.1.dist-info/licenses/LICENSE,sha256=Tsif_IFIW5f-xYSy1KlhAy7v_oNEU4lP2cEnSQbMdE4,1086
|
|
5
|
+
fastapi/__init__.py,sha256=-U8vW9K3Hy78v_3O0ECrEfMmPtSuHaA1yAql96bd8ts,1081
|
|
6
6
|
fastapi/__main__.py,sha256=bKePXLdO4SsVSM6r9SVoLickJDcR2c0cTOxZRKq26YQ,37
|
|
7
7
|
fastapi/_compat.py,sha256=PwGTZd6d-u2o6YF9M8pQahuBtD_3q3Kpj7vU5-ngChc,24228
|
|
8
8
|
fastapi/applications.py,sha256=rZTr0Ix-vdMwh6MQGCI_NC-Ir9lpfIGHHBY-JnNWZ_E,176550
|
|
@@ -33,7 +33,7 @@ fastapi/params.py,sha256=g450axUBQgQJODdtM7WBxZbQj9Z64inFvadrgHikBbU,28237
|
|
|
33
33
|
fastapi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
34
|
fastapi/requests.py,sha256=zayepKFcienBllv3snmWI20Gk0oHNVLU4DDhqXBb4LU,142
|
|
35
35
|
fastapi/responses.py,sha256=QNQQlwpKhQoIPZTTWkpc9d_QGeGZ_aVQPaDV3nQ8m7c,1761
|
|
36
|
-
fastapi/routing.py,sha256
|
|
36
|
+
fastapi/routing.py,sha256=-SaOgqaseKw5mlTCk-FliS6Wx5la_CjdV5FqSPDmW9g,176337
|
|
37
37
|
fastapi/security/__init__.py,sha256=bO8pNmxqVRXUjfl2mOKiVZLn0FpBQ61VUYVjmppnbJw,881
|
|
38
38
|
fastapi/security/api_key.py,sha256=cBI5Z4zWVjL1uJrsjTeLy7MafHPAO2HQPzTrpyoIYWA,9094
|
|
39
39
|
fastapi/security/base.py,sha256=dl4pvbC-RxjfbWgPtCWd8MVU-7CB2SZ22rJDXVCXO6c,141
|
|
@@ -47,4 +47,4 @@ fastapi/testclient.py,sha256=nBvaAmX66YldReJNZXPOk1sfuo2Q6hs8bOvIaCep6LQ,66
|
|
|
47
47
|
fastapi/types.py,sha256=nFb36sK3DSoqoyo7Miwy3meKK5UdFBgkAgLSzQlUVyI,383
|
|
48
48
|
fastapi/utils.py,sha256=y8Bj5ttMaI9tS4D60OUgXqKnktBr99NdYUnHHV9LgoY,7948
|
|
49
49
|
fastapi/websockets.py,sha256=419uncYObEKZG0YcrXscfQQYLSWoE10jqxVMetGdR98,222
|
|
50
|
-
fastapi-0.116.
|
|
50
|
+
fastapi-0.116.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|