Page 1 sur 3
Here some tips about Django REST Framework (DRF) with Django 3.
Quick install
[code]> pip install djangorestframework[/code]
Then in settings.py:
[code]INSTALLED_APPS = [
...
'rest_framework',
][/code]
Let's go!
Here some tips about Django REST Framework (DRF) with Django 3.
[code]> pip install djangorestframework[/code]
Then in settings.py:
[code]INSTALLED_APPS = [
...
'rest_framework',
][/code]
Let's go!