Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/astrojuanlu/taller-notebook-produccion
Taller: De notebook a modelo en producción
https://github.com/astrojuanlu/taller-notebook-produccion
Last synced: about 1 month ago
JSON representation
Taller: De notebook a modelo en producción
- Host: GitHub
- URL: https://github.com/astrojuanlu/taller-notebook-produccion
- Owner: astrojuanlu
- Created: 2022-07-28T15:58:38.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-30T08:55:06.000Z (over 2 years ago)
- Last Synced: 2024-10-14T19:59:25.636Z (2 months ago)
- Language: Jupyter Notebook
- Size: 355 KB
- Stars: 3
- Watchers: 3
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Taller: De notebook a modelo en producción
## Resumen
1. Crear una biblioteca Python con el código reutilizable correspondiente al proyecto
y probar que funciona desde un intérprete de Python
2. Crear una aplicación web usando FastAPI que haga uso de ese código
y probar que funciona desde Gitpod
3. Desplegar la aplicación web en Railway## Referencias
- https://github.com/astrojuanlu/ie-mbd-advanced-python/
## Enlaces
- https://fastapi.tiangolo.com/
- https://www.gitpod.io/
- https://voila.readthedocs.io/
- https://shiny.rstudio.com/py/
- https://railway.app/?referralCode=VO2J82 (afiliado)## Instrucciones
```
python -m venv .venv
source .venv/bin/activate
pip install -U pip pip-tools
pip-compile
pip install -r requirements.txt
pip install flit
mkdir library && cd library
flit init
pip install black
uvicorn app:app --reload
```