Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alanhdz/api-flask
API creada en el framework flask
https://github.com/alanhdz/api-flask
flask python python-3-6 python3 sql sqlalchemy sqlalchemy-orm sqlalchemy-python
Last synced: about 20 hours ago
JSON representation
API creada en el framework flask
- Host: GitHub
- URL: https://github.com/alanhdz/api-flask
- Owner: AlanHdz
- Created: 2019-08-01T04:38:24.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-15T22:07:39.000Z (almost 2 years ago)
- Last Synced: 2024-12-22T14:46:41.703Z (about 20 hours ago)
- Topics: flask, python, python-3-6, python3, sql, sqlalchemy, sqlalchemy-orm, sqlalchemy-python
- Language: Python
- Size: 82 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flask RESTful API Example
API creada en el framework Flask con autenticación de usuarios y migraciones, utilizando SQLAlchemy. Algunas carateristicas, que podras encontrar es:
- Retornar status code y headers
- Crear recursos usando peticiones POST
- Pruebas unitarias de los modelos y peticiones## Guía de instalación
**Clonar repositorio**
```
$ git clone https://github.com/AlanHdz/api-flask.git
$ cd api-flask
```**Crear virtualenv**
```
> $ virtualenv env
```**Correr aplicación**
Nota: No te olvides de configurar tu base de datos en el archivo config.py
```
> $ python manage.py runserver
```## Test
```
> $ python manage.py test
```