Django REST API 2Here some tips about Django REST Framework (DRF) with Django 3.

Official website

Quick install

[code]> pip install djangorestframework[/code]

Then in settings.py:

[code]INSTALLED_APPS = [
...
'rest_framework',
][/code]

Let's go!