Graphs and tables for your Spotify account.
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.

12 lines
364 B

  1. from django.urls import path, include
  2. from .views import *
  3. urlpatterns = [
  4. path('artists/<str:user_secret>', artist_data,
  5. name='display_artist_graph'),
  6. path('genre/<str:user_secret>', display_genre_graph,
  7. name='display_genre_graph'),
  8. path('audio_features/<str:user_secret>', audio_features,
  9. name='display_audio_features'),
  10. ]