https://github.com/24apurv/to-do-restful
A RestFul API for To-Do-List created using Flask and Flask-RestPlus
https://github.com/24apurv/to-do-restful
flask flask-restful flask-restplus flask-sqlalchemy restful-api
Last synced: 28 days ago
JSON representation
A RestFul API for To-Do-List created using Flask and Flask-RestPlus
- Host: GitHub
- URL: https://github.com/24apurv/to-do-restful
- Owner: 24apurv
- License: other
- Created: 2020-08-04T07:16:43.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-05T11:38:41.000Z (almost 6 years ago)
- Last Synced: 2025-01-07T09:43:27.398Z (over 1 year ago)
- Topics: flask, flask-restful, flask-restplus, flask-sqlalchemy, restful-api
- Language: Python
- Homepage:
- Size: 3.16 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# RestFul API for To-Do-List
A RestFul API for To-Do-List created using Flask and Flask-RestPlus. It features a Swagger UI for debugging.
# Installation
1) Install python3
2) Install pip for python3
3) Install virtualenv
`pip install virtualenv` or `pip3 install virtualenv`
4) Create virtual environment and cd into it
`virtualenv to-do-restful --python python3 && cd to-do-restful`
5) Clone git repository into folder `git clone `
6) Install requirements `pip install -r requirements.txt` or `pip3 install -r requirements.txt`
7) Run using `python app.py`
9) Open `http://localhost:5000/`