DDownloader 0.1.7__tar.gz → 0.1.8__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.1.8/DDownloader/__init__.py +1 -0
- {DDownloader-0.1.7 → ddownloader-0.1.8}/DDownloader/main.py +3 -2
- {DDownloader-0.1.7 → ddownloader-0.1.8}/DDownloader.egg-info/PKG-INFO +5 -1
- ddownloader-0.1.8/DDownloader.egg-info/entry_points.txt +2 -0
- ddownloader-0.1.8/DDownloader.egg-info/requires.txt +3 -0
- {DDownloader-0.1.7 → ddownloader-0.1.8}/PKG-INFO +5 -1
- {DDownloader-0.1.7 → ddownloader-0.1.8}/setup.py +14 -10
- DDownloader-0.1.7/DDownloader/__init__.py +0 -4
- DDownloader-0.1.7/DDownloader.egg-info/entry_points.txt +0 -2
- DDownloader-0.1.7/DDownloader.egg-info/requires.txt +0 -4
- {DDownloader-0.1.7 → ddownloader-0.1.8}/DDownloader/modules/__init__.py +0 -0
- {DDownloader-0.1.7 → ddownloader-0.1.8}/DDownloader/modules/dash_downloader.py +0 -0
- {DDownloader-0.1.7 → ddownloader-0.1.8}/DDownloader/modules/hls_downloader.py +0 -0
- {DDownloader-0.1.7 → ddownloader-0.1.8}/DDownloader/modules/streamlink.py +0 -0
- {DDownloader-0.1.7 → ddownloader-0.1.8}/DDownloader.egg-info/SOURCES.txt +0 -0
- {DDownloader-0.1.7 → ddownloader-0.1.8}/DDownloader.egg-info/dependency_links.txt +0 -0
- {DDownloader-0.1.7 → ddownloader-0.1.8}/DDownloader.egg-info/top_level.txt +0 -0
- {DDownloader-0.1.7 → ddownloader-0.1.8}/README.md +0 -0
- {DDownloader-0.1.7 → ddownloader-0.1.8}/setup.cfg +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
from DDownloader.main import main
|
@@ -1,7 +1,8 @@
|
|
1
1
|
import argparse
|
2
2
|
import logging
|
3
|
-
|
4
|
-
from modules.
|
3
|
+
import coloredlogs
|
4
|
+
from DDownloader.modules.dash_downloader import DASH
|
5
|
+
from DDownloader.modules.hls_downloader import HLS
|
5
6
|
|
6
7
|
logger = logging.getLogger("+ MAIN + ")
|
7
8
|
coloredlogs.install(level='DEBUG', logger=logger)
|
@@ -1,16 +1,20 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: DDownloader
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.8
|
4
4
|
Summary: A downloader for DRM-protected content.
|
5
5
|
Home-page: https://github.com/ThatNotEasy/DDownloader
|
6
6
|
Author: ThatNotEasy
|
7
7
|
Author-email: apidotmy@proton.me
|
8
8
|
License: MIT
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
10
|
+
Classifier: Programming Language :: Python :: 3.10
|
10
11
|
Classifier: License :: OSI Approved :: MIT License
|
11
12
|
Classifier: Operating System :: OS Independent
|
12
13
|
Requires-Python: >=3.10
|
13
14
|
Description-Content-Type: text/markdown
|
15
|
+
Requires-Dist: requests>=2.26.0
|
16
|
+
Requires-Dist: coloredlogs>=15.0
|
17
|
+
Requires-Dist: loguru>=0.6.0
|
14
18
|
|
15
19
|
# DDownloader
|
16
20
|
- DDownloader is a Python library to download HLS and DASH manifests and decrypt media files.
|
@@ -1,16 +1,20 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: DDownloader
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.8
|
4
4
|
Summary: A downloader for DRM-protected content.
|
5
5
|
Home-page: https://github.com/ThatNotEasy/DDownloader
|
6
6
|
Author: ThatNotEasy
|
7
7
|
Author-email: apidotmy@proton.me
|
8
8
|
License: MIT
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
10
|
+
Classifier: Programming Language :: Python :: 3.10
|
10
11
|
Classifier: License :: OSI Approved :: MIT License
|
11
12
|
Classifier: Operating System :: OS Independent
|
12
13
|
Requires-Python: >=3.10
|
13
14
|
Description-Content-Type: text/markdown
|
15
|
+
Requires-Dist: requests>=2.26.0
|
16
|
+
Requires-Dist: coloredlogs>=15.0
|
17
|
+
Requires-Dist: loguru>=0.6.0
|
14
18
|
|
15
19
|
# DDownloader
|
16
20
|
- DDownloader is a Python library to download HLS and DASH manifests and decrypt media files.
|
@@ -1,31 +1,35 @@
|
|
1
1
|
from setuptools import setup, find_packages
|
2
|
+
from pathlib import Path
|
3
|
+
|
4
|
+
# Read the long description from README.md
|
5
|
+
long_description = Path("README.md").read_text(encoding="utf-8")
|
2
6
|
|
3
7
|
setup(
|
4
8
|
name="DDownloader",
|
5
|
-
version="0.1.
|
9
|
+
version="0.1.8",
|
6
10
|
description="A downloader for DRM-protected content.",
|
7
|
-
long_description=
|
11
|
+
long_description=long_description,
|
8
12
|
long_description_content_type="text/markdown",
|
9
13
|
author="ThatNotEasy",
|
10
14
|
author_email="apidotmy@proton.me",
|
11
15
|
url="https://github.com/ThatNotEasy/DDownloader",
|
12
16
|
license="MIT",
|
13
|
-
packages=find_packages(),
|
17
|
+
packages=find_packages(include=["DDownloader", "DDownloader.*"]),
|
14
18
|
classifiers=[
|
15
19
|
"Programming Language :: Python :: 3",
|
20
|
+
"Programming Language :: Python :: 3.10",
|
16
21
|
"License :: OSI Approved :: MIT License",
|
17
22
|
"Operating System :: OS Independent",
|
18
23
|
],
|
19
24
|
python_requires=">=3.10",
|
20
25
|
install_requires=[
|
21
|
-
"requests",
|
22
|
-
"coloredlogs",
|
23
|
-
"loguru",
|
24
|
-
"argparse",
|
26
|
+
"requests>=2.26.0",
|
27
|
+
"coloredlogs>=15.0",
|
28
|
+
"loguru>=0.6.0",
|
25
29
|
],
|
26
30
|
entry_points={
|
27
31
|
"console_scripts": [
|
28
|
-
"
|
32
|
+
"DDownloader=DDownloader.main:main",
|
29
33
|
],
|
30
|
-
}
|
31
|
-
)
|
34
|
+
}
|
35
|
+
)
|
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
|