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.

14 lines
477 B

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