Export listening history to csv (#57)

Still need to convert timestamps to more CPU-readable format and figure
out what to do about reading headers for importing.
This commit is contained in:
2018-11-06 22:58:38 -05:00
parent 3d6dff359d
commit fa2c5f7008
6 changed files with 37 additions and 23 deletions

View File

@@ -12,5 +12,6 @@ urlpatterns = [
name='display_audio_features'),
# path('history/<str:user_secret>', display_history_table,
# name='display_history_table'),
path('history/', display_history_table, name='display_history_table'),
# path('history/', display_history_table, name='display_history_table'),
path('history/', HistoryList.as_view(), name='display_history_table'),
]