========================================================== A Python 3 Django app that provides a REST API for a simple TODO app.
A) Add one or more new TODOs. Each TODO is composed of: 1.State: todo, in-progress, done 2.Due date. 3.TODO text.
B) Delete one or more TODOs.
C) Update one or more TODOs.
D) List all TODOs.
Major Package
Python==3.6 django>=2.2.13 django-cors-headers==2.4.0 djangorestframework==3.9.0 pipenv==2018.11.26 pipenv-to-requirements==0.6.1 python-dateutil==2.7.5 python-mimeparse==1.6.0 requests==2.21.0 virtualenv==16.1.0 virtualenv-clone==0.4.0
Database
SQLite
################# Test Case Scenarios #################
- Create a todo with API.
- List a todo with API.
- Update a todo with API.
- Delete a todo with API.
pip install -r requirements.txt
python manage.py test