urls.py 477 B

123456789
  1. # ==================== urls.py ====================
  2. from django.urls import path
  3. from .views import ExtractProductAttributesView, BatchExtractProductAttributesView, ProductListView
  4. urlpatterns = [
  5. path('extract/', ExtractProductAttributesView.as_view(), name='extract-attributes'),
  6. path('batch-extract/', BatchExtractProductAttributesView.as_view(), name='batch-extract-attributes'),
  7. path('products/', ProductListView.as_view(), name='batch-extract-attributes'),
  8. ]