spotify-profile-monitor 2.5.1__tar.gz → 2.5.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {spotify_profile_monitor-2.5.1 → spotify_profile_monitor-2.5.2}/PKG-INFO +1 -1
- {spotify_profile_monitor-2.5.1 → spotify_profile_monitor-2.5.2}/pyproject.toml +1 -1
- {spotify_profile_monitor-2.5.1 → spotify_profile_monitor-2.5.2}/spotify_profile_monitor.egg-info/PKG-INFO +1 -1
- {spotify_profile_monitor-2.5.1 → spotify_profile_monitor-2.5.2}/spotify_profile_monitor.py +4 -3
- {spotify_profile_monitor-2.5.1 → spotify_profile_monitor-2.5.2}/LICENSE +0 -0
- {spotify_profile_monitor-2.5.1 → spotify_profile_monitor-2.5.2}/README.md +0 -0
- {spotify_profile_monitor-2.5.1 → spotify_profile_monitor-2.5.2}/setup.cfg +0 -0
- {spotify_profile_monitor-2.5.1 → spotify_profile_monitor-2.5.2}/spotify_profile_monitor.egg-info/SOURCES.txt +0 -0
- {spotify_profile_monitor-2.5.1 → spotify_profile_monitor-2.5.2}/spotify_profile_monitor.egg-info/dependency_links.txt +0 -0
- {spotify_profile_monitor-2.5.1 → spotify_profile_monitor-2.5.2}/spotify_profile_monitor.egg-info/entry_points.txt +0 -0
- {spotify_profile_monitor-2.5.1 → spotify_profile_monitor-2.5.2}/spotify_profile_monitor.egg-info/requires.txt +0 -0
- {spotify_profile_monitor-2.5.1 → spotify_profile_monitor-2.5.2}/spotify_profile_monitor.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: spotify_profile_monitor
|
|
3
|
-
Version: 2.5.
|
|
3
|
+
Version: 2.5.2
|
|
4
4
|
Summary: Tool implementing real-time tracking of Spotify users activities and profile changes including playlists
|
|
5
5
|
Author-email: Michal Szymanski <misiektoja-pypi@rm-rf.ninja>
|
|
6
6
|
License-Expression: GPL-3.0-or-later
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "spotify_profile_monitor"
|
|
7
|
-
version = "2.5.
|
|
7
|
+
version = "2.5.2"
|
|
8
8
|
description = "Tool implementing real-time tracking of Spotify users activities and profile changes including playlists"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "GPL-3.0-or-later"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: spotify_profile_monitor
|
|
3
|
-
Version: 2.5.
|
|
3
|
+
Version: 2.5.2
|
|
4
4
|
Summary: Tool implementing real-time tracking of Spotify users activities and profile changes including playlists
|
|
5
5
|
Author-email: Michal Szymanski <misiektoja-pypi@rm-rf.ninja>
|
|
6
6
|
License-Expression: GPL-3.0-or-later
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env python3
|
|
2
2
|
"""
|
|
3
3
|
Author: Michal Szymanski <misiektoja-github@rm-rf.ninja>
|
|
4
|
-
v2.5.
|
|
4
|
+
v2.5.2
|
|
5
5
|
|
|
6
6
|
OSINT tool implementing real-time tracking of Spotify users activities and profile changes including playlists:
|
|
7
7
|
https://github.com/misiektoja/spotify_profile_monitor/
|
|
@@ -18,7 +18,7 @@ python-dotenv (optional)
|
|
|
18
18
|
spotipy (optional, needed when the token source is set to oauth_app)
|
|
19
19
|
"""
|
|
20
20
|
|
|
21
|
-
VERSION = "2.5.
|
|
21
|
+
VERSION = "2.5.2"
|
|
22
22
|
|
|
23
23
|
# ---------------------------
|
|
24
24
|
# CONFIGURATION SECTION START
|
|
@@ -5566,7 +5566,8 @@ def main():
|
|
|
5566
5566
|
print(f"* Ignore listed playlists:\t{bool(PLAYLISTS_TO_SKIP_FILE)}" + (f" ({PLAYLISTS_TO_SKIP_FILE})" if PLAYLISTS_TO_SKIP_FILE else ""))
|
|
5567
5567
|
print(f"* Display profile pics:\t\t{bool(imgcat_exe)}" + (f" (via {imgcat_exe})" if imgcat_exe else ""))
|
|
5568
5568
|
print(f"* Output logging enabled:\t{not DISABLE_LOGGING}" + (f" ({FINAL_LOG_PATH})" if not DISABLE_LOGGING else ""))
|
|
5569
|
-
|
|
5569
|
+
if TOKEN_SOURCE in ('oauth_user', 'oauth_app'):
|
|
5570
|
+
print(f"* Spotify token cache file:\t{({'oauth_app': SP_APP_TOKENS_FILE, 'oauth_user': SP_USER_TOKENS_FILE}.get(TOKEN_SOURCE) or 'None (memory only)')}")
|
|
5570
5571
|
print(f"* Configuration file:\t\t{cfg_path}")
|
|
5571
5572
|
print(f"* Dotenv file:\t\t\t{env_path or 'None'}")
|
|
5572
5573
|
print(f"* Local timezone:\t\t{LOCAL_TIMEZONE}\n")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|