gamdl 3.7__tar.gz → 3.7.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.
- {gamdl-3.7 → gamdl-3.7.2}/PKG-INFO +1 -1
- gamdl-3.7.2/gamdl/__init__.py +1 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/downloader/amdecrypt.py +309 -138
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/downloader/base.py +50 -30
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/downloader/uploaded_video.py +1 -1
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/interface/constants.py +1 -1
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/interface/enums.py +5 -4
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/interface/music_video.py +78 -36
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/interface/song.py +16 -9
- {gamdl-3.7 → gamdl-3.7.2}/gamdl.egg-info/PKG-INFO +1 -1
- {gamdl-3.7 → gamdl-3.7.2}/pyproject.toml +1 -1
- gamdl-3.7/gamdl/__init__.py +0 -1
- {gamdl-3.7 → gamdl-3.7.2}/LICENSE +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/README.md +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/__main__.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/api/__init__.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/api/apple_music.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/api/constants.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/api/exceptions.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/api/itunes.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/api/wrapper.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/cli/__init__.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/cli/cli.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/cli/cli_config.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/cli/config_file.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/cli/constants.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/cli/database.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/cli/interactive_prompts.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/cli/utils.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/downloader/__init__.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/downloader/constants.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/downloader/downloader.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/downloader/enums.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/downloader/exceptions.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/downloader/music_video.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/downloader/song.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/downloader/types.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/interface/__init__.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/interface/base.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/interface/exceptions.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/interface/interface.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/interface/types.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/interface/uploaded_video.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/interface/wvd.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl/utils.py +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl.egg-info/SOURCES.txt +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl.egg-info/dependency_links.txt +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl.egg-info/entry_points.txt +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl.egg-info/requires.txt +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/gamdl.egg-info/top_level.txt +0 -0
- {gamdl-3.7 → gamdl-3.7.2}/setup.cfg +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "3.7.2"
|