Adds object creation from spotify

Now includes functions to convert json to track, artist and album
This commit is contained in:
2024-02-06 01:13:57 +01:00
parent 727cfc9a14
commit e7ee92868f
4 changed files with 87 additions and 9 deletions
+1 -1
View File
@@ -2,5 +2,5 @@ from django.urls import path
from . import views
urlpatterns = [
path('tracks/', views.TrackView.as_view()),
path('track/<str:spotify_id>', views.TrackView.as_view()),
]