diff --git a/README.md b/README.md index 1c4b52341..6c7bb3a09 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ --- -FastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3.6+. +FastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3.6+ based on standard Python type hints. The key features are: @@ -166,7 +166,7 @@ You will see the alternative automatic documentation (provided by Conversion of input data: coming from the network, to Python data and types. Reading from: +* Conversion of input data: coming from the network to Python data and types. Reading from: * JSON. * Path parameters. * Query parameters. @@ -292,7 +292,7 @@ Coming back to the previous code example, **FastAPI** will: * All this would also work for deeply nested JSON objects. * Convert from and to JSON automatically. * Document everything with OpenAPI, that can be used by: - * Interactive documentation sytems. + * Interactive documentation systems. * Automatic client code generation systems, for many languages. * Provide 2 interactive documentation web interfaces directly. @@ -329,7 +329,7 @@ For a more complete example including more features, see the Dependency Injection** system. * Security and authentication, including support for **OAuth2** with **JWT tokens** and **HTTP Basic** auth. * More advanced (but equally easy) techniques for declaring **deeply nested JSON models** (thanks to Pydantic). diff --git a/docs/alternatives.md b/docs/alternatives.md index 2531afd68..8bb52d4e2 100644 --- a/docs/alternatives.md +++ b/docs/alternatives.md @@ -6,7 +6,7 @@ What inspired **FastAPI**, how it compares to other alternatives and what it lea There have been many tools created before that have helped inspire its creation. -I have been avoiding the creation of a new framework for several years. First I tried to solve all the features covered by **FastAPI** using many different frameworks, plug-ins and tools. +I have been avoiding the creation of a new framework for several years. First I tried to solve all the features covered by **FastAPI** using many different frameworks, plug-ins, and tools. But at some point, there was no other option than creating something that provided all these features, taking the best ideas from previous tools, and combining them in the best way possible, using language features that weren't even available before (Python 3.6+ type hints). diff --git a/docs/index.md b/docs/index.md index 1c4b52341..6c7bb3a09 100644 --- a/docs/index.md +++ b/docs/index.md @@ -24,7 +24,7 @@ --- -FastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3.6+. +FastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3.6+ based on standard Python type hints. The key features are: @@ -166,7 +166,7 @@ You will see the alternative automatic documentation (provided by Conversion of input data: coming from the network, to Python data and types. Reading from: +* Conversion of input data: coming from the network to Python data and types. Reading from: * JSON. * Path parameters. * Query parameters. @@ -292,7 +292,7 @@ Coming back to the previous code example, **FastAPI** will: * All this would also work for deeply nested JSON objects. * Convert from and to JSON automatically. * Document everything with OpenAPI, that can be used by: - * Interactive documentation sytems. + * Interactive documentation systems. * Automatic client code generation systems, for many languages. * Provide 2 interactive documentation web interfaces directly. @@ -329,7 +329,7 @@ For a more complete example including more features, see the Dependency Injection** system. * Security and authentication, including support for **OAuth2** with **JWT tokens** and **HTTP Basic** auth. * More advanced (but equally easy) techniques for declaring **deeply nested JSON models** (thanks to Pydantic).