Split spotifyvis code into different apps (#47)

Server is able to start, but none of the apps are linked together yet.
This commit is contained in:
2018-06-29 04:15:08 -04:00
parent 8851c5ce25
commit 8b1344d453
34 changed files with 319 additions and 538 deletions

12
graphs/urls.py Normal file
View File

@@ -0,0 +1,12 @@
from django.urls import path, include
from .views import *
urlpatterns = [
path('artists/<str:user_secret>', artist_data,
name='display_artist_graph'),
path('genre/<str:user_secret>', display_genre_graph,
name='display_genre_graph'),
path('audio_features/<str:user_secret>', audio_features,
name='display_audio_features'),
]