├── .github └── workflows │ └── stale.yml ├── .gitignore ├── LICENSE ├── README.md ├── RELEASE_NOTES.md ├── assets ├── proxyman_export_protobuf.png ├── spotify_profile_monitor.png ├── spotify_profile_monitor_email_notifications.png ├── spotify_profile_monitor_playlist.png └── spotify_profile_monitor_user_details.png ├── grc └── conf.monitor_logs ├── pyproject.toml ├── requirements.txt └── spotify_profile_monitor.py /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misiektoja/spotify_profile_monitor/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misiektoja/spotify_profile_monitor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misiektoja/spotify_profile_monitor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misiektoja/spotify_profile_monitor/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misiektoja/spotify_profile_monitor/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /assets/proxyman_export_protobuf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misiektoja/spotify_profile_monitor/HEAD/assets/proxyman_export_protobuf.png -------------------------------------------------------------------------------- /assets/spotify_profile_monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misiektoja/spotify_profile_monitor/HEAD/assets/spotify_profile_monitor.png -------------------------------------------------------------------------------- /assets/spotify_profile_monitor_email_notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misiektoja/spotify_profile_monitor/HEAD/assets/spotify_profile_monitor_email_notifications.png -------------------------------------------------------------------------------- /assets/spotify_profile_monitor_playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misiektoja/spotify_profile_monitor/HEAD/assets/spotify_profile_monitor_playlist.png -------------------------------------------------------------------------------- /assets/spotify_profile_monitor_user_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misiektoja/spotify_profile_monitor/HEAD/assets/spotify_profile_monitor_user_details.png -------------------------------------------------------------------------------- /grc/conf.monitor_logs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misiektoja/spotify_profile_monitor/HEAD/grc/conf.monitor_logs -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misiektoja/spotify_profile_monitor/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misiektoja/spotify_profile_monitor/HEAD/requirements.txt -------------------------------------------------------------------------------- /spotify_profile_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/misiektoja/spotify_profile_monitor/HEAD/spotify_profile_monitor.py --------------------------------------------------------------------------------