1
0
Fork 0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-05-22 18:05:46 -05:00

Update ilpost.py

Add missing newlines
This commit is contained in:
Nino Burini 2025-02-04 11:48:49 +01:00 committed by GitHub
parent a487aa9379
commit 54aec0ce21
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10,6 +10,7 @@
PODCAST_API = 'https://api-prod.ilpost.it/podcast/v1/podcast/%s?hits=20'
class IlPostIE(InfoExtractor):
_VALID_URL = r'https?://(?:www\.)?ilpost\.it/podcasts/(?:.*?)/(?P<id>[^/?#]+)'
_TESTS = [{
@ -60,6 +61,7 @@ def _real_extract(self, url):
}),
}
class IlPostPodcastIE(InfoExtractor):
_VALID_URL = r'https?://(?:www\.)?ilpost\.it/podcasts/(?P<id>[^/?#]+)'
_TESTS = [{