Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anibulus/example-fastapi
Ejemplo de el uso del framework fast-api y toda su usabilidad incluyendo imagenes explicativas
https://github.com/anibulus/example-fastapi
backend backend-api fast-api python-3
Last synced: 1 day ago
JSON representation
Ejemplo de el uso del framework fast-api y toda su usabilidad incluyendo imagenes explicativas
- Host: GitHub
- URL: https://github.com/anibulus/example-fastapi
- Owner: Anibulus
- Created: 2022-11-15T02:08:47.000Z (about 2 years ago)
- Default Branch: request_response_body
- Last Pushed: 2023-04-06T01:26:31.000Z (over 1 year ago)
- Last Synced: 2024-11-16T14:05:27.263Z (1 day ago)
- Topics: backend, backend-api, fast-api, python-3
- Language: Python
- Homepage:
- Size: 1.35 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
`python3 -m venv venv`
`source venv/bin/activate`
`pip install requirements.txt`
`uvicorn main:app --reload`
uviorn : (reload hace que no halla que recargar la app)http:///openapi.json
- Acceder a la documentación interactiva con Swagger UI:
{localhost}/docs- Acceder a la documentación interactiva con Redoc:
{localhost}/redocFastAPI también está parado sobre los hombros de OpenAPI, el cual es un conjunto de reglas que permite definir cómo describir, crear y visualizar APIs. Es un conjunto de reglas que permiten decir que una API está bien definida.
OpenAPI necesita de un software, el cual es Swagger, que es un conjunto de softwares que permiten trabajar con APIs. FastAPI funciona sobre un programa de Swagger el cual es Swagger UI, que permite mostrar la API documentada.
### Tipos de dato exoticos
https://pydantic-docs.helpmanual.io/usage/types/#pydantic-types