A website inspired by Last.fm that will keep track of your listening statistics
lastfm music statistics
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

change the seeds to be a bit smaller

oscar345 1542d98d d443e4c4

+2 -2
+1 -1
scripts/seeds/statistics.py
··· 70 70 stats_conn = duckdb.connect(STATS_DATABASE_PATH) 71 71 mb_conn = sqlite3.connect(MB_DATABASE_PATH) 72 72 73 - # artist_mbid__recording__mbid(mb_conn, stats_conn) 73 + artist_mbid__recording__mbid(mb_conn, stats_conn) 74 74 release_group_mbid__recording__mbid(mb_conn, stats_conn) 75 75 76 76 stats_conn.close()
+1 -1
scripts/seeds/statistics.sql
··· 11 11 FROM mb.recording 12 12 CROSS JOIN range(50) 13 13 ORDER BY random() 14 - LIMIT 50_000_000 14 + LIMIT 15_000_000 15 15 );