Minor changes

- Remove useless impot
- Fix tracks number for extractors
- Fix comment
This commit is contained in:
Lucas Bergeron 2023-03-08 12:30:15 +01:00
parent 34996fb38f
commit 98c9aee726
2 changed files with 5 additions and 7 deletions

View file

@ -1,5 +1,3 @@
from __future__ import unicode_literals
from .compat import compat_struct_unpack, compat_struct_pack from .compat import compat_struct_unpack, compat_struct_pack
# Blowfish implementation, translated from original C code by Bruce Schneier. # Blowfish implementation, translated from original C code by Bruce Schneier.

View file

@ -54,9 +54,9 @@ class DeezerMusicExtractor(DeezerBaseInfoExtractor):
api_token, license_token = self.get_api_license_tokens(data_id) api_token, license_token = self.get_api_license_tokens(data_id)
################################# #####################
# GET TRACK TOKENS AND PREVIEWS # # GET DIRECT STREAM #
################################# #####################
url = self.GW_LIGHT_URL + "?" + \ url = self.GW_LIGHT_URL + "?" + \
"api_token=" + api_token + "&" + \ "api_token=" + api_token + "&" + \
@ -195,7 +195,7 @@ class DeezerArtistIE(DeezerMusicExtractor):
'uploader': 'Bolivard', 'uploader': 'Bolivard',
'thumbnail': r're:^https?://(e-)?cdns-images\.dzcdn\.net/images/artist/.*\.jpg$', 'thumbnail': r're:^https?://(e-)?cdns-images\.dzcdn\.net/images/artist/.*\.jpg$',
}, },
'playlist_count': 22, 'playlist_count': 27,
} }
_API_URL = "https://api.deezer.com/artist/{0}?limit=-1" _API_URL = "https://api.deezer.com/artist/{0}?limit=-1"
_METHOD = "artist.getTopTrack" _METHOD = "artist.getTopTrack"
@ -385,7 +385,7 @@ class DeezerShowIE(DeezerPodcastExtractor):
'uploader': 'Cryptoast - Bitcoin et Cryptomonnaies', 'uploader': 'Cryptoast - Bitcoin et Cryptomonnaies',
'thumbnail': r're:^https?://(e-)?cdns-images\.dzcdn\.net/images/talk/.*\.jpg$', 'thumbnail': r're:^https?://(e-)?cdns-images\.dzcdn\.net/images/talk/.*\.jpg$',
}, },
'playlist_count': 108, 'playlist_count': 129,
} }
_API_URL = "https://api.deezer.com/podcast/{0}?limit=-1" _API_URL = "https://api.deezer.com/podcast/{0}?limit=-1"
_METHOD = "episode.getListByShow" _METHOD = "episode.getListByShow"