from django.urls import include, path from rest_framework import routers, authtoken from rest_framework.authtoken import views as authtokenviews from . import views router = routers.DefaultRouter() router.register(r'bookmarks', views.BookmarkViewSet, basename='bookmark') # Wire up our API using automatic URL routing. # Additionally, we include login URLs for the browsable API. urlpatterns = [ path('', include(router.urls)), path('api-auth/', include('rest_framework.urls', namespace='rest_framework')), path('token/', authtokenviews.obtain_auth_token), ]