Added new Bundle type
This commit is contained in:
parent
09589f9603
commit
4933e01034
|
@ -1,3 +1,3 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
__version__ = "1.2.15"
|
__version__ = "1.2.16"
|
||||||
|
|
|
@ -306,7 +306,7 @@ class Deezer:
|
||||||
def get_artist_discography_gw(self, art_id, nb=100):
|
def get_artist_discography_gw(self, art_id, nb=100):
|
||||||
start = 0
|
start = 0
|
||||||
releases = []
|
releases = []
|
||||||
RELEASE_TYPE = ["single", "album", "compile", "ep"]
|
RELEASE_TYPE = ["single", "album", "compile", "ep", "bundle"]
|
||||||
result = {'all': []}
|
result = {'all': []}
|
||||||
IDs = []
|
IDs = []
|
||||||
while True:
|
while True:
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -7,7 +7,7 @@ README = (HERE / "README.md").read_text()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="deemix",
|
name="deemix",
|
||||||
version="1.2.15",
|
version="1.2.16",
|
||||||
description="A barebone deezer downloader library",
|
description="A barebone deezer downloader library",
|
||||||
long_description=README,
|
long_description=README,
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
|
|
Loading…
Reference in New Issue