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.
|
|
from django.urls import path, include
from .views import *
app_name = 'api' urlpatterns = [ path('scan/library/<str:user_secret>', parse_library, name='scan_library'), path('scan/history/<str:user_secret>', parse_history, name='scan_history'), path('user_artists/<str:user_secret>', get_artist_data, name='get_artist_data'), path('user_genres/<str:user_secret>', get_genre_data, name='get_genre_data'), path('audio_features/<str:audio_feature>/<str:user_secret>', get_audio_feature_data, name='get_audio_feature_data'), ]
|