DDownloader 0.2.5__tar.gz → 0.2.6__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.
- {ddownloader-0.2.5 → ddownloader-0.2.6}/DDownloader/modules/banners.py +1 -1
- {ddownloader-0.2.5 → ddownloader-0.2.6}/DDownloader/modules/helper.py +1 -1
- {ddownloader-0.2.5 → ddownloader-0.2.6}/DDownloader.egg-info/PKG-INFO +3 -1
- {ddownloader-0.2.5 → ddownloader-0.2.6}/DDownloader.egg-info/requires.txt +2 -0
- {ddownloader-0.2.5 → ddownloader-0.2.6}/PKG-INFO +3 -1
- {ddownloader-0.2.5 → ddownloader-0.2.6}/pyproject.toml +4 -2
- {ddownloader-0.2.5 → ddownloader-0.2.6}/DDownloader/__init__.py +0 -0
- {ddownloader-0.2.5 → ddownloader-0.2.6}/DDownloader/main.py +0 -0
- {ddownloader-0.2.5 → ddownloader-0.2.6}/DDownloader/modules/__init__.py +0 -0
- {ddownloader-0.2.5 → ddownloader-0.2.6}/DDownloader/modules/args_parser.py +0 -0
- {ddownloader-0.2.5 → ddownloader-0.2.6}/DDownloader/modules/dash_downloader.py +0 -0
- {ddownloader-0.2.5 → ddownloader-0.2.6}/DDownloader/modules/hls_downloader.py +0 -0
- {ddownloader-0.2.5 → ddownloader-0.2.6}/DDownloader/modules/streamlink.py +0 -0
- {ddownloader-0.2.5 → ddownloader-0.2.6}/DDownloader.egg-info/SOURCES.txt +0 -0
- {ddownloader-0.2.5 → ddownloader-0.2.6}/DDownloader.egg-info/dependency_links.txt +0 -0
- {ddownloader-0.2.5 → ddownloader-0.2.6}/DDownloader.egg-info/entry_points.txt +0 -0
- {ddownloader-0.2.5 → ddownloader-0.2.6}/DDownloader.egg-info/top_level.txt +0 -0
- {ddownloader-0.2.5 → ddownloader-0.2.6}/LICENSE +0 -0
- {ddownloader-0.2.5 → ddownloader-0.2.6}/README.md +0 -0
- {ddownloader-0.2.5 → ddownloader-0.2.6}/setup.cfg +0 -0
@@ -19,7 +19,7 @@ def banners():
|
|
19
19
|
stdout.write(""+Fore.YELLOW +"╔════════════════════════════════════════════════════════════════════════════╝\n")
|
20
20
|
stdout.write(""+Fore.YELLOW +"║ \x1b[38;2;255;20;147m• "+Fore.GREEN+"GITHUB "+Fore.RED+" |"+Fore.LIGHTWHITE_EX+" GITHUB.COM/THATNOTEASY "+Fore.YELLOW+"║\n")
|
21
21
|
stdout.write(""+Fore.YELLOW +"╚════════════════════════════════════════════════════════════════════════════╝\n")
|
22
|
-
print(f"{Fore.YELLOW}[DDownloader] - {Fore.GREEN}Download DASH or HLS streams with decryption keys. - {Fore.RED}[V0.2.
|
22
|
+
print(f"{Fore.YELLOW}[DDownloader] - {Fore.GREEN}Download DASH or HLS streams with decryption keys. - {Fore.RED}[V0.2.6] \n{Fore.RESET}")
|
23
23
|
|
24
24
|
def clear_and_print():
|
25
25
|
time.sleep(1)
|
@@ -70,7 +70,7 @@ def download_binaries(bin_dir, platform_name):
|
|
70
70
|
file.write(chunk)
|
71
71
|
progress_bar.update(len(chunk))
|
72
72
|
|
73
|
-
logger.info(f"{Fore.GREEN}Downloaded and saved: {filepath}{Fore.RESET}")
|
73
|
+
# logger.info(f"{Fore.GREEN}Downloaded and saved: {filepath}{Fore.RESET}")
|
74
74
|
# Make binary executable on Linux
|
75
75
|
if platform_name == "Linux":
|
76
76
|
os.chmod(filepath, 0o755)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: DDownloader
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.6
|
4
4
|
Summary: A downloader for DRM-protected content.
|
5
5
|
Author-email: ThatNotEasy <apidotmy@proton.me>
|
6
6
|
License: MIT License
|
@@ -34,6 +34,8 @@ Description-Content-Type: text/markdown
|
|
34
34
|
License-File: LICENSE
|
35
35
|
Requires-Dist: requests>=2.26.0
|
36
36
|
Requires-Dist: coloredlogs>=15.0
|
37
|
+
Requires-Dist: tqdm>=4.64.0
|
38
|
+
Requires-Dist: colorama>=0.4.5
|
37
39
|
Requires-Dist: loguru>=0.6.0
|
38
40
|
|
39
41
|
# DDownloader
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: DDownloader
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.6
|
4
4
|
Summary: A downloader for DRM-protected content.
|
5
5
|
Author-email: ThatNotEasy <apidotmy@proton.me>
|
6
6
|
License: MIT License
|
@@ -34,6 +34,8 @@ Description-Content-Type: text/markdown
|
|
34
34
|
License-File: LICENSE
|
35
35
|
Requires-Dist: requests>=2.26.0
|
36
36
|
Requires-Dist: coloredlogs>=15.0
|
37
|
+
Requires-Dist: tqdm>=4.64.0
|
38
|
+
Requires-Dist: colorama>=0.4.5
|
37
39
|
Requires-Dist: loguru>=0.6.0
|
38
40
|
|
39
41
|
# DDownloader
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "DDownloader"
|
7
|
-
version = "0.2.
|
7
|
+
version = "0.2.6"
|
8
8
|
description = "A downloader for DRM-protected content."
|
9
9
|
readme = { file = "README.md", content-type = "text/markdown" }
|
10
10
|
authors = [
|
@@ -21,6 +21,8 @@ classifiers = [
|
|
21
21
|
dependencies = [
|
22
22
|
"requests>=2.26.0",
|
23
23
|
"coloredlogs>=15.0",
|
24
|
+
"tqdm>=4.64.0",
|
25
|
+
"colorama>=0.4.5",
|
24
26
|
"loguru>=0.6.0"
|
25
27
|
]
|
26
28
|
|
@@ -31,4 +33,4 @@ homepage = "https://github.com/ThatNotEasy/DDownloader"
|
|
31
33
|
include = ["DDownloader", "DDownloader.*"]
|
32
34
|
|
33
35
|
[project.scripts]
|
34
|
-
DDownloader = "DDownloader.main:main"
|
36
|
+
DDownloader = "DDownloader.main:main"
|
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
|