Added new Bundle type

This commit is contained in:
RemixDev 2020-09-06 11:33:44 +02:00
parent 09589f9603
commit 4933e01034
3 changed files with 3 additions and 3 deletions

View File

@ -1,3 +1,3 @@
#!/usr/bin/env python3
__version__ = "1.2.15"
__version__ = "1.2.16"

View File

@ -306,7 +306,7 @@ class Deezer:
def get_artist_discography_gw(self, art_id, nb=100):
start = 0
releases = []
RELEASE_TYPE = ["single", "album", "compile", "ep"]
RELEASE_TYPE = ["single", "album", "compile", "ep", "bundle"]
result = {'all': []}
IDs = []
while True:

View File

@ -7,7 +7,7 @@ README = (HERE / "README.md").read_text()
setup(
name="deemix",
version="1.2.15",
version="1.2.16",
description="A barebone deezer downloader library",
long_description=README,
long_description_content_type="text/markdown",