Skip to content

Techgeek19/Flask-CRUD-Rest-APIs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flask CRUD-Rest-APIs

Setting up

This project was built with Python, Flask-SqlAlchemy, Marshmallow, and PostgreSQL

$ source env/bin/activate
$ pip install -r requirements.txt
$ python
>> from app import db
>> db.create_all()
>> exit()

#Runserver
$ python app.py

Then head to http://localhost:5000 in your browser to get started.

EndPoints

GET ==> /api/product
GET ==> /api/product/:id
POST ==> /api/product
PUT ==> /api/product/:id
DELETE ==> /api/product/:id

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages