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
391 B

  1. from django.urls import path, include
  2. from .views import *
  3. urlpatterns = [
  4. path('user_artists/<str:user_secret>', get_artist_data,
  5. name='get_artist_data'),
  6. path('user_genres/<str:user_secret>', get_genre_data,
  7. name='get_genre_data'),
  8. path('audio_features/<str:audio_feature>/<str:user_secret>',
  9. get_audio_feature_data, name='get_audio_feature_data'),
  10. ]