fastapi 0.110.2__py3-none-any.whl → 0.110.3__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 CHANGED
@@ -1,6 +1,6 @@
1
1
  """FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
2
2
 
3
- __version__ = "0.110.2"
3
+ __version__ = "0.110.3"
4
4
 
5
5
  from starlette import status as status
6
6
 
@@ -76,7 +76,7 @@ class APIKeyQuery(APIKeyBase):
76
76
  Doc(
77
77
  """
78
78
  By default, if the query parameter is not provided, `APIKeyQuery` will
79
- automatically cancel the request and sebd the client an error.
79
+ automatically cancel the request and send the client an error.
80
80
 
81
81
  If `auto_error` is set to `False`, when the query parameter is not
82
82
  available, instead of erroring out, the dependency result will be
fastapi/security/http.py CHANGED
@@ -15,7 +15,7 @@ from typing_extensions import Annotated, Doc
15
15
 
16
16
  class HTTPBasicCredentials(BaseModel):
17
17
  """
18
- The HTTP Basic credendials given as the result of using `HTTPBasic` in a
18
+ The HTTP Basic credentials given as the result of using `HTTPBasic` in a
19
19
  dependency.
20
20
 
21
21
  Read more about it in the
@@ -1,13 +1,19 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.1
2
2
  Name: fastapi
3
- Version: 0.110.2
3
+ Version: 0.110.3
4
4
  Summary: FastAPI framework, high performance, easy to learn, fast to code, ready for production
5
- Project-URL: Homepage, https://github.com/tiangolo/fastapi
6
- Project-URL: Documentation, https://fastapi.tiangolo.com/
7
- Project-URL: Repository, https://github.com/tiangolo/fastapi
8
- Author-email: Sebastián Ramírez <tiangolo@gmail.com>
9
- License-Expression: MIT
10
- License-File: LICENSE
5
+ Author-Email: =?utf-8?q?Sebasti=C3=A1n_Ram=C3=ADrez?= <tiangolo@gmail.com>
6
+ Classifier: Intended Audience :: Information Technology
7
+ Classifier: Intended Audience :: System Administrators
8
+ Classifier: Operating System :: OS Independent
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Programming Language :: Python
11
+ Classifier: Topic :: Internet
12
+ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
13
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
14
+ Classifier: Topic :: Software Development :: Libraries
15
+ Classifier: Topic :: Software Development
16
+ Classifier: Typing :: Typed
11
17
  Classifier: Development Status :: 4 - Beta
12
18
  Classifier: Environment :: Web Environment
13
19
  Classifier: Framework :: AsyncIO
@@ -15,42 +21,34 @@ Classifier: Framework :: FastAPI
15
21
  Classifier: Framework :: Pydantic
16
22
  Classifier: Framework :: Pydantic :: 1
17
23
  Classifier: Intended Audience :: Developers
18
- Classifier: Intended Audience :: Information Technology
19
- Classifier: Intended Audience :: System Administrators
20
24
  Classifier: License :: OSI Approved :: MIT License
21
- Classifier: Operating System :: OS Independent
22
- Classifier: Programming Language :: Python
23
- Classifier: Programming Language :: Python :: 3
24
25
  Classifier: Programming Language :: Python :: 3 :: Only
25
26
  Classifier: Programming Language :: Python :: 3.8
26
27
  Classifier: Programming Language :: Python :: 3.9
27
28
  Classifier: Programming Language :: Python :: 3.10
28
29
  Classifier: Programming Language :: Python :: 3.11
29
30
  Classifier: Programming Language :: Python :: 3.12
30
- Classifier: Topic :: Internet
31
- Classifier: Topic :: Internet :: WWW/HTTP
32
31
  Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
33
- Classifier: Topic :: Software Development
34
- Classifier: Topic :: Software Development :: Libraries
35
- Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
36
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
37
- Classifier: Typing :: Typed
32
+ Classifier: Topic :: Internet :: WWW/HTTP
33
+ Project-URL: Homepage, https://github.com/tiangolo/fastapi
34
+ Project-URL: Documentation, https://fastapi.tiangolo.com/
35
+ Project-URL: Repository, https://github.com/tiangolo/fastapi
38
36
  Requires-Python: >=3.8
39
- Requires-Dist: pydantic!=1.8,!=1.8.1,!=2.0.0,!=2.0.1,!=2.1.0,<3.0.0,>=1.7.4
40
37
  Requires-Dist: starlette<0.38.0,>=0.37.2
38
+ Requires-Dist: pydantic!=1.8,!=1.8.1,!=2.0.0,!=2.0.1,!=2.1.0,<3.0.0,>=1.7.4
41
39
  Requires-Dist: typing-extensions>=4.8.0
40
+ Requires-Dist: httpx>=0.23.0; extra == "all"
41
+ Requires-Dist: jinja2>=2.11.2; extra == "all"
42
+ Requires-Dist: python-multipart>=0.0.7; extra == "all"
43
+ Requires-Dist: itsdangerous>=1.1.0; extra == "all"
44
+ Requires-Dist: pyyaml>=5.3.1; extra == "all"
45
+ Requires-Dist: ujson!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0,>=4.0.1; extra == "all"
46
+ Requires-Dist: orjson>=3.2.1; extra == "all"
47
+ Requires-Dist: email_validator>=2.0.0; extra == "all"
48
+ Requires-Dist: uvicorn[standard]>=0.12.0; extra == "all"
49
+ Requires-Dist: pydantic-settings>=2.0.0; extra == "all"
50
+ Requires-Dist: pydantic-extra-types>=2.0.0; extra == "all"
42
51
  Provides-Extra: all
43
- Requires-Dist: email-validator>=2.0.0; extra == 'all'
44
- Requires-Dist: httpx>=0.23.0; extra == 'all'
45
- Requires-Dist: itsdangerous>=1.1.0; extra == 'all'
46
- Requires-Dist: jinja2>=2.11.2; extra == 'all'
47
- Requires-Dist: orjson>=3.2.1; extra == 'all'
48
- Requires-Dist: pydantic-extra-types>=2.0.0; extra == 'all'
49
- Requires-Dist: pydantic-settings>=2.0.0; extra == 'all'
50
- Requires-Dist: python-multipart>=0.0.7; extra == 'all'
51
- Requires-Dist: pyyaml>=5.3.1; extra == 'all'
52
- Requires-Dist: ujson!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0,>=4.0.1; extra == 'all'
53
- Requires-Dist: uvicorn[standard]>=0.12.0; extra == 'all'
54
52
  Description-Content-Type: text/markdown
55
53
 
56
54
  <p align="center">
@@ -82,7 +80,7 @@ Description-Content-Type: text/markdown
82
80
 
83
81
  ---
84
82
 
85
- FastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3.8+ based on standard Python type hints.
83
+ FastAPI is a modern, fast (high-performance), web framework for building APIs with Python based on standard Python type hints.
86
84
 
87
85
  The key features are:
88
86
 
@@ -177,8 +175,6 @@ If you are building a <abbr title="Command Line Interface">CLI</abbr> app to be
177
175
 
178
176
  ## Requirements
179
177
 
180
- Python 3.8+
181
-
182
178
  FastAPI stands on the shoulders of giants:
183
179
 
184
180
  * <a href="https://www.starlette.io/" class="external-link" target="_blank">Starlette</a> for the web parts.
@@ -393,7 +389,7 @@ You do that with standard modern Python types.
393
389
 
394
390
  You don't have to learn a new syntax, the methods or classes of a specific library, etc.
395
391
 
396
- Just standard **Python 3.8+**.
392
+ Just standard **Python**.
397
393
 
398
394
  For example, for an `int`:
399
395
 
@@ -1,28 +1,19 @@
1
- fastapi/__init__.py,sha256=65PZp03djREUv-hpPFJZ28JsbzUm-AN3YhacJDCMDYQ,1081
1
+ fastapi-0.110.3.dist-info/METADATA,sha256=81kokin6nTllQ95tpZuSv-jFwumDlALKA6n37GKVoa8,24917
2
+ fastapi-0.110.3.dist-info/WHEEL,sha256=7sv5iXvIiTVJSnAxCz2tGBm9DHsb2vPSzeYeT7pvGUY,90
3
+ fastapi-0.110.3.dist-info/licenses/LICENSE,sha256=Tsif_IFIW5f-xYSy1KlhAy7v_oNEU4lP2cEnSQbMdE4,1086
4
+ fastapi/__init__.py,sha256=VVkOQ6EIeSTPDCEbuVfYE46phpcTtbrtenP37MxiIXU,1081
2
5
  fastapi/_compat.py,sha256=OjE3FUZ0IPXqIJWKhoWKDNCHv4so-FQ-rfN8ngQZeFE,23134
3
6
  fastapi/applications.py,sha256=owRSmdslsJhJCDxxatkfMdewlaiE-9DPbwQ7alyexgU,176342
4
7
  fastapi/background.py,sha256=rouLirxUANrcYC824MSMypXL_Qb2HYg2YZqaiEqbEKI,1768
5
8
  fastapi/concurrency.py,sha256=AYLnS4judDUmXsNRICtoKSP0prfYDcS8ehBtYW9JhQQ,1403
6
9
  fastapi/datastructures.py,sha256=b2PEz77XGq-u3Ur1Inwk0AGjOsQZO49yF9C7IPJ15cY,5766
10
+ fastapi/dependencies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ fastapi/dependencies/models.py,sha256=-n-YCxzgVBkurQi49qOTooT71v_oeAhHJ-qQFonxh5o,2494
12
+ fastapi/dependencies/utils.py,sha256=rynOrwW6BKSv0bTVDCY1ag4kRsOzJwmmzO31sRKsTzA,30241
7
13
  fastapi/encoders.py,sha256=LvwYmFeOz4tVwvgBoC5rvZnbr7hZr73KGrU8O7zSptU,11068
8
14
  fastapi/exception_handlers.py,sha256=MBrIOA-ugjJDivIi4rSsUJBdTsjuzN76q4yh0q1COKw,1332
9
15
  fastapi/exceptions.py,sha256=taNixuFEXb67lI1bnX1ubq8y8TseJ4yoPlWjyP0fTzk,4969
10
16
  fastapi/logger.py,sha256=I9NNi3ov8AcqbsbC9wl1X-hdItKgYt2XTrx1f99Zpl4,54
11
- fastapi/param_functions.py,sha256=LcVyxFoK-W1gYGaH7H1dGvth1alwwxXouReg4zKSk88,64005
12
- fastapi/params.py,sha256=GB7aNcyBt8xFUVLnLzt8AGJfZAncQJvwd4N8nhjcXHk,28191
13
- fastapi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
- fastapi/requests.py,sha256=zayepKFcienBllv3snmWI20Gk0oHNVLU4DDhqXBb4LU,142
15
- fastapi/responses.py,sha256=QNQQlwpKhQoIPZTTWkpc9d_QGeGZ_aVQPaDV3nQ8m7c,1761
16
- fastapi/routing.py,sha256=dcQBjxUsO9KT0pmp1ewJzM8qD3wjcZi1BrnyyqYELoE,174150
17
- fastapi/staticfiles.py,sha256=iirGIt3sdY2QZXd36ijs3Cj-T0FuGFda3cd90kM9Ikw,69
18
- fastapi/templating.py,sha256=4zsuTWgcjcEainMJFAlW6-gnslm6AgOS1SiiDWfmQxk,76
19
- fastapi/testclient.py,sha256=nBvaAmX66YldReJNZXPOk1sfuo2Q6hs8bOvIaCep6LQ,66
20
- fastapi/types.py,sha256=nFb36sK3DSoqoyo7Miwy3meKK5UdFBgkAgLSzQlUVyI,383
21
- fastapi/utils.py,sha256=lHKngr-TmOx9QzSyA6PXYSvEgxPYUIk5t3u-kZtskEM,8035
22
- fastapi/websockets.py,sha256=419uncYObEKZG0YcrXscfQQYLSWoE10jqxVMetGdR98,222
23
- fastapi/dependencies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
- fastapi/dependencies/models.py,sha256=-n-YCxzgVBkurQi49qOTooT71v_oeAhHJ-qQFonxh5o,2494
25
- fastapi/dependencies/utils.py,sha256=rynOrwW6BKSv0bTVDCY1ag4kRsOzJwmmzO31sRKsTzA,30241
26
17
  fastapi/middleware/__init__.py,sha256=oQDxiFVcc1fYJUOIFvphnK7pTT5kktmfL32QXpBFvvo,58
27
18
  fastapi/middleware/cors.py,sha256=ynwjWQZoc_vbhzZ3_ZXceoaSrslHFHPdoM52rXr0WUU,79
28
19
  fastapi/middleware/gzip.py,sha256=xM5PcsH8QlAimZw4VDvcmTnqQamslThsfe3CVN2voa0,79
@@ -34,14 +25,23 @@ fastapi/openapi/constants.py,sha256=adGzmis1L1HJRTE3kJ5fmHS_Noq6tIY6pWv_SFzoFDU,
34
25
  fastapi/openapi/docs.py,sha256=INQd4dFFyOwckrtlrkMbWzsyI1a4wvz8c7S_u0vYgOo,10356
35
26
  fastapi/openapi/models.py,sha256=PqkxQiqcEgjKuhfUIWPZPQcyTcubtUCB3vcObLsB7VE,15397
36
27
  fastapi/openapi/utils.py,sha256=asSbOKDuagDfpByNQvPy7OM0sqOBdUmqh64BH-n-5f0,22286
28
+ fastapi/param_functions.py,sha256=LcVyxFoK-W1gYGaH7H1dGvth1alwwxXouReg4zKSk88,64005
29
+ fastapi/params.py,sha256=GB7aNcyBt8xFUVLnLzt8AGJfZAncQJvwd4N8nhjcXHk,28191
30
+ fastapi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
+ fastapi/requests.py,sha256=zayepKFcienBllv3snmWI20Gk0oHNVLU4DDhqXBb4LU,142
32
+ fastapi/responses.py,sha256=QNQQlwpKhQoIPZTTWkpc9d_QGeGZ_aVQPaDV3nQ8m7c,1761
33
+ fastapi/routing.py,sha256=dcQBjxUsO9KT0pmp1ewJzM8qD3wjcZi1BrnyyqYELoE,174150
37
34
  fastapi/security/__init__.py,sha256=bO8pNmxqVRXUjfl2mOKiVZLn0FpBQ61VUYVjmppnbJw,881
38
- fastapi/security/api_key.py,sha256=1MwaTMyqmRh0nIIDICsP6iG9Rdwbzh-BG0SFWKRc8no,9368
35
+ fastapi/security/api_key.py,sha256=_OqUUjEHG5_MT1IPAhXIGJRCPldTBdSww_DegFy_W8Y,9368
39
36
  fastapi/security/base.py,sha256=dl4pvbC-RxjfbWgPtCWd8MVU-7CB2SZ22rJDXVCXO6c,141
40
- fastapi/security/http.py,sha256=Cb7DbOPWpnzvKZTwCdxWRXxa2txZBdeeAdT0tlRdQgY,13506
37
+ fastapi/security/http.py,sha256=sXw3jvaMPxDmMaGlf5e2ES5TuGXDKXFOigntzUfSqIg,13506
41
38
  fastapi/security/oauth2.py,sha256=lWemX4CLAvanR6-jiQxFtOyHjHbzEnNbpytA_WXgZcw,21583
42
39
  fastapi/security/open_id_connect_url.py,sha256=8vizZ2tGqEp1ur8SwtVgyHJhGAJ5AqahgcvSpaIioDI,2722
43
40
  fastapi/security/utils.py,sha256=bd8T0YM7UQD5ATKucr1bNtAvz_Y3__dVNAv5UebiPvc,293
44
- fastapi-0.110.2.dist-info/METADATA,sha256=Bg86O2Aq_H7ciELGKNHZSvboENPKy06fg08ZrOnWKcI,24966
45
- fastapi-0.110.2.dist-info/WHEEL,sha256=osohxoshIHTFJFVPhsi1UkZuLRGMHRXZzwEBW2ezjrc,87
46
- fastapi-0.110.2.dist-info/licenses/LICENSE,sha256=Tsif_IFIW5f-xYSy1KlhAy7v_oNEU4lP2cEnSQbMdE4,1086
47
- fastapi-0.110.2.dist-info/RECORD,,
41
+ fastapi/staticfiles.py,sha256=iirGIt3sdY2QZXd36ijs3Cj-T0FuGFda3cd90kM9Ikw,69
42
+ fastapi/templating.py,sha256=4zsuTWgcjcEainMJFAlW6-gnslm6AgOS1SiiDWfmQxk,76
43
+ fastapi/testclient.py,sha256=nBvaAmX66YldReJNZXPOk1sfuo2Q6hs8bOvIaCep6LQ,66
44
+ fastapi/types.py,sha256=nFb36sK3DSoqoyo7Miwy3meKK5UdFBgkAgLSzQlUVyI,383
45
+ fastapi/utils.py,sha256=lHKngr-TmOx9QzSyA6PXYSvEgxPYUIk5t3u-kZtskEM,8035
46
+ fastapi/websockets.py,sha256=419uncYObEKZG0YcrXscfQQYLSWoE10jqxVMetGdR98,222
47
+ fastapi-0.110.3.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.24.1
2
+ Generator: pdm-backend (2.2.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any