LoginSignup
2
2

More than 3 years have passed since last update.

django rest frameworkインストール

Last updated at Posted at 2020-04-04

インストール

python3 -m pip install djangorestframework
python3 -m pip install markdown
python3 -m pip install django-filter

プロジェクトへの設定の追加

settings.py
INSTALLED_APPS = [
    ...
    'rest_framework',
]

ブラウズ可能なAPIを使用する場合は、おそらくRESTフレームワークのログインビューとログアウトビューも追加する必要があります。ルートurls.pyファイルに次を追加します。

urls.py
from django.conf.urls import url, include
...
urlpatterns = [
    ...
    url(r'^api-auth/', include('rest_framework.urls'))
]
python3 manage.py migrate
python3 manage.py createsuperuser
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2