]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:recycle: Update default API title from "Fast API" to "FastAPI" for consistency ...
authorSebastián Ramírez <tiangolo@gmail.com>
Sat, 18 Jan 2020 18:07:42 +0000 (19:07 +0100)
committerGitHub <noreply@github.com>
Sat, 18 Jan 2020 18:07:42 +0000 (19:07 +0100)
110 files changed:
docs/tutorial/first-steps.md
fastapi/applications.py
tests/test_additional_properties.py
tests/test_additional_response_extra.py
tests/test_additional_responses_bad.py
tests/test_additional_responses_custom_validationerror.py
tests/test_additional_responses_default_validationerror.py
tests/test_additional_responses_response_class.py
tests/test_additional_responses_router.py
tests/test_application.py
tests/test_custom_route_class.py
tests/test_extra_routes.py
tests/test_filter_pydantic_sub_model.py
tests/test_modules_same_name_body/test_main.py
tests/test_multi_body_errors.py
tests/test_multi_query_errors.py
tests/test_put_no_body.py
tests/test_repeated_dependency_schema.py
tests/test_response_class_no_mediatype.py
tests/test_response_code_no_body.py
tests/test_security_api_key_cookie.py
tests/test_security_api_key_cookie_optional.py
tests/test_security_api_key_header.py
tests/test_security_api_key_header_optional.py
tests/test_security_api_key_query.py
tests/test_security_api_key_query_optional.py
tests/test_security_http_base.py
tests/test_security_http_base_optional.py
tests/test_security_http_basic_optional.py
tests/test_security_http_basic_realm.py
tests/test_security_http_bearer.py
tests/test_security_http_bearer_optional.py
tests/test_security_http_digest.py
tests/test_security_http_digest_optional.py
tests/test_security_oauth2.py
tests/test_security_oauth2_authorization_code_bearer.py
tests/test_security_oauth2_optional.py
tests/test_security_oauth2_password_bearer_optional.py
tests/test_security_openid_connect.py
tests/test_security_openid_connect_optional.py
tests/test_starlette_exception.py
tests/test_sub_callbacks.py
tests/test_tutorial/test_additional_responses/test_tutorial001.py
tests/test_tutorial/test_additional_responses/test_tutorial002.py
tests/test_tutorial/test_additional_responses/test_tutorial003.py
tests/test_tutorial/test_additional_responses/test_tutorial004.py
tests/test_tutorial/test_async_sql_databases/test_tutorial001.py
tests/test_tutorial/test_bigger_applications/test_main.py
tests/test_tutorial/test_body/test_tutorial001.py
tests/test_tutorial/test_body_fields/test_tutorial001.py
tests/test_tutorial/test_body_multiple_params/test_tutorial001.py
tests/test_tutorial/test_body_multiple_params/test_tutorial003.py
tests/test_tutorial/test_body_nested_models/test_tutorial009.py
tests/test_tutorial/test_body_updates/test_tutorial001.py
tests/test_tutorial/test_cookie_params/test_tutorial001.py
tests/test_tutorial/test_custom_response/test_tutorial001.py
tests/test_tutorial/test_custom_response/test_tutorial004.py
tests/test_tutorial/test_dependencies/test_tutorial001.py
tests/test_tutorial/test_dependencies/test_tutorial004.py
tests/test_tutorial/test_dependencies/test_tutorial006.py
tests/test_tutorial/test_events/test_tutorial001.py
tests/test_tutorial/test_events/test_tutorial002.py
tests/test_tutorial/test_extra_data_types/test_tutorial001.py
tests/test_tutorial/test_extra_models/test_tutorial003.py
tests/test_tutorial/test_extra_models/test_tutorial004.py
tests/test_tutorial/test_extra_models/test_tutorial005.py
tests/test_tutorial/test_first_steps/test_tutorial001.py
tests/test_tutorial/test_handling_errors/test_tutorial001.py
tests/test_tutorial/test_handling_errors/test_tutorial002.py
tests/test_tutorial/test_handling_errors/test_tutorial003.py
tests/test_tutorial/test_handling_errors/test_tutorial004.py
tests/test_tutorial/test_handling_errors/test_tutorial005.py
tests/test_tutorial/test_handling_errors/test_tutorial006.py
tests/test_tutorial/test_header_params/test_tutorial001.py
tests/test_tutorial/test_openapi_callbacks/test_tutorial001.py
tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial001.py
tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial002.py
tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial003.py
tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial004.py
tests/test_tutorial/test_path_operation_configurations/test_tutorial005.py
tests/test_tutorial/test_path_operation_configurations/test_tutorial006.py
tests/test_tutorial/test_path_params/test_tutorial004.py
tests/test_tutorial/test_path_params/test_tutorial005.py
tests/test_tutorial/test_query_params/test_tutorial005.py
tests/test_tutorial/test_query_params/test_tutorial006.py
tests/test_tutorial/test_query_params/test_tutorial007.py
tests/test_tutorial/test_query_params_str_validations/test_tutorial001.py
tests/test_tutorial/test_query_params_str_validations/test_tutorial011.py
tests/test_tutorial/test_query_params_str_validations/test_tutorial012.py
tests/test_tutorial/test_query_params_str_validations/test_tutorial013.py
tests/test_tutorial/test_request_files/test_tutorial001.py
tests/test_tutorial/test_request_files/test_tutorial002.py
tests/test_tutorial/test_request_forms/test_tutorial001.py
tests/test_tutorial/test_request_forms_and_files/test_tutorial001.py
tests/test_tutorial/test_response_model/test_tutorial003.py
tests/test_tutorial/test_response_model/test_tutorial004.py
tests/test_tutorial/test_response_model/test_tutorial005.py
tests/test_tutorial/test_response_model/test_tutorial006.py
tests/test_tutorial/test_security/test_tutorial001.py
tests/test_tutorial/test_security/test_tutorial003.py
tests/test_tutorial/test_security/test_tutorial005.py
tests/test_tutorial/test_security/test_tutorial006.py
tests/test_tutorial/test_sql_databases/test_sql_databases.py
tests/test_tutorial/test_sql_databases/test_sql_databases_middleware.py
tests/test_tutorial/test_sql_databases_peewee/test_sql_databases_peewee.py
tests/test_tutorial/test_sub_applications/test_tutorial001.py
tests/test_tutorial/test_testing/test_main.py
tests/test_tutorial/test_testing/test_tutorial001.py
tests/test_union_body.py
tests/test_union_inherited_body.py

index af6661bedb81499fd3e9cd64719628dbdae4af05..dd916f3304a800b137b24823cce6ebbb4be5d317 100644 (file)
@@ -92,7 +92,7 @@ It will show a JSON starting with something like:
 {
     "openapi": "3.0.2",
     "info": {
-        "title": "Fast API",
+        "title": "FastAPI",
         "version": "0.1.0"
     },
     "paths": {
index 5a533866b4075bd9c1b5781a29a2b52ffa586ed6..ff2eb52c8606543ad2e5e9e2590f4093751e3700 100644 (file)
@@ -32,7 +32,7 @@ class FastAPI(Starlette):
         debug: bool = False,
         routes: List[BaseRoute] = None,
         template_directory: str = None,
-        title: str = "Fast API",
+        title: str = "FastAPI",
         description: str = "",
         version: str = "0.1.0",
         openapi_url: Optional[str] = "/openapi.json",
index 54cc74fa6a229f0f3c6779b1b5383eefea94cd48..71165e0465fd9a5cba6a5c4c1f0b8cadea8db5b4 100644 (file)
@@ -21,7 +21,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/foo": {
             "post": {
index e2381cd7dce1d4c860b49abac4de2814c2c9d492..09b4446ee7e6019698d075fecb80e70384d4bb9a 100644 (file)
@@ -20,7 +20,7 @@ app.include_router(router)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/": {
             "get": {
index fda4755763b3e71c90224ab765973519ed6aedcb..fb9208ba8069698c94964f21186795ac04649900 100644 (file)
@@ -12,7 +12,7 @@ async def a():
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/a": {
             "get": {
index 37982eef45e64aa9c6e45310507bfbca98850290..65fa62875eaf87cbdf9227b19d7e583bf294eff5 100644 (file)
@@ -32,7 +32,7 @@ async def a(id):
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/a/{id}": {
             "get": {
index ac22bf573077cd036645f5c1cc9f0510ece60ce0..3453575845292c13e61739f20f4ca6a9219c1023 100644 (file)
@@ -11,7 +11,7 @@ async def a(id):
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/a/{id}": {
             "get": {
index 81c28e348e7a8ca7a8deddc3a8a2d71450dfb82c..a26724afa8ca1917aefcd6ee1dbc5237753ce5aa 100644 (file)
@@ -37,7 +37,7 @@ async def b():
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/a": {
             "get": {
index 028026e67fea753be7b82ef8b27c52097c12d718..c54d73a3ec754bfc4500b0a470b94b0a46bda6c9 100644 (file)
@@ -37,7 +37,7 @@ app.include_router(router)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/a": {
             "get": {
index 11f463336a0286224c52a834483d6a39e8ba5679..ba5f2e9408d776589a7999dc9f84b00cf1db4350 100644 (file)
@@ -7,7 +7,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/api_route": {
             "get": {
index 8bbf88ad30f2c0b84560425a53354bb53a7d5eff..cca32e399f55f0520f136dbe2a97aa9925a3843a 100644 (file)
@@ -47,7 +47,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/a/": {
             "get": {
index bfe79d77f99f90f2a8b619313fa30d67ec33e12e..d9e1f321d9ec25e1726ff62fb1e2efdb4ac55152 100644 (file)
@@ -52,7 +52,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/{item_id}": {
             "get": {
index 1b22853393ed1000500fff93a5eab92c66f38e34..aef6350401beb123957fed3b11a2f45fcca1e7e2 100644 (file)
@@ -33,7 +33,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/model": {
             "get": {
index bf50b75663a5dd199a61518b6a838582d55a6c67..a2dcb6e572fbd46e5e5a82104c89968a16d5fb37 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/a/compute": {
             "post": {
index 5824cda234c812a171c911fb16224f54d1c92580..d506fe7f64aeaca2b818e35295ef3de599dc4c0e 100644 (file)
@@ -23,7 +23,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/": {
             "post": {
index 1e722dc06ab14b94ba308caa01780340a54b2485..c2785479fa4cb4a9b2ef3edc746266d851a15cef 100644 (file)
@@ -16,7 +16,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/": {
             "get": {
index 1f1a1c00a7102f9992c99fc99fe231279d1f3ed9..0a7cec2a2a5f37472342d4b7f215f0c6af2e1ebf 100644 (file)
@@ -14,7 +14,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/{item_id}": {
             "put": {
index 5b8ba82c0d982199013770134c86b30ec369e5d4..042e962e9910cdedd37c4faaf5a8b9cd43dd0cbb 100644 (file)
@@ -50,7 +50,7 @@ schema = {
             },
         }
     },
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "openapi": "3.0.2",
     "paths": {
         "/": {
index d5e35f38856ce0dcb51b6e2cb8842832ca80d91d..b8969a35e0fb6ff65a37f1469a5ec94d5e4e04ae 100644 (file)
@@ -37,7 +37,7 @@ async def b():
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/a": {
             "get": {
index 19a59df36081eca1be0c87947b61bbf0a289958e..0d5051b3c89f525c4dc1358f6773f007ce6adbc1 100644 (file)
@@ -38,7 +38,7 @@ async def b():
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/a": {
             "get": {
index e5577350e8cdf0a4a7ae464b548c59dc8023ec5f..ed59526b18c80a9b39b053081416548cd2c5f916 100644 (file)
@@ -26,7 +26,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/users/me": {
             "get": {
index 95f0f2c685efb65a21373e5c591fc71a348fc6a4..a0edbcfae834e227e50ea094f120626680ed2027 100644 (file)
@@ -33,7 +33,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/users/me": {
             "get": {
index 376ae5337fcb9cd6027a22f87944e8d7bf958f10..057beb5ed0d5b77119b98fb9136e67f2d8a81904 100644 (file)
@@ -26,7 +26,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/users/me": {
             "get": {
index 07629253af3141f54921b4b875169477fc789fa2..9f264dc5f5fb47f6aedd79ab7c06dde043db950a 100644 (file)
@@ -32,7 +32,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/users/me": {
             "get": {
index 13eb7abcca8ce2d19c04bdb747c0ab6d1415ff4a..680f79a70dfa60fa834344c51dbfb0a8bb77c1cc 100644 (file)
@@ -26,7 +26,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/users/me": {
             "get": {
index 2a80c14b1678b2bad3f0700a0c575859c8b94b00..2142adf7dcfa7567dcebc32905092b7c63a2368b 100644 (file)
@@ -32,7 +32,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/users/me": {
             "get": {
index b02407ca3f126af27ba8e36f2756b93359ef2d4b..5b937b8817aac1552f692314eef62fc676a1bbe5 100644 (file)
@@ -16,7 +16,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/users/me": {
             "get": {
index 1f3cb1403ee78fbbd166d578c2523be0c5196401..d9e93e1b9cdcd91869acf575d89f83ad0d174bde 100644 (file)
@@ -22,7 +22,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/users/me": {
             "get": {
index 2a4686bb362819f96465ff2480f518c6b367fe9a..4b2f433cf399df4c8877d01db589db0ae801abc8 100644 (file)
@@ -22,7 +22,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/users/me": {
             "get": {
index 6b5b4aeeeff7860a1d4cb4978348746ec434443b..9a11ebda9deff6c7c88b4b5c6509adaed7b8f121 100644 (file)
@@ -19,7 +19,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/users/me": {
             "get": {
index 6689a5fc69973a0bf6ccce49f3bc89f1f67c3f27..e8a004cf0e949963ea00a0f6767a92ef0e597a71 100644 (file)
@@ -16,7 +16,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/users/me": {
             "get": {
index 9ddd1246f2c321df70910fe391795a2c6987f0a1..b666284696f970fcc742cabe4d5cf02e58afcf7d 100644 (file)
@@ -22,7 +22,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/users/me": {
             "get": {
index 8de7dd065789fed6501ed43858c3c8fb9776696d..5ffeac92bcc9d647c465d9cf57a4773a1019db02 100644 (file)
@@ -16,7 +16,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/users/me": {
             "get": {
index d0af7afa4edfa5b57720331bed5baac2a5702797..21ec872f6e3d1909bf8cd62c9834be5c147f0a24 100644 (file)
@@ -22,7 +22,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/users/me": {
             "get": {
index 233123337078b003d9e4af6d7a1cca18dc7e4425..692c498637afd2997194fb617b6b7ae243ea7661 100644 (file)
@@ -43,7 +43,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/login": {
             "post": {
index f39fcd0889e30c5f3a58d2dd928fbdbe8bc1af02..8cfc9ac1004ebaf7151cd9a2fc15e09fb6488ec1 100644 (file)
@@ -20,7 +20,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/": {
             "get": {
index cc2c5f0fd20e9b523865f6f35e86a7acc9371717..648adefb753757b15a89bb99ffb5f44f669abb7d 100644 (file)
@@ -47,7 +47,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/login": {
             "post": {
index bdd69d1992c239ca99c21425e412a28149d18505..4a702770be152afdf053befc4e911c538af39417 100644 (file)
@@ -20,7 +20,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/": {
             "get": {
index 5a26eb5759511e44bf7719927d98e0852da5acfb..fc9f50d40f9eeabc7eb66854c3a85adb398351fc 100644 (file)
@@ -26,7 +26,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/users/me": {
             "get": {
index 76b9c6de1d18a5fbd7fa26f6f3b2ec43a3bc734b..874aba672bb7ac779c032a8144a0a8d4e6d42f2e 100644 (file)
@@ -32,7 +32,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/users/me": {
             "get": {
index bafa3183576a8ae8b69275511b11bbaa93f5c5b3..6fb458979d6b5c6814a4b94b683e45a84bf24965 100644 (file)
@@ -29,7 +29,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/{item_id}": {
             "get": {
index 5391a665d29558bf6cd86296ecb27801e6995220..b05b532c691db18751b5c251079a6601911148ed 100644 (file)
@@ -62,7 +62,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/invoices/": {
             "post": {
index 839bb1d53e00f06f2237fb53cfb0367871ddf082..dc0cc5963b7e84f6bb7a492d7221da7a56814550 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/{item_id}": {
             "get": {
index 722ef83db6f861cb296f36ade8290a493257ae67..c3e9fe1baae13e74caa1b1d8e7b6bbfa10852bab 100644 (file)
@@ -9,7 +9,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/{item_id}": {
             "get": {
index 4f270efdc24030ab5da97b38af94a5eb5a180708..ba1ba39d3a635db921e1ec783931d9370775b1bc 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/{item_id}": {
             "get": {
index 4608799bf775e3b1fa4cd9d74ceea8acd9dcdfb9..2d24de28ed5c1ccc557f053477302cfe40c19441 100644 (file)
@@ -9,7 +9,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/{item_id}": {
             "get": {
index 91a8ba96797d4e76b4f3dbd0d4e76c8987b10101..088a96b7f8f81697eeebc2d7c3e919f72534150a 100644 (file)
@@ -4,7 +4,7 @@ from async_sql_databases.tutorial001 import app
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/notes/": {
             "get": {
index 794e48e1d5f2aefda26e6c495b302a1abb79ab68..1e5bbeff4338940d926f323ca08037597643f810 100644 (file)
@@ -7,7 +7,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/users/": {
             "get": {
index 2ae0714e6e1da41f3136b56e065fc53ffbc0808c..078e4febd43ea4ddf35271954763a5ad48839329 100644 (file)
@@ -7,7 +7,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/": {
             "post": {
index b77f752181b0eb748ebf9e6330784e04816b1257..8f2c21f281f942b4b31289e9df657fba0e2ec9f0 100644 (file)
@@ -17,7 +17,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/{item_id}": {
             "put": {
index b7c06dc708ee1e444ed92d130981939ec9bf1086..6352e5853fc37ecdbcf5d19bb59eb9b2e4afce82 100644 (file)
@@ -7,7 +7,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/{item_id}": {
             "put": {
index 9141e7f48d72e4742e91e5180c0665cd9bbf97f4..54bf193e9a613c177550e6c350d9ae14c9359a4f 100644 (file)
@@ -7,7 +7,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/{item_id}": {
             "put": {
index d51b07252998bcc31aa46019ca62e2e084c034d8..fa1dd4e9471345c4cdfb616e2709bd986f2a2fa1 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/index-weights/": {
             "post": {
index bfd62e927c3beb2273e57152d59ff4fcb6fab272..1626c280a0271743b84ad07e0c742352a1191a4f 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/{item_id}": {
             "get": {
index d6aed3ca77148384ee8a446dbbb06732584da723..1dcdb8287be22b8d06f80d1d4dd7ca801c44ed0d 100644 (file)
@@ -7,7 +7,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/": {
             "get": {
index 3cab97fdfb26f26afc3cc75e3a21379cf5c8dd6f..0a46d64b40617d253549120359f3a71105dd858a 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/": {
             "get": {
index 8558e421387ee464ab1b1c7bae06980dd9da5c14..03ee004e35077b70f49df871d0a68750d20b10db 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/": {
             "get": {
index 9c193cd309bc34b32413ec1b45a1d0eed1a7bd77..15e8f3a51e3a6990d7533e84458a13980005be0b 100644 (file)
@@ -7,7 +7,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/": {
             "get": {
index 434c0504aede690d718773f7674d6aa193da9fce..c938c2d41cec7bfc7f8f80f30a828c30fa9b9530 100644 (file)
@@ -7,7 +7,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/": {
             "get": {
index fdc878977f61ad1a80dcbf3d3f05a539b340e574..98c49dfc4cacfd24e0fa9a8378bd71f749db46bc 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/": {
             "get": {
index bf7cd532b8bbcddcf36de14118c98cac47739cac..9ac638b420e07797b4aea27a4a49311a0640af66 100644 (file)
@@ -4,7 +4,7 @@ from events.tutorial001 import app
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/{item_id}": {
             "get": {
index 49652094444d8a35d729dcb89f42f6c055c14a0d..e9daeb64e5fc8e744cc8c0662ff2a566cdf7c2ed 100644 (file)
@@ -4,7 +4,7 @@ from events.tutorial002 import app
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/": {
             "get": {
index 846d3c19119b2ca5ce54fab35396d659e7e4f099..fe3e4a0128c98f9937c8fbc108a337e5d1f6e4a8 100644 (file)
@@ -7,7 +7,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/{item_id}": {
             "put": {
index 7b4776d155e2aa52115448ddfa77f567122dc6f5..3a50f5e8f0aef8be4834f82494fb4e77d48e3c7f 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/{item_id}": {
             "get": {
index 1ee2980c0ebab25d23144dd80d6cd0446d698672..22a94e09fae65f894eca49918edd8d532e32c9ea 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/": {
             "get": {
index 935debf922a3c46f99f92ee723ade5e1ea07eb9e..3ba23888a56f73211a945b2901c6a68d24a5758e 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/keyword-weights/": {
             "get": {
index 3f89d90d477c35d34bd1b7948d4c10847be1cdd9..c045b2a48e6ffad9fd4512f1add10d27d3f9d10b 100644 (file)
@@ -7,7 +7,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/": {
             "get": {
index 3869cb485f85d7c0d56a0deaeb13f46f6c9d73cc..175668e856fb8c82a7651edfab661c251beb2361 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/{item_id}": {
             "get": {
index e0aa05a1593287f099039f9130e29fe1019eee89..d0f9774c05f643f97e8868bcd638344a3552a6e5 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items-header/{item_id}": {
             "get": {
index 0ead07d058dcb755a9c3e32bf676cc355c87db21..abf8b60b62dabeebc0f96e123e6fdbaf500be57e 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/unicorns/{name}": {
             "get": {
index 83eb3675ceb17ca857f0fbe56dc9b28b3bcd8c28..4061e48bbc99abe1e149b9ec1ca7c7a26e936308 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/{item_id}": {
             "get": {
index 25b56dd2218218e130d5363be005db1d65bfe521..511db14a2ae05a4a10cd8ace60a57023541f5c9d 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/": {
             "post": {
index fe6c40104294c28a711faa0369dc9a7e584ed8ac..74f3706842610209e8ba3254e54d4c0ec236c45b 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/{item_id}": {
             "get": {
index 811ccb35293d0b8d732ca23b46f5ddb4d4fdac61..e38171bdeee8d210ce75543c4e1c39f876741f3f 100644 (file)
@@ -8,7 +8,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/": {
             "get": {
index febbe7479db1ccb55768935f7fc3240e4d492ded..456974e7c9e799bb12796082da8f9f9ca7699103 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/invoices/": {
             "post": {
index 574e21b5a2cebc152416c372b522d4a6db947d6b..2cf97b14aa26762442d45bfb011c519bca2f7d14 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/": {
             "get": {
index 0cd25c21ba5b435d454aff6dd23fe88f7d556c11..e71d786687c77d1f7c447343c1c90e072eec87cb 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/": {
             "get": {
index 9ff0adfb97580c2d2ca30de8f3339f0cf641774a..26e3171d89bf6a6836727ba99fc335eabc07abc7 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {},
 }
 
index 66065d80265aefc1bfb5d82bb402c7766c00931f..519368dc37874554157beb8f7047963de4dfaf51 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/": {
             "post": {
index 0cdb74249b302e12ae208b0ce926be8847924611..f0799138da2822c12bf687799eb1eeb2ada95406 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/": {
             "post": {
index dbf1f8d04213fe03a03f1adbd58dcd5bfb5dfca9..478f78ac0ea7ee3dcf6ebb0600b356d3c12571ac 100644 (file)
@@ -7,7 +7,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/": {
             "get": {
index a131b81cab9ca31b4fa85f2fa3247128de0b6d6e..0ec4b17479fcad54fc3eaae45edb321f8c09a182 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/files/{file_path}": {
             "get": {
index 91cc6db64e0b10ab4dfb5ed5f71ff7d1dc23dcfe..aa2e268eeae4ae1dcb220f308a09639391c3eaa2 100644 (file)
@@ -7,7 +7,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/model/{model_name}": {
             "get": {
index e6db1b0f0d7797153bdc88e99f9d99e147577497..f54e9214d7fb8bc319a6e5eb5a921864ac6be531 100644 (file)
@@ -7,7 +7,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/{item_id}": {
             "get": {
index edcf50697e03a04af1f24524a2d523bc4ae6982a..fe1615f68fb8b2d8828ce68e121e4e53d59a4bf3 100644 (file)
@@ -7,7 +7,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/{item_id}": {
             "get": {
index f66791a509b6d3fc250b45e44db5a41de14787ba..b8cc9bc69037e6bab51cdec949ccf4bb9c5e3a5c 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/{item_id}": {
             "get": {
index 875c6efd69cc6322b6966b3c6db94b3c45f44e57..62b8304bbbcb6b0c493bfc5ec5156d06351ecdd3 100644 (file)
@@ -7,7 +7,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/": {
             "get": {
index b443a700471c0f346c4d195d99dc3f0a5e6c1dcb..9d86fa3d92fed92dfbe02882408a5c3656956ced 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/": {
             "get": {
index 1e00c5017f102e2130b5329e6b7a73b3c9220ecc..005977c4609e5fa1c98821717ff56fcaadc9e6a1 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/": {
             "get": {
index 6606e66b1191aa4ff54e3dc9ba17de161ae28fe8..d3d037a6b8edeeaf33f3b9f13f1ca873ddf877f0 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/": {
             "get": {
index b5f64af959da6cad9587f114c942b4c623a5ecda..5db608efa4dea0cd8c5a9f50608431182f1664f7 100644 (file)
@@ -8,7 +8,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/files/": {
             "post": {
index 092b9901c7d1cdfb2c2088159c1e6cbf9268c082..bb715d1706dba669be9caa083b619f0546dc904e 100644 (file)
@@ -8,7 +8,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/files/": {
             "post": {
index 46c92676703ca9271eee9d303a93cac0c7375e9d..74b4210fd9c59504c64d020f9e46479981c91d4e 100644 (file)
@@ -7,7 +7,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/login/": {
             "post": {
index a30fbf60fc9ce1997ab007348f77dfcd3db14b27..bee862bd016dfa027d8c1ea19fc7ccd317d2bd33 100644 (file)
@@ -9,7 +9,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/files/": {
             "post": {
index 9cf3158252e8624421ccc2744a8c271257fb9152..74e2a528b1e5cea1d76b1ff2a0f54fa3ee33134e 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/user/": {
             "post": {
index 3b71420b60002bfb432678de0cb82f64585f8373..deacc2c01f5d541cf3bed34667bf55290be36e5a 100644 (file)
@@ -7,7 +7,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/{item_id}": {
             "get": {
index d0efe22b94725ee80689e8c86b4d3269207e10ae..37fb1d64c1e8758450b50aa25ede055913d96538 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/{item_id}/name": {
             "get": {
index 232ce0f794b14aa2f8244fd2d8fa9c3d72acac23..c1f74ddced7ef3a7756c9a4f443a8660d64c40d4 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/{item_id}/name": {
             "get": {
index 295e600cf7e29cd9ee54a201199cf5d29f83d2bc..5e3f60b42358713f6deeaf45969e77a3aaa38e26 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/": {
             "get": {
index 82b2d959dca121e61b1046e752074a9bbbd0b890..5ab0177055af47f266c55d6f5a21be12253b59bc 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/token": {
             "post": {
index a3f8a9ffd5ed86038fe0d63556020645aaa1242a..b4d3455554016437b79104985603c7b020f1312e 100644 (file)
@@ -12,7 +12,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/token": {
             "post": {
index 9dc753202aaa8401750785907f47a4a902d6a1de..a0b5a5f05b3a0c448750b128d01039c30b7076a4 100644 (file)
@@ -9,7 +9,7 @@ client = TestClient(app)
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/users/me": {
             "get": {
index e4adc1f7319a373abed7466a8f2472a9889cd41d..6c9a4cb5e121b7cd0fda01eac6f67e4c99a57c7b 100644 (file)
@@ -5,7 +5,7 @@ from starlette.testclient import TestClient
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/users/": {
             "get": {
index c056e1800025090444484482c8ccaf8b7d0f348b..313b139e9d0c5088ea2c4cad859ad8075d1877a6 100644 (file)
@@ -5,7 +5,7 @@ from starlette.testclient import TestClient
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/users/": {
             "get": {
index 796bb91f341c869b50c28c692f6e69bab1912daa..2f1830ac098567a1d4085f0ed3402f3398aa20c3 100644 (file)
@@ -9,7 +9,7 @@ from ...utils import skip_py36
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/users/": {
             "get": {
index 3663770fe56ea85376b1441f2dcd02c891560750..a7158bb17da0dde81c0e0213f9922e1481142608 100644 (file)
@@ -6,7 +6,7 @@ client = TestClient(app)
 
 openapi_schema_main = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/app": {
             "get": {
@@ -24,7 +24,7 @@ openapi_schema_main = {
 }
 openapi_schema_sub = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/subapi/sub": {
             "get": {
index 9e234d796b245d5022a6c9c209a89918c8370683..36e8069a5263faacb13afd68626254d052818f12 100644 (file)
@@ -2,7 +2,7 @@ from app_testing.test_main import client, test_read_main
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/": {
             "get": {
index 1414cfddd58d437c008a0cbaef928bbf35266725..adc6928c63b4efcc1b70547ff87aab448ed9d31f 100644 (file)
@@ -2,7 +2,7 @@ from app_testing.tutorial001 import client, test_read_main
 
 openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/": {
             "get": {
index b7b8b38b24f2bea7b327b325598b8efed2369a45..0caaa4f47c34dd97c4f8b2f77826afbbaa145e81 100644 (file)
@@ -24,7 +24,7 @@ client = TestClient(app)
 
 item_openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/": {
             "post": {
index c1557c9d636e3860abf62e6f87d7558b2deed5ae..60ab8d0cdc5140756e0c14b692149a202312dac8 100644 (file)
@@ -33,7 +33,7 @@ client = TestClient(app)
 
 inherited_item_openapi_schema = {
     "openapi": "3.0.2",
-    "info": {"title": "Fast API", "version": "0.1.0"},
+    "info": {"title": "FastAPI", "version": "0.1.0"},
     "paths": {
         "/items/": {
             "post": {