https://github.com/yzimroni/spotifystreaminganalyzer
Analyze your Spotify's streaming history
https://github.com/yzimroni/spotifystreaminganalyzer
python spotify statistics
Last synced: 19 days ago
JSON representation
Analyze your Spotify's streaming history
- Host: GitHub
- URL: https://github.com/yzimroni/spotifystreaminganalyzer
- Owner: yzimroni
- License: gpl-3.0
- Created: 2021-02-27T11:21:05.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-02-27T19:37:54.000Z (over 5 years ago)
- Last Synced: 2025-01-11T15:47:07.422Z (over 1 year ago)
- Topics: python, spotify, statistics
- Language: Python
- Homepage:
- Size: 24.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Spotify Streaming Analyzer
Analyze your Spotify's streaming history
This tool will analyze your Spotify streaming history and will generate a file containing aggregated data about your streaming history
# Usage
To use the tool you need to export your data from Spotify, which can be done [here](https://www.spotify.com/us/account/privacy/) (under "Download your data").
It might take a few days before you can download your data.
Once you downloaded your data, extract the zip and run the program:
```
python analyze.py --source --output
```
For example:
```
python analyze.py --source Downloads/my_spotify_data/MyData --output output.csv
```
You can use filters to filter streaming history before a specific date, using the --from-date flag, and filter songs below a specific play count, using --min-count
```
python analyze.py --source Downloads/my_spotify_data/MyData --output output.csv --from-date 2019-03-04 --min-count 5
```