You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
384 B
13 lines
384 B
from django.urls import path, include
|
|
|
|
from .views import *
|
|
|
|
app_name = 'graphs'
|
|
urlpatterns = [
|
|
path('artists/<str:user_secret>', artist_data,
|
|
name='display_artist_graph'),
|
|
path('genre/<str:user_secret>', display_genre_graph,
|
|
name='display_genre_graph'),
|
|
path('audio_features/<str:user_secret>', audio_features,
|
|
name='display_audio_features'),
|
|
]
|