web app for spotify playlist management with last.fm integration https://mixonomer.sarsoo.xyz
Go to file
2021-03-20 18:48:07 +00:00
.github/workflows restrict deploy to main push, updated dependencies 2021-03-20 18:21:33 +00:00
.vscode adding CD to workflow 2021-02-07 20:40:59 +00:00
docs added cloud structure 2021-01-20 01:19:37 +00:00
music begin testing tasks, pass objects to playlist and tag refreshing 2021-02-08 16:18:16 +00:00
src removed maths tab in front-end 2021-03-20 18:48:07 +00:00
tests begin testing tasks, pass objects to playlist and tag refreshing 2021-02-08 16:18:16 +00:00
.babelrc added js frontend skeleton with routing 2019-07-26 14:18:32 +01:00
.gcloudignore added empty stats to playlist generation for ios app 2020-03-08 10:51:21 +00:00
.gitignore using sass action instead of installing 2021-02-08 00:19:29 +00:00
admin.py removed maths tab in front-end 2021-03-20 18:48:07 +00:00
app.yaml drop back to F1 2020-07-11 19:24:03 +01:00
dispatch.yaml restrict deploy to main push, updated dependencies 2021-03-20 18:21:33 +00:00
main.api.py admin script, live playlist updating with functions or tasks, config option 2020-06-30 16:38:06 +01:00
main.cron.py shifted cron jobs to serverless+scheduler, switches instead of checboxes 2020-08-13 19:50:21 +01:00
main.run_playlist.py begin testing tasks, pass objects to playlist and tag refreshing 2021-02-08 16:18:16 +00:00
main.update_tag.py begin testing tasks, pass objects to playlist and tag refreshing 2021-02-08 16:18:16 +00:00
package-lock.json restrict deploy to main push, updated dependencies 2021-03-20 18:21:33 +00:00
package.json update dependencies, rejigged admin script, better structured ci/cd 2021-02-16 22:51:13 +00:00
poetry.lock restrict deploy to main push, updated dependencies 2021-03-20 18:21:33 +00:00
pyproject.toml removed maths tab in front-end 2021-03-20 18:48:07 +00:00
README.md added poetry for dependency export, compile front-end as task for flagging erros 2021-02-07 22:02:28 +00:00
webpack.common.js initial code splitting 2020-01-26 20:33:09 +00:00
webpack.dev.js added js frontend skeleton with routing 2019-07-26 14:18:32 +01:00
webpack.prod.js added js frontend skeleton with routing 2019-07-26 14:18:32 +01:00

Music Tools

Python Tests

Set of utility tools for Spotify and Last.fm. Built on my other libraries for Spotify (spotframework), Last.fm (fmframework) and interfacing utility tools for the two (spotfm). Currently running on a suite of Google Cloud Platform services. An iOS client is currently under development here.

Smart Playlists

Create smart playlists for Spotify including tracks from playlists, library and Spotify recommendations.

Playlists List Playlist Example

Playlists can pull tracks from multiple sources with some extra ones based on the playlist's type.

  • Spotify playlists
    • Currently referenced by case-sensitive names of those followed by the user
    • Plan to include reference by Spotify URI
  • Other Music Tools playlists
    • Dynamically include the Spotify playlists of other managed playlists
    • Used to allow hierarchy playlists such as for genre (as seen above for multiple rap playlists)
  • Spotify Library Tracks
  • Monthly Playlists
    • ONLY for "Recents" type playlists
    • Find user playlists by name in the format "month year" e.g. february 20 (lowercase)
    • Can dynamically include this month's and/or last month's playlist at runtime
  • Last.fm track chart data
    • ONLY for "Last.fm Chart" type playlists
    • Include variable number of top tracks in the last date range

When not shuffled, playlists are date sorted with newest at the top for a rolling album artwork of newest releases.

Playlists are updated using the spotframework playlist engine three times a day.

Tags

Groups of Last.fm objects for summing of scrobble counts and listening statistics.

Tag Example

Structure

This repo consists of a front-end written in React.js and Material-UI being served by a back-end written in Flask.

The application is hosted on Google Cloud Infrastructure.

As this codebase stands it's not really re-useable as is, references to the cloud infrastructure are hard-coded.

Acknowledgements

Took inspiration from Paul Lamere's smarter playlists.