https://github.com/itsmaheshkariya/flask-rest-api
REST API USING FLASK SQLITE
https://github.com/itsmaheshkariya/flask-rest-api
flask flask-application flask-marshmallow flask-sqlalchemy maheshkariya postman rest-api sqlite
Last synced: about 2 months ago
JSON representation
REST API USING FLASK SQLITE
- Host: GitHub
- URL: https://github.com/itsmaheshkariya/flask-rest-api
- Owner: itsmaheshkariya
- Created: 2019-12-20T17:46:57.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-20T02:48:07.000Z (about 4 years ago)
- Last Synced: 2025-01-06T01:09:13.356Z (4 months ago)
- Topics: flask, flask-application, flask-marshmallow, flask-sqlalchemy, maheshkariya, postman, rest-api, sqlite
- Language: Python
- Homepage:
- Size: 7.1 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python FLASK REST API
Simple Python REST API For CRUD operations through SQLite.
### Git Clone
``` git clone https://github.com/maheshkareeya/flask-rest-api.git```
### Change Directory
```cd flask-rest-api```
### Note : Install Python and Postman for your system
```pip install virtualenv``````source bin/activate```
```pip install flask flask-sqlalchemy flask-marshmallow marshmallow-sqlalchemy```
### Export
```export FLASK_APP=app.py``````export FLASK_DEBUG=True```
``` flask run ```
### Create DB
```python``````from app import db```
``` db.create_all() ```
``` exit() ```
### Start Server
```flask run```### Demo


