https://github.com/bisratyalew/flask-rest-api
This program shows how to set up a flaskrestapi with postgre db, blueprint, sqlalchemy, marshmallow, wsgi, unittests
https://github.com/bisratyalew/flask-rest-api
api blueprint flask flask-api flask-rest-api marshmallow postgresql python python-api rest-api sqlalchemy unittest wsgi
Last synced: 23 days ago
JSON representation
This program shows how to set up a flaskrestapi with postgre db, blueprint, sqlalchemy, marshmallow, wsgi, unittests
- Host: GitHub
- URL: https://github.com/bisratyalew/flask-rest-api
- Owner: BisratYalew
- Created: 2018-04-26T07:48:21.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-05-01T20:17:49.000Z (about 2 years ago)
- Last Synced: 2025-04-30T07:08:28.358Z (23 days ago)
- Topics: api, blueprint, flask, flask-api, flask-rest-api, marshmallow, postgresql, python, python-api, rest-api, sqlalchemy, unittest, wsgi
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 30
- Watchers: 6
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flask Rest API
This program shows how to set up a flaskrestapi with postgre db, blueprint, sqlalchemy, marshmallow, wsgi, unittests# Install guide
### Clone the repo
```$ git clone https://github.com/bisratyalew/flask-rest-api.git```
#####
```$ cd flask-rest-api```### Create the virtualenv
```$ mkvirtualenv flask-rest-api```
### Install dependencies
```$ pip install -r requirements.txt```
### Running on development machine
```
python manage.py runserver
```### Features
* Rest Api Flask App
* Serialize object into response
* Integration with Flask-IO to parse parameters from request
* Configuration per environment
* Integration with SQL Alchemy
* Uses Postgres DB
* Unit tests per module