gamdl 3.2__tar.gz → 3.3__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.
- {gamdl-3.2 → gamdl-3.3}/PKG-INFO +1 -1
- gamdl-3.3/gamdl/__init__.py +1 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/interface/interface.py +0 -2
- {gamdl-3.2 → gamdl-3.3}/gamdl.egg-info/PKG-INFO +1 -1
- {gamdl-3.2 → gamdl-3.3}/pyproject.toml +1 -1
- gamdl-3.2/gamdl/__init__.py +0 -1
- {gamdl-3.2 → gamdl-3.3}/LICENSE +0 -0
- {gamdl-3.2 → gamdl-3.3}/README.md +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/__main__.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/api/__init__.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/api/apple_music.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/api/constants.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/api/exceptions.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/api/itunes.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/cli/__init__.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/cli/cli.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/cli/cli_config.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/cli/config_file.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/cli/constants.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/cli/database.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/cli/interactive_prompts.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/cli/utils.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/downloader/__init__.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/downloader/amdecrypt.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/downloader/base.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/downloader/constants.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/downloader/downloader.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/downloader/enums.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/downloader/exceptions.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/downloader/music_video.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/downloader/song.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/downloader/types.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/downloader/uploaded_video.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/interface/__init__.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/interface/base.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/interface/constants.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/interface/enums.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/interface/exceptions.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/interface/music_video.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/interface/song.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/interface/types.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/interface/uploaded_video.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/interface/wvd.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl/utils.py +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl.egg-info/SOURCES.txt +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl.egg-info/dependency_links.txt +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl.egg-info/entry_points.txt +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl.egg-info/requires.txt +0 -0
- {gamdl-3.2 → gamdl-3.3}/gamdl.egg-info/top_level.txt +0 -0
- {gamdl-3.2 → gamdl-3.3}/setup.cfg +0 -0
{gamdl-3.2 → gamdl-3.3}/PKG-INFO
RENAMED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "3.3"
|
|
@@ -281,7 +281,6 @@ class AppleMusicInterface:
|
|
|
281
281
|
self._get_song_media(
|
|
282
282
|
media_id=track["id"],
|
|
283
283
|
index=index,
|
|
284
|
-
total=base_media.media_metadata["attributes"]["trackCount"],
|
|
285
284
|
media_metadata=track,
|
|
286
285
|
playlist_metadata=base_media.media_metadata,
|
|
287
286
|
)
|
|
@@ -289,7 +288,6 @@ class AppleMusicInterface:
|
|
|
289
288
|
else self._get_music_video_media(
|
|
290
289
|
media_id=track["id"],
|
|
291
290
|
index=index,
|
|
292
|
-
total=base_media.media_metadata["attributes"]["trackCount"],
|
|
293
291
|
media_metadata=track,
|
|
294
292
|
playlist_metadata=base_media.media_metadata,
|
|
295
293
|
)
|
gamdl-3.2/gamdl/__init__.py
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "3.2"
|
{gamdl-3.2 → gamdl-3.3}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|