Skip to content

SydNS/Flask_Rest-Api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

REST API With Flask & SQL Alchemy

Records 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 /home
  • GET /record/:id
  • POST /saverecord
  • PUT /record/:id
  • DELETE /record/:id

About

Some Crud API with Flask

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages