https://github.com/codewithrajranjan/flask-crud-rest-starter-kit
This is a Flask Crud Operation based on REST Principle
https://github.com/codewithrajranjan/flask-crud-rest-starter-kit
Last synced: 4 months ago
JSON representation
This is a Flask Crud Operation based on REST Principle
- Host: GitHub
- URL: https://github.com/codewithrajranjan/flask-crud-rest-starter-kit
- Owner: codewithrajranjan
- Created: 2018-09-15T15:22:23.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-15T16:30:33.000Z (over 6 years ago)
- Last Synced: 2024-08-13T07:08:51.227Z (8 months ago)
- Language: Python
- Size: 1000 Bytes
- Stars: 14
- Watchers: 2
- Forks: 17
- Open Issues: 1
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
- jimsghstars - codewithrajranjan/flask-crud-rest-starter-kit - This is a Flask Crud Operation based on REST Principle (Python)
README
## Git clone the application
## Create a virtual environment inside the application
```python
virtualenv -p /usr/bin/python3.4 venv
source venv/bin/activate
```
## Install Python modules
```python
pip3.4 install -r requirements.txt
```## Run the application using
```python
python app.py
```
## You will get two REST API
```python
http://localhost:5000/api/v1.0/task
http://localhost:5000/api/v1.0/task/id/
```