From dda6f7b5638b46b604f45bb50bf0368fa0f20b03 Mon Sep 17 00:00:00 2001 From: lonm Date: Tue, 15 Oct 2024 16:35:28 +0100 Subject: [PATCH] [RadioFrance] run autopep --- yt_dlp/extractor/radiofrance.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/yt_dlp/extractor/radiofrance.py b/yt_dlp/extractor/radiofrance.py index 0a95a8c928..31851adb9d 100644 --- a/yt_dlp/extractor/radiofrance.py +++ b/yt_dlp/extractor/radiofrance.py @@ -281,9 +281,9 @@ def _extract_embedded_episodes(self, item, webpage, content_id): links = item['playerInfo']['media']['sources'] item['formats'] = [] for linkkey in links: - url = self._search_regex(linkkey+r'\.url="([^"]+)";', webpage, content_id) - dur = int(self._search_regex(linkkey+r'\.duration=(\d+);', webpage, content_id)) - preset = self._search_json(linkkey+r'\.preset=', webpage, content_id, content_id, contains_pattern=r'\{.+\}', transform_source=js_to_json) + url = self._search_regex(linkkey + r'\.url="([^"]+)";', webpage, content_id) + dur = int(self._search_regex(linkkey + r'\.duration=(\d+);', webpage, content_id)) + preset = self._search_json(linkkey + r'\.preset=', webpage, content_id, content_id, contains_pattern=r'\{.+\}', transform_source=js_to_json) item['formats'].append({ 'format_id': preset['id'], 'url': url, @@ -395,7 +395,7 @@ def _call_api(self, station, podcast_id, cursor): # _search_json cannot parse the data as it contains javascript # Therefore, parse the episodes objects array separately itemlist = self._search_json(r'a.items\s*=\s*', webpage, podcast_id, podcast_id, - contains_pattern=r'\[.+\]', transform_source=js_to_json) + contains_pattern=r'\[.+\]', transform_source=js_to_json) for item in itemlist: if item['model'] == 'Expression': @@ -457,7 +457,7 @@ def _call_api(self, station, profile_id, cursor): # get the page data pagekey = pagedata['pagination'] hasMorePages = False - lastPage = int(self._search_regex(pagekey+r'\.lastPage=(\d+);', webpage, profile_id, '0')) + lastPage = int(self._search_regex(pagekey + r'\.lastPage=(\d+);', webpage, profile_id, '0')) hasMorePages = cursor < lastPage resp['next'] = cursor + 1 if hasMorePages else None