FastAPI Framework: Difference between revisions

From GM-RKB
Jump to navigation Jump to search
(Created page with " A FastAPI Framework is a Web framework that ... * <B>See:</B> OpenAPI Specification, GitHub, Python (Programming Language), Web Framework, MIT License, Representational State Transfer, API, Data Validation, Serialization. ---- ---- ==References== === 2024 === * (Wikipedia, 2024) ⇒ https://en.wikipedia.org/wiki/FastAPI Retrieved:2024-4-23. ** '''FastAPI''' is a modern web framework first released in 2018 for building...")
 
(ContinuousReplacement)
Tag: continuous replacement
Line 4: Line 4:
----
----
----
----
==References==
 
== References ==


=== 2024 ===
=== 2024 ===
* (Wikipedia, 2024) &rArr; https://en.wikipedia.org/wiki/FastAPI Retrieved:2024-4-23.
* (Wikipedia, 2024) https://en.wikipedia.org/wiki/FastAPI Retrieved:2024-4-23.
** '''FastAPI''' is a modern [[web framework]] first released in 2018 for building [[Representational state transfer|RESTful]] [[API]]s in [[Python (programming language)|Python]].  It is used for building APIs with Python 3.8+ based on standard Python-type hints. FastAPI is based on Pydantic and uses type hints to [[Data validation|validate]], [[Serialization|serialize]] and deserialize data. It also automatically generates [[OpenAPI Specification|OpenAPI]] documentation for APIs built with it.  
** '''FastAPI''' is a modern [[web framework]] first released in 2018 for building [[Representational state transfer|RESTful]] [[API]]s in [[Python (programming language)|Python]].  It is used for building APIs with Python 3.8+ based on standard Python-type hints. FastAPI is based on Pydantic and uses type hints to [[Data validation|validate]], [[Serialization|serialize]] and deserialize data. It also automatically generates [[OpenAPI Specification|OpenAPI]] documentation for APIs built with it.  



Revision as of 22:48, 23 April 2024

A FastAPI Framework is a Web framework that ...



References

2024