Spaces:
Sleeping
Sleeping
File size: 506 Bytes
0bd6e09 8c0b0cb f87b88a 0bd6e09 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
from django.urls import path
from . import views
from django.conf import settings
urlpatterns = [
path('category/<str:category>/', views.getProductData),
path('search/', views.searchQuery),
path('fetchCategory/', views.fetchCategory),
path('getComparisonChart/', views.getComparisonChart),
path('dataManipulator/', views.dataManipulator),
path('dataAdder/', views.dataAdder),
path('comparisionData/', views.comparisionData),
path('fetchPriceData/', views.fetchPriceData)
]
|