It's a crud operation api
python 3.6.6
Django 3.1.2
Djangorestframework 3.12.1
sqlite3
Django
pip install Django==3.1.2
Djangorestframework
pip install djangorestframework
To run The project make sure you installed all the requirement modules.
It's a CRUD operation REST Api Built in Django. You can perform Insert,Update,Delete operation on Employee and Inventory database using This REST API.
INSTALLED_APPS = [
...
'rest_framework',
'RESTApi'
...
]
Use This command for Run the project
python manage.py runserver