Records API using Python Flask, SQL Alchemy and Marshmallow
# Activate venv
$ pipenv shell
# Install dependencies
$ pipenv install
# Create DB
$ python
>> from app import db
>> db.create_all()
>> exit()
# Run Server (http://localhst:5000)
python app.py
- GET /home
- GET /record/:id
- POST /saverecord
- PUT /record/:id
- DELETE /record/:id