DDownloader 0.3.5__py3-none-any.whl → 0.3.7__py3-none-any.whl
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/bin/N_m3u8DL-RE.exe +0 -0
- DDownloader/bin/aria2c.exe +0 -0
- DDownloader/bin/ffmpeg.exe +0 -0
- DDownloader/bin/mkvmerge.exe +0 -0
- DDownloader/bin/mp4decrypt.exe +0 -0
- DDownloader/bin/shaka-packager.exe +0 -0
- DDownloader/bin/yt-dlp.exe +0 -0
- DDownloader/main.py +5 -0
- DDownloader/modules/__init__.py +1 -1
- DDownloader/modules/__pycache__/__init__.cpython-310.pyc +0 -0
- DDownloader/modules/__pycache__/args_parser.cpython-310.pyc +0 -0
- DDownloader/modules/__pycache__/banners.cpython-310.pyc +0 -0
- DDownloader/modules/__pycache__/dash_downloader.cpython-310.pyc +0 -0
- DDownloader/modules/__pycache__/helper.cpython-310.pyc +0 -0
- DDownloader/modules/__pycache__/hls_downloader.cpython-310.pyc +0 -0
- DDownloader/modules/banners.py +1 -1
- DDownloader/modules/downloader.py +46 -4
- {DDownloader-0.3.5.dist-info → ddownloader-0.3.7.dist-info}/METADATA +135 -130
- ddownloader-0.3.7.dist-info/RECORD +26 -0
- {DDownloader-0.3.5.dist-info → ddownloader-0.3.7.dist-info}/WHEEL +1 -2
- ddownloader-0.3.7.dist-info/entry_points.txt +3 -0
- DDownloader-0.3.5.dist-info/RECORD +0 -14
- DDownloader-0.3.5.dist-info/entry_points.txt +0 -2
- DDownloader-0.3.5.dist-info/top_level.txt +0 -1
- {DDownloader-0.3.5.dist-info → ddownloader-0.3.7.dist-info}/LICENSE +0 -0
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
DDownloader/main.py
CHANGED
@@ -80,6 +80,11 @@ def main():
|
|
80
80
|
logger.info("HLS stream detected. Initializing HLS downloader...")
|
81
81
|
elif re.search(r"\.ism\b", args.url, re.IGNORECASE):
|
82
82
|
logger.info("ISM (Smooth Streaming) detected. Initializing ISM downloader...")
|
83
|
+
elif re.search(r"\.mp4\b", args.url, re.IGNORECASE):
|
84
|
+
logger.info("MP4 file detected. Processing media information...")
|
85
|
+
print(Fore.RED + "═" * 100 + Fore.RESET)
|
86
|
+
downloader.normal_downloader(args.url, os.path.join(downloads_dir, args.output))
|
87
|
+
exit(1)
|
83
88
|
else:
|
84
89
|
logger.error("Unsupported URL format. Please provide a valid DASH (.mpd), HLS (.m3u8), or ISM (.ism) URL.")
|
85
90
|
exit(1)
|
DDownloader/modules/__init__.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "0.3.
|
1
|
+
__version__ = "0.3.7"
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
DDownloader/modules/banners.py
CHANGED
@@ -23,7 +23,7 @@ def banners():
|
|
23
23
|
stdout.write(""+Fore.YELLOW +"╔════════════════════════════════════════════════════════════════════════════╝\n")
|
24
24
|
stdout.write(""+Fore.YELLOW +"║ \x1b[38;2;255;20;147m• "+Fore.GREEN+"GITHUB "+Fore.RED+" |"+Fore.LIGHTWHITE_EX+" GITHUB.COM/THATNOTEASY "+Fore.YELLOW+"║\n")
|
25
25
|
stdout.write(""+Fore.YELLOW +"╚════════════════════════════════════════════════════════════════════════════╝\n")
|
26
|
-
print(f"{Fore.YELLOW}[DDownloader] - {Fore.GREEN}A DRM-Protected Content Downloader - {Fore.RED}[V0.3.
|
26
|
+
print(f"{Fore.YELLOW}[DDownloader] - {Fore.GREEN}A DRM-Protected & Non-Protected Content Downloader - {Fore.RED}[V0.3.7] \n{Fore.RESET}")
|
27
27
|
|
28
28
|
# =========================================================================================================== #
|
29
29
|
|
@@ -1,8 +1,9 @@
|
|
1
|
-
import os
|
1
|
+
import os, requests
|
2
2
|
import subprocess
|
3
3
|
import logging
|
4
4
|
import platform
|
5
5
|
import coloredlogs
|
6
|
+
from tqdm import tqdm
|
6
7
|
from colorama import Fore
|
7
8
|
|
8
9
|
logger = logging.getLogger(Fore.RED + "+ DDOWNLOADER + ")
|
@@ -64,8 +65,6 @@ class DOWNLOADER:
|
|
64
65
|
command = [
|
65
66
|
self.binary_path,
|
66
67
|
f'"{self.manifest_url}"',
|
67
|
-
'--select-video', 'BEST',
|
68
|
-
'--select-audio', 'BEST',
|
69
68
|
'-mt',
|
70
69
|
'-M', 'format=mp4',
|
71
70
|
'--save-dir', '"downloads"',
|
@@ -156,4 +155,47 @@ class DOWNLOADER:
|
|
156
155
|
return output_file
|
157
156
|
else:
|
158
157
|
logger.error(f"Re-encoding failed. Output file not created: {output_file}")
|
159
|
-
return None
|
158
|
+
return None
|
159
|
+
|
160
|
+
# =========================================================================================================== #
|
161
|
+
|
162
|
+
def normal_downloader(self, url, output_file):
|
163
|
+
"""
|
164
|
+
Download a video file from a given URL with a progress bar.
|
165
|
+
Automatically adds .mp4 extension if missing.
|
166
|
+
|
167
|
+
Args:
|
168
|
+
url (str): The video URL to download.
|
169
|
+
output_file (str): The output file path to save the video.
|
170
|
+
"""
|
171
|
+
try:
|
172
|
+
# Add .mp4 extension if not already present
|
173
|
+
if not output_file.lower().endswith(".mp4"):
|
174
|
+
output_file += ".mp4"
|
175
|
+
|
176
|
+
# Send a GET request to the URL with stream=True
|
177
|
+
response = requests.get(url, stream=True)
|
178
|
+
response.raise_for_status() # Raise an exception for HTTP errors
|
179
|
+
|
180
|
+
# Get the total file size from the headers
|
181
|
+
total_size = int(response.headers.get('content-length', 0))
|
182
|
+
|
183
|
+
# Open the output file in binary write mode
|
184
|
+
with open(output_file, 'wb') as file:
|
185
|
+
# Use tqdm to show a progress bar
|
186
|
+
with tqdm(
|
187
|
+
total=total_size,
|
188
|
+
unit='B',
|
189
|
+
unit_scale=True,
|
190
|
+
unit_divisor=1024,
|
191
|
+
desc=f"Downloading {os.path.basename(output_file)}",
|
192
|
+
) as progress:
|
193
|
+
# Write the content in chunks
|
194
|
+
for chunk in response.iter_content(chunk_size=1024):
|
195
|
+
file.write(chunk)
|
196
|
+
progress.update(len(chunk))
|
197
|
+
|
198
|
+
print(f"Download complete: {output_file}")
|
199
|
+
|
200
|
+
except requests.exceptions.RequestException as e:
|
201
|
+
print(f"Error during download: {e}")
|
@@ -1,130 +1,135 @@
|
|
1
|
-
Metadata-Version: 2.
|
2
|
-
Name: DDownloader
|
3
|
-
Version: 0.3.
|
4
|
-
Summary: A downloader for DRM-protected content.
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
Classifier: Programming Language :: Python :: 3
|
30
|
-
Classifier: Programming Language :: Python :: 3.
|
31
|
-
Classifier: Programming Language :: Python :: 3.
|
32
|
-
Classifier: Programming Language :: Python :: 3.
|
33
|
-
Classifier:
|
34
|
-
Classifier:
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
-
|
44
|
-
-
|
45
|
-
|
46
|
-
|
47
|
-
-
|
48
|
-
|
49
|
-
##
|
50
|
-
|
51
|
-
- **
|
52
|
-
- **
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
##
|
67
|
-
-
|
68
|
-
|
69
|
-
```
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
```
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
-
|
122
|
-
|
123
|
-
```bash
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
1
|
+
Metadata-Version: 2.3
|
2
|
+
Name: DDownloader
|
3
|
+
Version: 0.3.7
|
4
|
+
Summary: A downloader for DRM-protected & Non DRM-protected content.
|
5
|
+
License: MIT License
|
6
|
+
|
7
|
+
Copyright (c) [2024] [DDownloader]
|
8
|
+
|
9
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
10
|
+
of this software and associated documentation files (the "Software"), to deal
|
11
|
+
in the Software without restriction, including without limitation the rights
|
12
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
13
|
+
copies of the Software, and to permit persons to whom the Software is
|
14
|
+
furnished to do so, subject to the following condition:
|
15
|
+
|
16
|
+
The above copyright notice and this permission notice shall be included in
|
17
|
+
all copies or substantial portions of the Software.
|
18
|
+
|
19
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
20
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
21
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
22
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
23
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
24
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
25
|
+
IN THE SOFTWARE.
|
26
|
+
Author: ThatNotEasy
|
27
|
+
Author-email: apidotmy@proton.me
|
28
|
+
Requires-Python: >=3.7
|
29
|
+
Classifier: Programming Language :: Python :: 3
|
30
|
+
Classifier: Programming Language :: Python :: 3.7
|
31
|
+
Classifier: Programming Language :: Python :: 3.8
|
32
|
+
Classifier: Programming Language :: Python :: 3.9
|
33
|
+
Classifier: Programming Language :: Python :: 3.10
|
34
|
+
Classifier: Programming Language :: Python :: 3.11
|
35
|
+
Classifier: License :: OSI Approved :: MIT License
|
36
|
+
Classifier: Operating System :: OS Independent
|
37
|
+
Requires-Dist: colorama (>=0.4.5)
|
38
|
+
Requires-Dist: coloredlogs (>=15.0)
|
39
|
+
Requires-Dist: loguru (>=0.6.0)
|
40
|
+
Requires-Dist: pymediainfo (>=6.1.0,<7.0.0)
|
41
|
+
Requires-Dist: requests (>=2.26.0)
|
42
|
+
Requires-Dist: tqdm (>=4.64.0)
|
43
|
+
Project-URL: Homepage, https://github.com/ThatNotEasy/DDownloader
|
44
|
+
Description-Content-Type: text/markdown
|
45
|
+
|
46
|
+
# DDownloader
|
47
|
+
_DDownloader is a powerful Python-based tool and library designed to download and decrypt DRM-protected content from DASH, HLS, and ISM manifests. It provides seamless support for encrypted media streams, extracting metadata and ensuring high compatibility with various DRM standards._
|
48
|
+
|
49
|
+
## Features
|
50
|
+
- **Download and Decrypt**: Supports DASH, HLS, and ISM manifests with seamless decryption using provided keys.
|
51
|
+
- **Automatic Detection**: Automatically detects manifest types (.mpd, .m3u8, .ism) and processes accordingly.
|
52
|
+
- **Media Information Extraction**: Extracts metadata (e.g., codec, resolution, duration) for .mp4 files and saves it in a `logs/` directory.
|
53
|
+
- **CLI and Library Support**: Flexible usage via command-line or Python library.
|
54
|
+
- **Detailed Logging**: Provides real-time progress and logs errors for debugging.
|
55
|
+
|
56
|
+
## Requirements
|
57
|
+
|
58
|
+
- **Python**: Version 3.7 or higher.
|
59
|
+
- **Required binaries**:
|
60
|
+
|
61
|
+
- `N_m3u8DL-RE` for downloading protected DRM content.
|
62
|
+
- `mp4decrypt` for decrypting protected media files.
|
63
|
+
- `ffmpeg` for re-encoding and muxer method
|
64
|
+
- a proper environment variable configuration for binaries.
|
65
|
+
|
66
|
+
## Installation
|
67
|
+
- Install `DDownloader` using pip:
|
68
|
+
|
69
|
+
```bash
|
70
|
+
pip install DDownloader
|
71
|
+
```
|
72
|
+
|
73
|
+
## Usage
|
74
|
+
- Download Content:
|
75
|
+
|
76
|
+
```python
|
77
|
+
from DDownloader.modules.downloader import DOWNLOADER
|
78
|
+
|
79
|
+
downloader = DOWNLOADER()
|
80
|
+
downloader.manifest_url = "https://example.com/path/to/manifest" # DASH, HLS, or ISM manifest URL
|
81
|
+
downloader.output_name = "output.mp4" # Desired output file name
|
82
|
+
downloader.decryption_keys = ["12345:678910"] # Provide decryption keys if needed
|
83
|
+
downloader.download() # Start the downloading and decryption process
|
84
|
+
```
|
85
|
+
|
86
|
+
- Extract Media Information:
|
87
|
+
|
88
|
+
```python
|
89
|
+
from DDownloader.modules.helper import get_media_info
|
90
|
+
|
91
|
+
file_path = "downloads/example.mp4"
|
92
|
+
media_info = get_media_info(file_path)
|
93
|
+
print(media_info)
|
94
|
+
```
|
95
|
+
|
96
|
+
- Re-encoding:
|
97
|
+
|
98
|
+
```python
|
99
|
+
from DDownloader.modules.downloader import DOWNLOADER
|
100
|
+
|
101
|
+
re_encode = DOWNLOADER()
|
102
|
+
quality = ["HD", "FHD", "UHD"]
|
103
|
+
input_content = "downloads/example.mp4"
|
104
|
+
output_content = "/path/to/output.mp4"
|
105
|
+
re_encode.re_encode_content(input_file=input_content,quality=quality,codec="libx265",crf=20,preset="medium")
|
106
|
+
```
|
107
|
+
|
108
|
+
## CLI Usage
|
109
|
+
- Download Media
|
110
|
+
|
111
|
+
```bash
|
112
|
+
DDownloader -u https://example.com/path/to/manifest -o output.mp4
|
113
|
+
```
|
114
|
+
|
115
|
+
- Specify Decryption Keys
|
116
|
+
|
117
|
+
```bash
|
118
|
+
DDownloader -u https://example.com/path/to/manifest -o output.mp4 -k 12345:678910
|
119
|
+
```
|
120
|
+
|
121
|
+
- Re-encoding
|
122
|
+
|
123
|
+
```bash
|
124
|
+
DDownloader -i "input.mp4" -o "output.mp4" -q "HD, FHD, UHD"
|
125
|
+
```
|
126
|
+
|
127
|
+
|
128
|
+
- Display Help
|
129
|
+
|
130
|
+
```bash
|
131
|
+
DDownloader -h
|
132
|
+
```
|
133
|
+
|
134
|
+
- 
|
135
|
+
|
@@ -0,0 +1,26 @@
|
|
1
|
+
DDownloader/__init__.py,sha256=lVZwmZNId0Dai7XBQpxglmJtIxAtZplRHDsvobL2UNo,33
|
2
|
+
DDownloader/bin/aria2c.exe,sha256=7NovO7hmaCdsPJK3Hue8N5mefFlAcJMjU_LnUnE9f6g,4840960
|
3
|
+
DDownloader/bin/ffmpeg.exe,sha256=NqWbY4tJ-ObGIvTefEyKr4RC8wE4pYiC7irz9BDl_Vw,148103168
|
4
|
+
DDownloader/bin/mkvmerge.exe,sha256=s2WkBPBuhpWPNHKXwDBfQ4vOMXLYTfxu62PbnRqK55A,19144712
|
5
|
+
DDownloader/bin/mp4decrypt.exe,sha256=JnI7mk4UduPVnUDg1aZBr4y_SWRFy8s-u_H6gG5xeOg,452096
|
6
|
+
DDownloader/bin/N_m3u8DL-RE.exe,sha256=5ck6jeDFjFCSLBeoo7q9fSGT-0Oxp_rNCxjeknTvgGE,17197568
|
7
|
+
DDownloader/bin/shaka-packager.exe,sha256=oQmfiToKeryylxsR9BiKuhXR_fS-PqPEu9W9rEsbrt8,5369344
|
8
|
+
DDownloader/bin/yt-dlp.exe,sha256=TYiozhv_gpxxZ90h6LSo7rDbFEG8JzQPCJa754HJw8A,19557107
|
9
|
+
DDownloader/main.py,sha256=7XJrLtMaw_5taymEoPfDgfQCw9K3JJmW8gScR6gVOPw,5792
|
10
|
+
DDownloader/modules/__init__.py,sha256=Jl3PXrkK7-Eox4dKIMxhOA7uVtSB0CC7qOf4NAQqa_s,21
|
11
|
+
DDownloader/modules/__pycache__/__init__.cpython-310.pyc,sha256=XTOXC62dWICZNMKQGsrzT2Q_plhIs0EDYWbbzPnP4cI,192
|
12
|
+
DDownloader/modules/__pycache__/args_parser.cpython-310.pyc,sha256=wRZBVDvaj3u6kMxUgDeegIgCDbpI5Xc8-FcnePt8O-Y,845
|
13
|
+
DDownloader/modules/__pycache__/banners.cpython-310.pyc,sha256=OPyrjSYpT2vf2uKiVJJ3QeMbiLUECT1fVo7B51Dc7LM,5618
|
14
|
+
DDownloader/modules/__pycache__/dash_downloader.cpython-310.pyc,sha256=dGuwXBw_MuwE9i7sC_Ze_wK3iz_9KA85w-0aJjwJyDs,4644
|
15
|
+
DDownloader/modules/__pycache__/helper.cpython-310.pyc,sha256=wOX6-I0QgXxXQXfzV7TUBahhb30Xid6MWx6rxZkIv0g,4200
|
16
|
+
DDownloader/modules/__pycache__/hls_downloader.cpython-310.pyc,sha256=Hg5C_O0M4WtnP6fN9OTwRDr1s8F67feBVkQONLNIT-E,4633
|
17
|
+
DDownloader/modules/args_parser.py,sha256=Xc9ZzBu-QPFrBURIcq7rl8IJbrdPMy7EMWc-odVM2QU,1105
|
18
|
+
DDownloader/modules/banners.py,sha256=s63Rd9cwGLvDbNUvCpWMK0I2rIBAYGl5dmQO9eP9Wvs,5656
|
19
|
+
DDownloader/modules/downloader.py,sha256=xzuWBzXSoz0yU-BtkAPuqRNaPsxgcnTYvunWOtroQKU,7783
|
20
|
+
DDownloader/modules/helper.py,sha256=b8h-h4_JqE02D26qBzSRW11LWhYUTnBkNIeYlWRO-ZY,5951
|
21
|
+
DDownloader/modules/streamlink.py,sha256=t7aaHCnINzSFybTmAd-dvfGFQkepFHJwrOBcNxyJviY,504
|
22
|
+
ddownloader-0.3.7.dist-info/entry_points.txt,sha256=36xFMHKWyVvFKBCCMd3ctyd6tyujf685-qilrMpsA1E,53
|
23
|
+
ddownloader-0.3.7.dist-info/LICENSE,sha256=cnjTim3BMjb9cVC_b3oS41FESKLuvuDsufVHa_ymZRw,1090
|
24
|
+
ddownloader-0.3.7.dist-info/METADATA,sha256=8Utz-Ii1130UMi1wnkM0qQu6sgD6eDUSFlG_ge4KrMA,4906
|
25
|
+
ddownloader-0.3.7.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
26
|
+
ddownloader-0.3.7.dist-info/RECORD,,
|
@@ -1,14 +0,0 @@
|
|
1
|
-
DDownloader/__init__.py,sha256=lVZwmZNId0Dai7XBQpxglmJtIxAtZplRHDsvobL2UNo,33
|
2
|
-
DDownloader/main.py,sha256=TQ58NNmigBGKGxMm-PAPL0RG5w8WOpBq0g4J6xQtoSg,5480
|
3
|
-
DDownloader/modules/__init__.py,sha256=7Mpk_ZUorFUStSKEAk4F5dnB7uCLNFviloAVMVv5V-8,21
|
4
|
-
DDownloader/modules/args_parser.py,sha256=Xc9ZzBu-QPFrBURIcq7rl8IJbrdPMy7EMWc-odVM2QU,1105
|
5
|
-
DDownloader/modules/banners.py,sha256=9lgi1AGQubI8VYXtQVr2gBt0LfeqEI947sDzxsjpjqY,5640
|
6
|
-
DDownloader/modules/downloader.py,sha256=PaM-khHiW5jIgfOR5_mMnjbJPWk5js3JKQTFBprQY8o,6031
|
7
|
-
DDownloader/modules/helper.py,sha256=b8h-h4_JqE02D26qBzSRW11LWhYUTnBkNIeYlWRO-ZY,5951
|
8
|
-
DDownloader/modules/streamlink.py,sha256=t7aaHCnINzSFybTmAd-dvfGFQkepFHJwrOBcNxyJviY,504
|
9
|
-
DDownloader-0.3.5.dist-info/LICENSE,sha256=cnjTim3BMjb9cVC_b3oS41FESKLuvuDsufVHa_ymZRw,1090
|
10
|
-
DDownloader-0.3.5.dist-info/METADATA,sha256=y6ZdCW6XLUGrT3YVf1gX9dfS1dKU7rER6WVyUXjOfLk,4872
|
11
|
-
DDownloader-0.3.5.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
12
|
-
DDownloader-0.3.5.dist-info/entry_points.txt,sha256=tCZVr_SRONlWlMFsVKgcPj3lxe9gBtWD4GuWukMv75g,54
|
13
|
-
DDownloader-0.3.5.dist-info/top_level.txt,sha256=INZYgY1vEHV1MIWTPXKJL8j8-ZXjWb8u4XLuU3S8umY,12
|
14
|
-
DDownloader-0.3.5.dist-info/RECORD,,
|
@@ -1 +0,0 @@
|
|
1
|
-
DDownloader
|
File without changes
|