Skip to content

bradtraversy/flask_sqlalchemy_rest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

REST API With Flask & SQL Alchemy

Products API using Python Flask, SQL Alchemy and Marshmallow

Quick Start Using Pipenv

# 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

Endpoints

  • GET /product
  • GET /product/:id
  • POST /product
  • PUT /product/:id
  • DELETE /product/:id

About

Products REST API using Flask, SQL Alchemy & Marshmallow

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages