SpotDown 0.0.7__tar.gz → 0.0.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.
- {spotdown-0.0.7/SpotDown.egg-info → spotdown-0.0.8}/PKG-INFO +1 -3
- {spotdown-0.0.7 → spotdown-0.0.8}/README.md +1 -3
- {spotdown-0.0.7 → spotdown-0.0.8/SpotDown.egg-info}/PKG-INFO +1 -3
- spotdown-0.0.8/SpotDown.egg-info/entry_points.txt +2 -0
- {spotdown-0.0.7 → spotdown-0.0.8}/setup.py +3 -3
- spotdown-0.0.7/SpotDown.egg-info/entry_points.txt +0 -2
- {spotdown-0.0.7 → spotdown-0.0.8}/LICENSE +0 -0
- {spotdown-0.0.7 → spotdown-0.0.8}/MANIFEST.in +0 -0
- {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown/__init__.py +0 -0
- {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown/downloader/__init__.py +0 -0
- {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown/downloader/youtube_downloader.py +0 -0
- {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown/extractor/__init__.py +0 -0
- {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown/extractor/spotify_extractor.py +0 -0
- {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown/extractor/youtube_extractor.py +0 -0
- {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown/main.py +0 -0
- {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown/utils/__init__.py +0 -0
- {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown/utils/config_json.py +0 -0
- {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown/utils/console_utils.py +0 -0
- {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown/utils/file_utils.py +0 -0
- {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown/utils/headers.py +0 -0
- {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown.egg-info/SOURCES.txt +0 -0
- {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown.egg-info/dependency_links.txt +0 -0
- {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown.egg-info/requires.txt +0 -0
- {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown.egg-info/top_level.txt +0 -0
- {spotdown-0.0.7 → spotdown-0.0.8}/requirements.txt +0 -0
- {spotdown-0.0.7 → spotdown-0.0.8}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: SpotDown
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.8
|
4
4
|
Home-page: https://github.com/Arrowar/SpotDown
|
5
5
|
Author: Arrowar
|
6
6
|
Project-URL: Bug Reports, https://github.com/Arrowar/SpotDown/issues
|
@@ -27,8 +27,6 @@ Dynamic: project-url
|
|
27
27
|
Dynamic: requires-dist
|
28
28
|
Dynamic: requires-python
|
29
29
|
|
30
|
-
# SpotDown 🎵
|
31
|
-
|
32
30
|
<div align="center">
|
33
31
|
|
34
32
|
## 📊 Project Status & Info
|
@@ -1,5 +1,3 @@
|
|
1
|
-
# SpotDown 🎵
|
2
|
-
|
3
1
|
<div align="center">
|
4
2
|
|
5
3
|
## 📊 Project Status & Info
|
@@ -150,4 +148,4 @@ This software is provided "as is", without warranty of any kind, express or impl
|
|
150
148
|
|
151
149
|
*If you find this project useful, consider starring it! ⭐*
|
152
150
|
|
153
|
-
</div>
|
151
|
+
</div>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: SpotDown
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.8
|
4
4
|
Home-page: https://github.com/Arrowar/SpotDown
|
5
5
|
Author: Arrowar
|
6
6
|
Project-URL: Bug Reports, https://github.com/Arrowar/SpotDown/issues
|
@@ -27,8 +27,6 @@ Dynamic: project-url
|
|
27
27
|
Dynamic: requires-dist
|
28
28
|
Dynamic: requires-python
|
29
29
|
|
30
|
-
# SpotDown 🎵
|
31
|
-
|
32
30
|
<div align="center">
|
33
31
|
|
34
32
|
## 📊 Project Status & Info
|
@@ -20,7 +20,7 @@ def get_version():
|
|
20
20
|
version_match = re.search(r"^__version__\s*=\s*['\"]([^'\"]*)['\"]", f.read(), re.M)
|
21
21
|
if version_match:
|
22
22
|
return version_match.group(1)
|
23
|
-
|
23
|
+
|
24
24
|
|
25
25
|
setup(
|
26
26
|
name="SpotDown",
|
@@ -34,7 +34,7 @@ setup(
|
|
34
34
|
python_requires='>=3.8',
|
35
35
|
entry_points={
|
36
36
|
"console_scripts": [
|
37
|
-
"
|
37
|
+
"spotdown=SpotDown.main:main",
|
38
38
|
],
|
39
39
|
},
|
40
40
|
include_package_data=True,
|
@@ -43,4 +43,4 @@ setup(
|
|
43
43
|
"Bug Reports": "https://github.com/Arrowar/SpotDown/issues",
|
44
44
|
"Source": "https://github.com/Arrowar/SpotDown",
|
45
45
|
}
|
46
|
-
)
|
46
|
+
)
|
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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|