]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/washingtonpost.py
[misc] Add `hatch`, `ruff`, `pre-commit` and improve dev docs (#7409)
[yt-dlp.git] / yt_dlp / extractor / washingtonpost.py
CommitLineData
fac55558
PH
1import re
2
3from .common import InfoExtractor
5b804e39
B
4from ..utils import traverse_obj
5
fac55558
PH
6
7class WashingtonPostIE(InfoExtractor):
4b464a6a 8 IE_NAME = 'washingtonpost'
29f7c58a 9 _VALID_URL = r'(?:washingtonpost:|https?://(?:www\.)?washingtonpost\.com/(?:video|posttv)/(?:[^/]+/)*)(?P<id>[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12})'
bfd973ec 10 _EMBED_REGEX = [r'<iframe[^>]+\bsrc=["\'](?P<url>https?://(?:www\.)?washingtonpost\.com/video/c/embed/[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12})']
29f7c58a 11 _TESTS = [{
4b464a6a 12 'url': 'https://www.washingtonpost.com/video/c/video/480ba4ee-1ec7-11e6-82c2-a7dcb313287d',
13 'md5': '6f537e1334b714eb15f9563bd4b9cdfa',
14 'info_dict': {
15 'id': '480ba4ee-1ec7-11e6-82c2-a7dcb313287d',
16 'ext': 'mp4',
17 'title': 'Egypt finds belongings, debris from plane crash',
18 'description': 'md5:a17ceee432f215a5371388c1f680bd86',
19 'upload_date': '20160520',
29f7c58a 20 'timestamp': 1463775187,
4b464a6a 21 },
29f7c58a 22 }, {
23 'url': 'https://www.washingtonpost.com/video/world/egypt-finds-belongings-debris-from-plane-crash/2016/05/20/480ba4ee-1ec7-11e6-82c2-a7dcb313287d_video.html',
24 'only_matching': True,
25 }, {
26 'url': 'https://www.washingtonpost.com/posttv/world/iraq-to-track-down-antiquities-after-islamic-state-museum-rampage/2015/02/28/7c57e916-bf86-11e4-9dfb-03366e719af8_video.html',
27 'only_matching': True,
28 }]
4b464a6a 29
30 def _real_extract(self, url):
31 video_id = self._match_id(url)
29f7c58a 32 return self.url_result(
33 'arcpublishing:wapo:' + video_id, 'ArcPublishing', video_id)
4b464a6a 34
35
36class WashingtonPostArticleIE(InfoExtractor):
37 IE_NAME = 'washingtonpost:article'
38 _VALID_URL = r'https?://(?:www\.)?washingtonpost\.com/(?:[^/]+/)*(?P<id>[^/?#]+)'
01c46659 39 _TESTS = [{
fac55558 40 'url': 'http://www.washingtonpost.com/sf/national/2014/03/22/sinkhole-of-bureaucracy/',
8029857d 41 'info_dict': {
01c46659 42 'id': 'sinkhole-of-bureaucracy',
8029857d
S
43 'title': 'Sinkhole of bureaucracy',
44 },
fac55558 45 'playlist': [{
5b804e39 46 'md5': '7ccf53ea8cbb77de5f570242b3b21a59',
fac55558
PH
47 'info_dict': {
48 'id': 'fc433c38-b146-11e3-b8b3-44b1d1cd4c1f',
49 'ext': 'mp4',
50 'title': 'Breaking Points: The Paper Mine',
10723362 51 'duration': 1290,
fac55558 52 'description': 'Overly complicated paper pushing is nothing new to government bureaucracy. But the way federal retirement applications are filed may be the most outdated. David Fahrenthold explains.',
29f7c58a 53 'timestamp': 1395440416,
54 'upload_date': '20140321',
5b804e39 55 'thumbnail': r're:https://[^\.]+.cloudfront\.net/PAPERMINESplash\.jpg',
fac55558
PH
56 },
57 }, {
5b804e39 58 'md5': '7ccf53ea8cbb77de5f570242b3b21a59',
fac55558
PH
59 'info_dict': {
60 'id': '41255e28-b14a-11e3-b8b3-44b1d1cd4c1f',
61 'ext': 'mp4',
62 'title': 'The town bureaucracy sustains',
63 'description': 'Underneath the friendly town of Boyers is a sea of government paperwork. In a disused limestone mine, hundreds of locals now track, file and process retirement applications for the federal government. We set out to find out what it\'s like to do paperwork 230 feet underground.',
10723362 64 'duration': 2220,
29f7c58a 65 'timestamp': 1395441819,
66 'upload_date': '20140321',
5b804e39 67 'thumbnail': r're:https://[^\.]+.cloudfront\.net/BoyersSplash\.jpeg',
fac55558 68 },
01c46659
PH
69 }],
70 }, {
71 'url': 'http://www.washingtonpost.com/blogs/wonkblog/wp/2014/12/31/one-airline-figured-out-how-to-make-sure-its-airplanes-never-disappear/',
72 'info_dict': {
73 'id': 'one-airline-figured-out-how-to-make-sure-its-airplanes-never-disappear',
74 'title': 'One airline figured out how to make sure its airplanes never disappear',
75 },
76 'playlist': [{
77 'md5': 'a7c1b5634ba5e57a6a82cdffa5b1e0d0',
78 'info_dict': {
79 'id': '0e4bb54c-9065-11e4-a66f-0ca5037a597d',
80 'ext': 'mp4',
81 'description': 'Washington Post transportation reporter Ashley Halsey III explains why a plane\'s black box needs to be recovered from a crash site instead of having its information streamed in real time throughout the flight.',
82 'upload_date': '20141230',
29f7c58a 83 'timestamp': 1419972442,
01c46659
PH
84 'title': 'Why black boxes don’t transmit data in real time',
85 }
5b804e39
B
86 }],
87 'skip': 'Doesnt have a video anymore',
88 }, {
89 'url': 'https://www.washingtonpost.com/nation/2021/08/05/dixie-river-fire-california-climate/',
90 'only_matching': True,
01c46659 91 }]
fac55558 92
4b464a6a 93 @classmethod
94 def suitable(cls, url):
95 return False if WashingtonPostIE.suitable(url) else super(WashingtonPostArticleIE, cls).suitable(url)
96
fac55558 97 def _real_extract(self, url):
99673f04 98 page_id = self._match_id(url)
fac55558 99 webpage = self._download_webpage(url, page_id)
99673f04 100
fac55558 101 title = self._og_search_title(webpage)
01c46659
PH
102
103 uuids = re.findall(r'''(?x)
104 (?:
105 <div\s+class="posttv-video-embed[^>]*?data-uuid=|
106 data-video-uuid=
107 )"([^"]+)"''', webpage)
5b804e39
B
108
109 if not uuids:
110 json_data = self._search_nextjs_data(webpage, page_id)
111 for content_element in traverse_obj(json_data, ('props', 'pageProps', 'globalContent', 'content_elements')):
112 if content_element.get('type') == 'video':
113 uuids.append(content_element.get('_id'))
114
4b464a6a 115 entries = [self.url_result('washingtonpost:%s' % uuid, 'WashingtonPost', uuid) for uuid in uuids]
fac55558
PH
116
117 return {
118 '_type': 'playlist',
119 'entries': entries,
120 'id': page_id,
121 'title': title,
122 }