from django.urls import path from .views import refreshHeb, refreshSephora, refreshWallmart, refreshUlta,home, refreshTarget, ProductListView, refreshAll, download_all_product_csv urlpatterns = [ path('refreshHeb', refreshHeb, name='refreshHeb'), path('refreshSephora', refreshSephora, name='refreshSephora'), path('refreshWallmart', refreshWallmart, name='refreshWallmart'), path('refreshUlta', refreshUlta, name='refreshUlta'), path('', ProductListView.as_view(), name='home'), path('refreshTarget', refreshTarget, name='refreshTarget'), path('refresh', refreshAll, name='refresh'), path('download', download_all_product_csv, name='download'), ]