DDownloader 0.2.7__tar.gz → 0.2.9__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.
Files changed (20) hide show
  1. {ddownloader-0.2.7 → ddownloader-0.2.9}/DDownloader/modules/banners.py +1 -1
  2. {ddownloader-0.2.7 → ddownloader-0.2.9}/DDownloader/modules/dash_downloader.py +1 -1
  3. {ddownloader-0.2.7 → ddownloader-0.2.9}/DDownloader/modules/hls_downloader.py +1 -1
  4. {ddownloader-0.2.7 → ddownloader-0.2.9}/DDownloader.egg-info/PKG-INFO +7 -3
  5. {ddownloader-0.2.7 → ddownloader-0.2.9}/PKG-INFO +7 -3
  6. {ddownloader-0.2.7 → ddownloader-0.2.9}/pyproject.toml +6 -2
  7. {ddownloader-0.2.7 → ddownloader-0.2.9}/DDownloader/__init__.py +0 -0
  8. {ddownloader-0.2.7 → ddownloader-0.2.9}/DDownloader/main.py +0 -0
  9. {ddownloader-0.2.7 → ddownloader-0.2.9}/DDownloader/modules/__init__.py +0 -0
  10. {ddownloader-0.2.7 → ddownloader-0.2.9}/DDownloader/modules/args_parser.py +0 -0
  11. {ddownloader-0.2.7 → ddownloader-0.2.9}/DDownloader/modules/helper.py +0 -0
  12. {ddownloader-0.2.7 → ddownloader-0.2.9}/DDownloader/modules/streamlink.py +0 -0
  13. {ddownloader-0.2.7 → ddownloader-0.2.9}/DDownloader.egg-info/SOURCES.txt +0 -0
  14. {ddownloader-0.2.7 → ddownloader-0.2.9}/DDownloader.egg-info/dependency_links.txt +0 -0
  15. {ddownloader-0.2.7 → ddownloader-0.2.9}/DDownloader.egg-info/entry_points.txt +0 -0
  16. {ddownloader-0.2.7 → ddownloader-0.2.9}/DDownloader.egg-info/requires.txt +0 -0
  17. {ddownloader-0.2.7 → ddownloader-0.2.9}/DDownloader.egg-info/top_level.txt +0 -0
  18. {ddownloader-0.2.7 → ddownloader-0.2.9}/LICENSE +0 -0
  19. {ddownloader-0.2.7 → ddownloader-0.2.9}/README.md +0 -0
  20. {ddownloader-0.2.7 → ddownloader-0.2.9}/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.7] \n{Fore.RESET}")
22
+ print(f"{Fore.YELLOW}[DDownloader] - {Fore.GREEN}Download DASH or HLS streams with decryption keys. - {Fore.RED}[V0.2.9] \n{Fore.RESET}")
23
23
 
24
24
  def clear_and_print():
25
25
  time.sleep(1)
@@ -55,7 +55,7 @@ class DASH:
55
55
 
56
56
  def _build_command(self):
57
57
  command = [
58
- self.binary_path,
58
+ f'"{self.binary_path}"',
59
59
  f'"{self.manifest_url}"',
60
60
  '--select-video', 'BEST',
61
61
  '--select-audio', 'BEST',
@@ -55,7 +55,7 @@ class HLS:
55
55
 
56
56
  def _build_command(self):
57
57
  command = [
58
- self.binary_path,
58
+ f'"{self.binary_path}"',
59
59
  f'"{self.manifest_url}"',
60
60
  '--select-video', 'BEST',
61
61
  '--select-audio', 'BEST',
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: DDownloader
3
- Version: 0.2.7
3
+ Version: 0.2.9
4
4
  Summary: A downloader for DRM-protected content.
5
5
  Author-email: ThatNotEasy <apidotmy@proton.me>
6
6
  License: MIT License
@@ -26,10 +26,14 @@ License: MIT License
26
26
  IN THE SOFTWARE.
27
27
  Project-URL: homepage, https://github.com/ThatNotEasy/DDownloader
28
28
  Classifier: Programming Language :: Python :: 3
29
+ Classifier: Programming Language :: Python :: 3.7
30
+ Classifier: Programming Language :: Python :: 3.8
31
+ Classifier: Programming Language :: Python :: 3.9
29
32
  Classifier: Programming Language :: Python :: 3.10
33
+ Classifier: Programming Language :: Python :: 3.11
30
34
  Classifier: License :: OSI Approved :: MIT License
31
35
  Classifier: Operating System :: OS Independent
32
- Requires-Python: >=3.10
36
+ Requires-Python: >=3.7
33
37
  Description-Content-Type: text/markdown
34
38
  License-File: LICENSE
35
39
  Requires-Dist: requests>=2.26.0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: DDownloader
3
- Version: 0.2.7
3
+ Version: 0.2.9
4
4
  Summary: A downloader for DRM-protected content.
5
5
  Author-email: ThatNotEasy <apidotmy@proton.me>
6
6
  License: MIT License
@@ -26,10 +26,14 @@ License: MIT License
26
26
  IN THE SOFTWARE.
27
27
  Project-URL: homepage, https://github.com/ThatNotEasy/DDownloader
28
28
  Classifier: Programming Language :: Python :: 3
29
+ Classifier: Programming Language :: Python :: 3.7
30
+ Classifier: Programming Language :: Python :: 3.8
31
+ Classifier: Programming Language :: Python :: 3.9
29
32
  Classifier: Programming Language :: Python :: 3.10
33
+ Classifier: Programming Language :: Python :: 3.11
30
34
  Classifier: License :: OSI Approved :: MIT License
31
35
  Classifier: Operating System :: OS Independent
32
- Requires-Python: >=3.10
36
+ Requires-Python: >=3.7
33
37
  Description-Content-Type: text/markdown
34
38
  License-File: LICENSE
35
39
  Requires-Dist: requests>=2.26.0
@@ -4,17 +4,21 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "DDownloader"
7
- version = "0.2.7"
7
+ version = "0.2.9"
8
8
  description = "A downloader for DRM-protected content."
9
9
  readme = { file = "README.md", content-type = "text/markdown" }
10
10
  authors = [
11
11
  { name = "ThatNotEasy", email = "apidotmy@proton.me" }
12
12
  ]
13
13
  license = { file = "LICENSE" }
14
- requires-python = ">=3.10"
14
+ requires-python = ">=3.7"
15
15
  classifiers = [
16
16
  "Programming Language :: Python :: 3",
17
+ "Programming Language :: Python :: 3.7",
18
+ "Programming Language :: Python :: 3.8",
19
+ "Programming Language :: Python :: 3.9",
17
20
  "Programming Language :: Python :: 3.10",
21
+ "Programming Language :: Python :: 3.11",
18
22
  "License :: OSI Approved :: MIT License",
19
23
  "Operating System :: OS Independent"
20
24
  ]
File without changes
File without changes
File without changes