from django.urls import path from .views import ( ExtractAttributesView, BatchExtractAttributesView, ProductAttributesView, AttributeReviewView ) urlpatterns = [ path('products//extract/', ExtractAttributesView.as_view()), path('products/batch-extract/', BatchExtractAttributesView.as_view()), path('products//attributes/', ProductAttributesView.as_view()), path('attributes/review/', AttributeReviewView.as_view()), path('attributes//review/', AttributeReviewView.as_view()), ]