An open API service indexing awesome lists of open source software.

https://github.com/workdone0/flask_api


https://github.com/workdone0/flask_api

Last synced: 24 days ago
JSON representation

Awesome Lists containing this project

README

          

# flask_api
* This is a CRUD api.
* To use :- clone this repo and create a virtual environment inside the directory, you can do this without creating a virtual environment but it is recommended.
* install the required packages by running this command "pip install -r /path/to/requirements.txt", you will find the requirement.txt when you will clone this repo.
* After installing the packages initialize database.
* To initialize database,follow these steps
- run python command in terminal where you have app.py file
- write the following command "from app import db"
- then write "db.create_all()"
- If everything goes write you will see an db.sqlite file

* use POSTMAN to create different kind of requests like POST,GET,PUT,UPDATE. To learn go to postman official website and find their documentation.