fastapi 0.111.0.dev1__py3-none-any.whl → 0.112.0__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.111.0.dev1"
3
+ __version__ = "0.112.0"
4
4
 
5
5
  from starlette import status as status
6
6
 
fastapi/__main__.py ADDED
@@ -0,0 +1,3 @@
1
+ from fastapi.cli import main
2
+
3
+ main()
fastapi/applications.py CHANGED
@@ -902,7 +902,7 @@ class FastAPI(Starlette):
902
902
  A state object for the application. This is the same object for the
903
903
  entire application, it doesn't change from request to request.
904
904
 
905
- You normally woudln't use this in FastAPI, for most of the cases you
905
+ You normally wouldn't use this in FastAPI, for most of the cases you
906
906
  would instead use FastAPI dependencies.
907
907
 
908
908
  This is simply inherited from Starlette.
fastapi/cli.py ADDED
@@ -0,0 +1,13 @@
1
+ try:
2
+ from fastapi_cli.cli import main as cli_main
3
+
4
+ except ImportError: # pragma: no cover
5
+ cli_main = None # type: ignore
6
+
7
+
8
+ def main() -> None:
9
+ if not cli_main: # type: ignore[truthy-function]
10
+ message = 'To use the fastapi command, please install "fastapi[standard]":\n\n\tpip install "fastapi[standard]"\n'
11
+ print(message)
12
+ raise RuntimeError(message) # noqa: B904
13
+ cli_main()
fastapi/openapi/docs.py CHANGED
@@ -53,7 +53,7 @@ def get_swagger_ui_html(
53
53
  It is normally set to a CDN URL.
54
54
  """
55
55
  ),
56
- ] = "https://cdn.jsdelivr.net/npm/swagger-ui-dist@5.9.0/swagger-ui-bundle.js",
56
+ ] = "https://cdn.jsdelivr.net/npm/swagger-ui-dist@5/swagger-ui-bundle.js",
57
57
  swagger_css_url: Annotated[
58
58
  str,
59
59
  Doc(
@@ -63,7 +63,7 @@ def get_swagger_ui_html(
63
63
  It is normally set to a CDN URL.
64
64
  """
65
65
  ),
66
- ] = "https://cdn.jsdelivr.net/npm/swagger-ui-dist@5.9.0/swagger-ui.css",
66
+ ] = "https://cdn.jsdelivr.net/npm/swagger-ui-dist@5/swagger-ui.css",
67
67
  swagger_favicon_url: Annotated[
68
68
  str,
69
69
  Doc(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fastapi
3
- Version: 0.111.0.dev1
3
+ Version: 0.112.0
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
@@ -30,20 +30,20 @@ Classifier: Programming Language :: Python :: 3.11
30
30
  Classifier: Programming Language :: Python :: 3.12
31
31
  Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
32
32
  Classifier: Topic :: Internet :: WWW/HTTP
33
- Project-URL: Homepage, https://github.com/tiangolo/fastapi
33
+ Project-URL: Homepage, https://github.com/fastapi/fastapi
34
34
  Project-URL: Documentation, https://fastapi.tiangolo.com/
35
- Project-URL: Repository, https://github.com/tiangolo/fastapi
35
+ Project-URL: Repository, https://github.com/fastapi/fastapi
36
36
  Requires-Python: >=3.8
37
37
  Requires-Dist: starlette<0.38.0,>=0.37.2
38
38
  Requires-Dist: pydantic!=1.8,!=1.8.1,!=2.0.0,!=2.0.1,!=2.1.0,<3.0.0,>=1.7.4
39
39
  Requires-Dist: typing-extensions>=4.8.0
40
- Requires-Dist: httpx>=0.23.0
41
- Requires-Dist: jinja2>=2.11.2
42
- Requires-Dist: python-multipart>=0.0.7
43
- Requires-Dist: ujson!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0,>=4.0.1
44
- Requires-Dist: orjson>=3.2.1
45
- Requires-Dist: email_validator>=2.0.0
46
- Requires-Dist: uvicorn[standard]>=0.12.0
40
+ Requires-Dist: fastapi-cli[standard]>=0.0.5; extra == "standard"
41
+ Requires-Dist: httpx>=0.23.0; extra == "standard"
42
+ Requires-Dist: jinja2>=2.11.2; extra == "standard"
43
+ Requires-Dist: python-multipart>=0.0.7; extra == "standard"
44
+ Requires-Dist: email_validator>=2.0.0; extra == "standard"
45
+ Requires-Dist: uvicorn[standard]>=0.12.0; extra == "standard"
46
+ Requires-Dist: fastapi-cli[standard]>=0.0.5; extra == "all"
47
47
  Requires-Dist: httpx>=0.23.0; extra == "all"
48
48
  Requires-Dist: jinja2>=2.11.2; extra == "all"
49
49
  Requires-Dist: python-multipart>=0.0.7; extra == "all"
@@ -55,6 +55,7 @@ Requires-Dist: email_validator>=2.0.0; extra == "all"
55
55
  Requires-Dist: uvicorn[standard]>=0.12.0; extra == "all"
56
56
  Requires-Dist: pydantic-settings>=2.0.0; extra == "all"
57
57
  Requires-Dist: pydantic-extra-types>=2.0.0; extra == "all"
58
+ Provides-Extra: standard
58
59
  Provides-Extra: all
59
60
  Description-Content-Type: text/markdown
60
61
 
@@ -65,11 +66,11 @@ Description-Content-Type: text/markdown
65
66
  <em>FastAPI framework, high performance, easy to learn, fast to code, ready for production</em>
66
67
  </p>
67
68
  <p align="center">
68
- <a href="https://github.com/tiangolo/fastapi/actions?query=workflow%3ATest+event%3Apush+branch%3Amaster" target="_blank">
69
- <img src="https://github.com/tiangolo/fastapi/workflows/Test/badge.svg?event=push&branch=master" alt="Test">
69
+ <a href="https://github.com/fastapi/fastapi/actions?query=workflow%3ATest+event%3Apush+branch%3Amaster" target="_blank">
70
+ <img src="https://github.com/fastapi/fastapi/workflows/Test/badge.svg?event=push&branch=master" alt="Test">
70
71
  </a>
71
- <a href="https://coverage-badge.samuelcolvin.workers.dev/redirect/tiangolo/fastapi" target="_blank">
72
- <img src="https://coverage-badge.samuelcolvin.workers.dev/tiangolo/fastapi.svg" alt="Coverage">
72
+ <a href="https://coverage-badge.samuelcolvin.workers.dev/redirect/fastapi/fastapi" target="_blank">
73
+ <img src="https://coverage-badge.samuelcolvin.workers.dev/fastapi/fastapi.svg" alt="Coverage">
73
74
  </a>
74
75
  <a href="https://pypi.org/project/fastapi" target="_blank">
75
76
  <img src="https://img.shields.io/pypi/v/fastapi?color=%2334D058&label=pypi%20package" alt="Package version">
@@ -83,7 +84,7 @@ Description-Content-Type: text/markdown
83
84
 
84
85
  **Documentation**: <a href="https://fastapi.tiangolo.com" target="_blank">https://fastapi.tiangolo.com</a>
85
86
 
86
- **Source Code**: <a href="https://github.com/tiangolo/fastapi" target="_blank">https://github.com/tiangolo/fastapi</a>
87
+ **Source Code**: <a href="https://github.com/fastapi/fastapi" target="_blank">https://github.com/fastapi/fastapi</a>
87
88
 
88
89
  ---
89
90
 
@@ -110,17 +111,20 @@ The key features are:
110
111
  <a href="https://platform.sh/try-it-now/?utm_source=fastapi-signup&utm_medium=banner&utm_campaign=FastAPI-signup-June-2023" target="_blank" title="Build, run and scale your apps on a modern, reliable, and secure PaaS."><img src="https://fastapi.tiangolo.com/img/sponsors/platform-sh.png"></a>
111
112
  <a href="https://www.porter.run" target="_blank" title="Deploy FastAPI on AWS with a few clicks"><img src="https://fastapi.tiangolo.com/img/sponsors/porter.png"></a>
112
113
  <a href="https://bump.sh/fastapi?utm_source=fastapi&utm_medium=referral&utm_campaign=sponsor" target="_blank" title="Automate FastAPI documentation generation with Bump.sh"><img src="https://fastapi.tiangolo.com/img/sponsors/bump-sh.svg"></a>
113
- <a href="https://reflex.dev" target="_blank" title="Reflex"><img src="https://fastapi.tiangolo.com/img/sponsors/reflex.png"></a>
114
114
  <a href="https://github.com/scalar/scalar/?utm_source=fastapi&utm_medium=website&utm_campaign=main-badge" target="_blank" title="Scalar: Beautiful Open-Source API References from Swagger/OpenAPI files"><img src="https://fastapi.tiangolo.com/img/sponsors/scalar.svg"></a>
115
115
  <a href="https://www.propelauth.com/?utm_source=fastapi&utm_campaign=1223&utm_medium=mainbadge" target="_blank" title="Auth, user management and more for your B2B product"><img src="https://fastapi.tiangolo.com/img/sponsors/propelauth.png"></a>
116
- <a href="https://www.withcoherence.com/?utm_medium=advertising&utm_source=fastapi&utm_campaign=banner%20january%2024" target="_blank" title="Coherence"><img src="https://fastapi.tiangolo.com/img/sponsors/coherence.png"></a>
116
+ <a href="https://docs.withcoherence.com/configuration/frameworks/?utm_medium=advertising&utm_source=fastapi&utm_campaign=docs#fastapi-example" target="_blank" title="Coherence"><img src="https://fastapi.tiangolo.com/img/sponsors/coherence.png"></a>
117
117
  <a href="https://www.mongodb.com/developer/languages/python/python-quickstart-fastapi/?utm_campaign=fastapi_framework&utm_source=fastapi_sponsorship&utm_medium=web_referral" target="_blank" title="Simplify Full Stack Development with FastAPI & MongoDB"><img src="https://fastapi.tiangolo.com/img/sponsors/mongodb.png"></a>
118
- <a href="https://training.talkpython.fm/fastapi-courses" target="_blank" title="FastAPI video courses on demand from people you trust"><img src="https://fastapi.tiangolo.com/img/sponsors/talkpython-v2.jpg"></a>
118
+ <a href="https://konghq.com/products/kong-konnect?utm_medium=referral&utm_source=github&utm_campaign=platform&utm_content=fast-api" target="_blank" title="Kong Konnect - API management platform"><img src="https://fastapi.tiangolo.com/img/sponsors/kong.png"></a>
119
+ <a href="https://zuplo.link/fastapi-gh" target="_blank" title="Zuplo: Scale, Protect, Document, and Monetize your FastAPI"><img src="https://fastapi.tiangolo.com/img/sponsors/zuplo.png"></a>
120
+ <a href="https://fine.dev?ref=fastapibadge" target="_blank" title="Fine's AI FastAPI Workflow: Effortlessly Deploy and Integrate FastAPI into Your Project"><img src="https://fastapi.tiangolo.com/img/sponsors/fine.png"></a>
121
+ <a href="https://liblab.com?utm_source=fastapi" target="_blank" title="liblab - Generate SDKs from FastAPI"><img src="https://fastapi.tiangolo.com/img/sponsors/liblab.png"></a>
119
122
  <a href="https://github.com/deepset-ai/haystack/" target="_blank" title="Build powerful search from composable, open source building blocks"><img src="https://fastapi.tiangolo.com/img/sponsors/haystack-fastapi.svg"></a>
120
123
  <a href="https://databento.com/" target="_blank" title="Pay as you go for market data"><img src="https://fastapi.tiangolo.com/img/sponsors/databento.svg"></a>
121
- <a href="https://speakeasyapi.dev?utm_source=fastapi+repo&utm_medium=github+sponsorship" target="_blank" title="SDKs for your API | Speakeasy"><img src="https://fastapi.tiangolo.com/img/sponsors/speakeasy.png"></a>
124
+ <a href="https://speakeasy.com?utm_source=fastapi+repo&utm_medium=github+sponsorship" target="_blank" title="SDKs for your API | Speakeasy"><img src="https://fastapi.tiangolo.com/img/sponsors/speakeasy.png"></a>
122
125
  <a href="https://www.svix.com/" target="_blank" title="Svix - Webhooks as a service"><img src="https://fastapi.tiangolo.com/img/sponsors/svix.svg"></a>
123
126
  <a href="https://www.codacy.com/?utm_source=github&utm_medium=sponsors&utm_id=pioneers" target="_blank" title="Take code reviews from hours to minutes"><img src="https://fastapi.tiangolo.com/img/sponsors/codacy.png"></a>
127
+ <a href="https://www.stainlessapi.com/?utm_source=fastapi&utm_medium=referral" target="_blank" title="Stainless | Generate best-in-class SDKs"><img src="https://fastapi.tiangolo.com/img/sponsors/stainless.png"></a>
124
128
 
125
129
  <!-- /sponsors -->
126
130
 
@@ -130,7 +134,7 @@ The key features are:
130
134
 
131
135
  "_[...] I'm using **FastAPI** a ton these days. [...] I'm actually planning to use it for all of my team's **ML services at Microsoft**. Some of them are getting integrated into the core **Windows** product and some **Office** products._"
132
136
 
133
- <div style="text-align: right; margin-right: 10%;">Kabir Khan - <strong>Microsoft</strong> <a href="https://github.com/tiangolo/fastapi/pull/26" target="_blank"><small>(ref)</small></a></div>
137
+ <div style="text-align: right; margin-right: 10%;">Kabir Khan - <strong>Microsoft</strong> <a href="https://github.com/fastapi/fastapi/pull/26" target="_blank"><small>(ref)</small></a></div>
134
138
 
135
139
  ---
136
140
 
@@ -192,24 +196,14 @@ FastAPI stands on the shoulders of giants:
192
196
  <div class="termy">
193
197
 
194
198
  ```console
195
- $ pip install fastapi
199
+ $ pip install "fastapi[standard]"
196
200
 
197
201
  ---> 100%
198
202
  ```
199
203
 
200
204
  </div>
201
205
 
202
- You will also need an ASGI server, for production such as <a href="https://www.uvicorn.org" class="external-link" target="_blank">Uvicorn</a> or <a href="https://github.com/pgjones/hypercorn" class="external-link" target="_blank">Hypercorn</a>.
203
-
204
- <div class="termy">
205
-
206
- ```console
207
- $ pip install "uvicorn[standard]"
208
-
209
- ---> 100%
210
- ```
211
-
212
- </div>
206
+ **Note**: Make sure you put `"fastapi[standard]"` in quotes to ensure it works in all terminals.
213
207
 
214
208
  ## Example
215
209
 
@@ -271,11 +265,24 @@ Run the server with:
271
265
  <div class="termy">
272
266
 
273
267
  ```console
274
- $ uvicorn main:app --reload
275
-
268
+ $ fastapi dev main.py
269
+
270
+ ╭────────── FastAPI CLI - Development mode ───────────╮
271
+ │ │
272
+ │ Serving at: http://127.0.0.1:8000 │
273
+ │ │
274
+ │ API docs: http://127.0.0.1:8000/docs │
275
+ │ │
276
+ │ Running in development mode, for production use: │
277
+ │ │
278
+ │ fastapi run │
279
+ │ │
280
+ ╰─────────────────────────────────────────────────────╯
281
+
282
+ INFO: Will watch for changes in these directories: ['/home/user/code/awesomeapp']
276
283
  INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
277
- INFO: Started reloader process [28720]
278
- INFO: Started server process [28722]
284
+ INFO: Started reloader process [2248755] using WatchFiles
285
+ INFO: Started server process [2248757]
279
286
  INFO: Waiting for application startup.
280
287
  INFO: Application startup complete.
281
288
  ```
@@ -283,13 +290,13 @@ INFO: Application startup complete.
283
290
  </div>
284
291
 
285
292
  <details markdown="1">
286
- <summary>About the command <code>uvicorn main:app --reload</code>...</summary>
293
+ <summary>About the command <code>fastapi dev main.py</code>...</summary>
294
+
295
+ The command `fastapi dev` reads your `main.py` file, detects the **FastAPI** app in it, and starts a server using <a href="https://www.uvicorn.org" class="external-link" target="_blank">Uvicorn</a>.
287
296
 
288
- The command `uvicorn main:app` refers to:
297
+ By default, `fastapi dev` will start with auto-reload enabled for local development.
289
298
 
290
- * `main`: the file `main.py` (the Python "module").
291
- * `app`: the object created inside of `main.py` with the line `app = FastAPI()`.
292
- * `--reload`: make the server restart after code changes. Only do this for development.
299
+ You can read more about it in the <a href="https://fastapi.tiangolo.com/fastapi-cli/" target="_blank">FastAPI CLI docs</a>.
293
300
 
294
301
  </details>
295
302
 
@@ -362,7 +369,7 @@ def update_item(item_id: int, item: Item):
362
369
  return {"item_name": item.name, "item_id": item_id}
363
370
  ```
364
371
 
365
- The server should reload automatically (because you added `--reload` to the `uvicorn` command above).
372
+ The `fastapi dev` server should reload automatically.
366
373
 
367
374
  ### Interactive API docs upgrade
368
375
 
@@ -506,30 +513,47 @@ Independent TechEmpower benchmarks show **FastAPI** applications running under U
506
513
 
507
514
  To understand more about it, see the section <a href="https://fastapi.tiangolo.com/benchmarks/" class="internal-link" target="_blank">Benchmarks</a>.
508
515
 
509
- ## Optional Dependencies
516
+ ## Dependencies
517
+
518
+ FastAPI depends on Pydantic and Starlette.
519
+
520
+ ### `standard` Dependencies
521
+
522
+ When you install FastAPI with `pip install "fastapi[standard]"` it comes the `standard` group of optional dependencies:
510
523
 
511
524
  Used by Pydantic:
512
525
 
513
526
  * <a href="https://github.com/JoshData/python-email-validator" target="_blank"><code>email_validator</code></a> - for email validation.
514
- * <a href="https://docs.pydantic.dev/latest/usage/pydantic_settings/" target="_blank"><code>pydantic-settings</code></a> - for settings management.
515
- * <a href="https://docs.pydantic.dev/latest/usage/types/extra_types/extra_types/" target="_blank"><code>pydantic-extra-types</code></a> - for extra types to be used with Pydantic.
516
527
 
517
528
  Used by Starlette:
518
529
 
519
530
  * <a href="https://www.python-httpx.org" target="_blank"><code>httpx</code></a> - Required if you want to use the `TestClient`.
520
531
  * <a href="https://jinja.palletsprojects.com" target="_blank"><code>jinja2</code></a> - Required if you want to use the default template configuration.
521
532
  * <a href="https://github.com/Kludex/python-multipart" target="_blank"><code>python-multipart</code></a> - Required if you want to support form <abbr title="converting the string that comes from an HTTP request into Python data">"parsing"</abbr>, with `request.form()`.
522
- * <a href="https://pythonhosted.org/itsdangerous/" target="_blank"><code>itsdangerous</code></a> - Required for `SessionMiddleware` support.
523
- * <a href="https://pyyaml.org/wiki/PyYAMLDocumentation" target="_blank"><code>pyyaml</code></a> - Required for Starlette's `SchemaGenerator` support (you probably don't need it with FastAPI).
524
533
 
525
534
  Used by FastAPI / Starlette:
526
535
 
527
- * <a href="https://www.uvicorn.org" target="_blank"><code>uvicorn</code></a> - for the server that loads and serves your application.
536
+ * <a href="https://www.uvicorn.org" target="_blank"><code>uvicorn</code></a> - for the server that loads and serves your application. This includes `uvicorn[standard]`, which includes some dependencies (e.g. `uvloop`) needed for high performance serving.
537
+ * `fastapi-cli` - to provide the `fastapi` command.
538
+
539
+ ### Without `standard` Dependencies
540
+
541
+ If you don't want to include the `standard` optional dependencies, you can install with `pip install fastapi` instead of `pip install "fastapi[standard]"`.
542
+
543
+ ### Additional Optional Dependencies
544
+
545
+ There are some additional dependencies you might want to install.
546
+
547
+ Additional optional Pydantic dependencies:
548
+
549
+ * <a href="https://docs.pydantic.dev/latest/usage/pydantic_settings/" target="_blank"><code>pydantic-settings</code></a> - for settings management.
550
+ * <a href="https://docs.pydantic.dev/latest/usage/types/extra_types/extra_types/" target="_blank"><code>pydantic-extra-types</code></a> - for extra types to be used with Pydantic.
551
+
552
+ Additional optional FastAPI dependencies:
553
+
528
554
  * <a href="https://github.com/ijl/orjson" target="_blank"><code>orjson</code></a> - Required if you want to use `ORJSONResponse`.
529
555
  * <a href="https://github.com/esnme/ultrajson" target="_blank"><code>ujson</code></a> - Required if you want to use `UJSONResponse`.
530
556
 
531
- You can install all of these with `pip install "fastapi[all]"`.
532
-
533
557
  ## License
534
558
 
535
559
  This project is licensed under the terms of the MIT license.
@@ -1,10 +1,13 @@
1
- fastapi-0.111.0.dev1.dist-info/METADATA,sha256=_P39IvdXGFLIVe0GOSuLj_PmY_xFpQiZiGZNhHNy6oc,25204
2
- fastapi-0.111.0.dev1.dist-info/WHEEL,sha256=7sv5iXvIiTVJSnAxCz2tGBm9DHsb2vPSzeYeT7pvGUY,90
3
- fastapi-0.111.0.dev1.dist-info/licenses/LICENSE,sha256=Tsif_IFIW5f-xYSy1KlhAy7v_oNEU4lP2cEnSQbMdE4,1086
4
- fastapi/__init__.py,sha256=GIILQ0jJ437kfLy4cgRExiqJLuNCskBPjhXSyK_vALI,1086
1
+ fastapi-0.112.0.dist-info/METADATA,sha256=gImLaC7Phv1KRniQYy4Yyjjm8QQSwbJ7wUJXxbBHYzE,27225
2
+ fastapi-0.112.0.dist-info/WHEEL,sha256=rSwsxJWe3vzyR5HCwjWXQruDgschpei4h_giTm0dJVE,90
3
+ fastapi-0.112.0.dist-info/entry_points.txt,sha256=Nn2-rs4A5_lQZko2b9QqCKQx9Irx0agGbxq3QLgjBxQ,46
4
+ fastapi-0.112.0.dist-info/licenses/LICENSE,sha256=Tsif_IFIW5f-xYSy1KlhAy7v_oNEU4lP2cEnSQbMdE4,1086
5
+ fastapi/__init__.py,sha256=W2vbwjgsS57nRtMKFmhXnj6X0xMXGmHgkgfvdwtPxyo,1081
6
+ fastapi/__main__.py,sha256=bKePXLdO4SsVSM6r9SVoLickJDcR2c0cTOxZRKq26YQ,37
5
7
  fastapi/_compat.py,sha256=OjE3FUZ0IPXqIJWKhoWKDNCHv4so-FQ-rfN8ngQZeFE,23134
6
- fastapi/applications.py,sha256=owRSmdslsJhJCDxxatkfMdewlaiE-9DPbwQ7alyexgU,176342
8
+ fastapi/applications.py,sha256=h0hVWT7fXS05N3ZAC72mtf1pu5uJmTdJVEw62uUMf7k,176342
7
9
  fastapi/background.py,sha256=rouLirxUANrcYC824MSMypXL_Qb2HYg2YZqaiEqbEKI,1768
10
+ fastapi/cli.py,sha256=OYhZb0NR_deuT5ofyPF2NoNBzZDNOP8Salef2nk-HqA,418
8
11
  fastapi/concurrency.py,sha256=AYLnS4judDUmXsNRICtoKSP0prfYDcS8ehBtYW9JhQQ,1403
9
12
  fastapi/datastructures.py,sha256=b2PEz77XGq-u3Ur1Inwk0AGjOsQZO49yF9C7IPJ15cY,5766
10
13
  fastapi/dependencies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -22,7 +25,7 @@ fastapi/middleware/trustedhost.py,sha256=eE5XGRxGa7c5zPnMJDGp3BxaL25k5iVQlhnv-Pk
22
25
  fastapi/middleware/wsgi.py,sha256=Z3Ue-7wni4lUZMvH3G9ek__acgYdJstbnpZX_HQAboY,79
23
26
  fastapi/openapi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
27
  fastapi/openapi/constants.py,sha256=adGzmis1L1HJRTE3kJ5fmHS_Noq6tIY6pWv_SFzoFDU,153
25
- fastapi/openapi/docs.py,sha256=INQd4dFFyOwckrtlrkMbWzsyI1a4wvz8c7S_u0vYgOo,10356
28
+ fastapi/openapi/docs.py,sha256=XcQq-ZbQdC5sI0gIGu5MoHK1q-OFaqws7-ORTo6sjY4,10348
26
29
  fastapi/openapi/models.py,sha256=PqkxQiqcEgjKuhfUIWPZPQcyTcubtUCB3vcObLsB7VE,15397
27
30
  fastapi/openapi/utils.py,sha256=asSbOKDuagDfpByNQvPy7OM0sqOBdUmqh64BH-n-5f0,22286
28
31
  fastapi/param_functions.py,sha256=LcVyxFoK-W1gYGaH7H1dGvth1alwwxXouReg4zKSk88,64005
@@ -44,4 +47,4 @@ fastapi/testclient.py,sha256=nBvaAmX66YldReJNZXPOk1sfuo2Q6hs8bOvIaCep6LQ,66
44
47
  fastapi/types.py,sha256=nFb36sK3DSoqoyo7Miwy3meKK5UdFBgkAgLSzQlUVyI,383
45
48
  fastapi/utils.py,sha256=lHKngr-TmOx9QzSyA6PXYSvEgxPYUIk5t3u-kZtskEM,8035
46
49
  fastapi/websockets.py,sha256=419uncYObEKZG0YcrXscfQQYLSWoE10jqxVMetGdR98,222
47
- fastapi-0.111.0.dev1.dist-info/RECORD,,
50
+ fastapi-0.112.0.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: pdm-backend (2.2.1)
2
+ Generator: pdm-backend (2.3.3)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ fastapi = fastapi.cli:main
3
+