Django is my favourite web development framework. I wanted to learn how to build APIs using the Django Rest Framework.
There are many resources available for learning and using Django REST framework. Personally, I think that the official documentation is a great starting point. I decided to follow a set of tutorials created by the Django Rest Framework Team.
Each branch on this repository contains a different topic.
Python 3.7+ Pipenv 2018.11.26+
Make sure to be on the same level as the Pipfile and Pipfile.lock files.
# Install Virtual Environment:
$ pipenv install
# Activate Virtual Environemnt:
$ pipenv shell
# Running the Application
python manage.py migrate # will create a SQLite database
python manage.py runserver # will start the server