logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git

utils.py (201336B)


  1. #!/usr/bin/env python
  2. # coding: utf-8
  3. from __future__ import unicode_literals
  4. import base64
  5. import binascii
  6. import calendar
  7. import codecs
  8. import collections
  9. import contextlib
  10. import ctypes
  11. import datetime
  12. import email.utils
  13. import email.header
  14. import errno
  15. import functools
  16. import inspect
  17. import io
  18. import itertools
  19. import json
  20. import locale
  21. import math
  22. import operator
  23. import os
  24. import platform
  25. import random
  26. import re
  27. import socket
  28. import ssl
  29. import subprocess
  30. import sys
  31. import tempfile
  32. import time
  33. import traceback
  34. import unicodedata
  35. import xml.etree.ElementTree
  36. import zlib
  37. from .compat import (
  38. compat_HTMLParseError,
  39. compat_HTMLParser,
  40. compat_basestring,
  41. compat_brotli as brotli,
  42. compat_casefold,
  43. compat_chr,
  44. compat_collections_abc,
  45. compat_cookiejar,
  46. compat_ctypes_WINFUNCTYPE,
  47. compat_datetime_timedelta_total_seconds,
  48. compat_etree_fromstring,
  49. compat_expanduser,
  50. compat_html_entities,
  51. compat_html_entities_html5,
  52. compat_http_client,
  53. compat_integer_types,
  54. compat_kwargs,
  55. compat_ncompress as ncompress,
  56. compat_os_name,
  57. compat_re_Match,
  58. compat_re_Pattern,
  59. compat_shlex_quote,
  60. compat_str,
  61. compat_struct_pack,
  62. compat_struct_unpack,
  63. compat_urllib_error,
  64. compat_urllib_HTTPError,
  65. compat_urllib_parse,
  66. compat_urllib_parse_parse_qs as compat_parse_qs,
  67. compat_urllib_parse_urlencode,
  68. compat_urllib_parse_urlparse,
  69. compat_urllib_parse_unquote_plus,
  70. compat_urllib_request,
  71. compat_xpath,
  72. )
  73. from .socks import (
  74. ProxyType,
  75. sockssocket,
  76. )
  77. def register_socks_protocols():
  78. # "Register" SOCKS protocols
  79. # In Python < 2.6.5, urlsplit() suffers from bug https://bugs.python.org/issue7904
  80. # URLs with protocols not in urlparse.uses_netloc are not handled correctly
  81. for scheme in ('socks', 'socks4', 'socks4a', 'socks5'):
  82. if scheme not in compat_urllib_parse.uses_netloc:
  83. compat_urllib_parse.uses_netloc.append(scheme)
  84. # Unfavoured alias
  85. compiled_regex_type = compat_re_Pattern
  86. def random_user_agent():
  87. _USER_AGENT_TPL = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/%s Safari/537.36'
  88. _CHROME_VERSIONS = (
  89. '74.0.3729.129',
  90. '76.0.3780.3',
  91. '76.0.3780.2',
  92. '74.0.3729.128',
  93. '76.0.3780.1',
  94. '76.0.3780.0',
  95. '75.0.3770.15',
  96. '74.0.3729.127',
  97. '74.0.3729.126',
  98. '76.0.3779.1',
  99. '76.0.3779.0',
  100. '75.0.3770.14',
  101. '74.0.3729.125',
  102. '76.0.3778.1',
  103. '76.0.3778.0',
  104. '75.0.3770.13',
  105. '74.0.3729.124',
  106. '74.0.3729.123',
  107. '73.0.3683.121',
  108. '76.0.3777.1',
  109. '76.0.3777.0',
  110. '75.0.3770.12',
  111. '74.0.3729.122',
  112. '76.0.3776.4',
  113. '75.0.3770.11',
  114. '74.0.3729.121',
  115. '76.0.3776.3',
  116. '76.0.3776.2',
  117. '73.0.3683.120',
  118. '74.0.3729.120',
  119. '74.0.3729.119',
  120. '74.0.3729.118',
  121. '76.0.3776.1',
  122. '76.0.3776.0',
  123. '76.0.3775.5',
  124. '75.0.3770.10',
  125. '74.0.3729.117',
  126. '76.0.3775.4',
  127. '76.0.3775.3',
  128. '74.0.3729.116',
  129. '75.0.3770.9',
  130. '76.0.3775.2',
  131. '76.0.3775.1',
  132. '76.0.3775.0',
  133. '75.0.3770.8',
  134. '74.0.3729.115',
  135. '74.0.3729.114',
  136. '76.0.3774.1',
  137. '76.0.3774.0',
  138. '75.0.3770.7',
  139. '74.0.3729.113',
  140. '74.0.3729.112',
  141. '74.0.3729.111',
  142. '76.0.3773.1',
  143. '76.0.3773.0',
  144. '75.0.3770.6',
  145. '74.0.3729.110',
  146. '74.0.3729.109',
  147. '76.0.3772.1',
  148. '76.0.3772.0',
  149. '75.0.3770.5',
  150. '74.0.3729.108',
  151. '74.0.3729.107',
  152. '76.0.3771.1',
  153. '76.0.3771.0',
  154. '75.0.3770.4',
  155. '74.0.3729.106',
  156. '74.0.3729.105',
  157. '75.0.3770.3',
  158. '74.0.3729.104',
  159. '74.0.3729.103',
  160. '74.0.3729.102',
  161. '75.0.3770.2',
  162. '74.0.3729.101',
  163. '75.0.3770.1',
  164. '75.0.3770.0',
  165. '74.0.3729.100',
  166. '75.0.3769.5',
  167. '75.0.3769.4',
  168. '74.0.3729.99',
  169. '75.0.3769.3',
  170. '75.0.3769.2',
  171. '75.0.3768.6',
  172. '74.0.3729.98',
  173. '75.0.3769.1',
  174. '75.0.3769.0',
  175. '74.0.3729.97',
  176. '73.0.3683.119',
  177. '73.0.3683.118',
  178. '74.0.3729.96',
  179. '75.0.3768.5',
  180. '75.0.3768.4',
  181. '75.0.3768.3',
  182. '75.0.3768.2',
  183. '74.0.3729.95',
  184. '74.0.3729.94',
  185. '75.0.3768.1',
  186. '75.0.3768.0',
  187. '74.0.3729.93',
  188. '74.0.3729.92',
  189. '73.0.3683.117',
  190. '74.0.3729.91',
  191. '75.0.3766.3',
  192. '74.0.3729.90',
  193. '75.0.3767.2',
  194. '75.0.3767.1',
  195. '75.0.3767.0',
  196. '74.0.3729.89',
  197. '73.0.3683.116',
  198. '75.0.3766.2',
  199. '74.0.3729.88',
  200. '75.0.3766.1',
  201. '75.0.3766.0',
  202. '74.0.3729.87',
  203. '73.0.3683.115',
  204. '74.0.3729.86',
  205. '75.0.3765.1',
  206. '75.0.3765.0',
  207. '74.0.3729.85',
  208. '73.0.3683.114',
  209. '74.0.3729.84',
  210. '75.0.3764.1',
  211. '75.0.3764.0',
  212. '74.0.3729.83',
  213. '73.0.3683.113',
  214. '75.0.3763.2',
  215. '75.0.3761.4',
  216. '74.0.3729.82',
  217. '75.0.3763.1',
  218. '75.0.3763.0',
  219. '74.0.3729.81',
  220. '73.0.3683.112',
  221. '75.0.3762.1',
  222. '75.0.3762.0',
  223. '74.0.3729.80',
  224. '75.0.3761.3',
  225. '74.0.3729.79',
  226. '73.0.3683.111',
  227. '75.0.3761.2',
  228. '74.0.3729.78',
  229. '74.0.3729.77',
  230. '75.0.3761.1',
  231. '75.0.3761.0',
  232. '73.0.3683.110',
  233. '74.0.3729.76',
  234. '74.0.3729.75',
  235. '75.0.3760.0',
  236. '74.0.3729.74',
  237. '75.0.3759.8',
  238. '75.0.3759.7',
  239. '75.0.3759.6',
  240. '74.0.3729.73',
  241. '75.0.3759.5',
  242. '74.0.3729.72',
  243. '73.0.3683.109',
  244. '75.0.3759.4',
  245. '75.0.3759.3',
  246. '74.0.3729.71',
  247. '75.0.3759.2',
  248. '74.0.3729.70',
  249. '73.0.3683.108',
  250. '74.0.3729.69',
  251. '75.0.3759.1',
  252. '75.0.3759.0',
  253. '74.0.3729.68',
  254. '73.0.3683.107',
  255. '74.0.3729.67',
  256. '75.0.3758.1',
  257. '75.0.3758.0',
  258. '74.0.3729.66',
  259. '73.0.3683.106',
  260. '74.0.3729.65',
  261. '75.0.3757.1',
  262. '75.0.3757.0',
  263. '74.0.3729.64',
  264. '73.0.3683.105',
  265. '74.0.3729.63',
  266. '75.0.3756.1',
  267. '75.0.3756.0',
  268. '74.0.3729.62',
  269. '73.0.3683.104',
  270. '75.0.3755.3',
  271. '75.0.3755.2',
  272. '73.0.3683.103',
  273. '75.0.3755.1',
  274. '75.0.3755.0',
  275. '74.0.3729.61',
  276. '73.0.3683.102',
  277. '74.0.3729.60',
  278. '75.0.3754.2',
  279. '74.0.3729.59',
  280. '75.0.3753.4',
  281. '74.0.3729.58',
  282. '75.0.3754.1',
  283. '75.0.3754.0',
  284. '74.0.3729.57',
  285. '73.0.3683.101',
  286. '75.0.3753.3',
  287. '75.0.3752.2',
  288. '75.0.3753.2',
  289. '74.0.3729.56',
  290. '75.0.3753.1',
  291. '75.0.3753.0',
  292. '74.0.3729.55',
  293. '73.0.3683.100',
  294. '74.0.3729.54',
  295. '75.0.3752.1',
  296. '75.0.3752.0',
  297. '74.0.3729.53',
  298. '73.0.3683.99',
  299. '74.0.3729.52',
  300. '75.0.3751.1',
  301. '75.0.3751.0',
  302. '74.0.3729.51',
  303. '73.0.3683.98',
  304. '74.0.3729.50',
  305. '75.0.3750.0',
  306. '74.0.3729.49',
  307. '74.0.3729.48',
  308. '74.0.3729.47',
  309. '75.0.3749.3',
  310. '74.0.3729.46',
  311. '73.0.3683.97',
  312. '75.0.3749.2',
  313. '74.0.3729.45',
  314. '75.0.3749.1',
  315. '75.0.3749.0',
  316. '74.0.3729.44',
  317. '73.0.3683.96',
  318. '74.0.3729.43',
  319. '74.0.3729.42',
  320. '75.0.3748.1',
  321. '75.0.3748.0',
  322. '74.0.3729.41',
  323. '75.0.3747.1',
  324. '73.0.3683.95',
  325. '75.0.3746.4',
  326. '74.0.3729.40',
  327. '74.0.3729.39',
  328. '75.0.3747.0',
  329. '75.0.3746.3',
  330. '75.0.3746.2',
  331. '74.0.3729.38',
  332. '75.0.3746.1',
  333. '75.0.3746.0',
  334. '74.0.3729.37',
  335. '73.0.3683.94',
  336. '75.0.3745.5',
  337. '75.0.3745.4',
  338. '75.0.3745.3',
  339. '75.0.3745.2',
  340. '74.0.3729.36',
  341. '75.0.3745.1',
  342. '75.0.3745.0',
  343. '75.0.3744.2',
  344. '74.0.3729.35',
  345. '73.0.3683.93',
  346. '74.0.3729.34',
  347. '75.0.3744.1',
  348. '75.0.3744.0',
  349. '74.0.3729.33',
  350. '73.0.3683.92',
  351. '74.0.3729.32',
  352. '74.0.3729.31',
  353. '73.0.3683.91',
  354. '75.0.3741.2',
  355. '75.0.3740.5',
  356. '74.0.3729.30',
  357. '75.0.3741.1',
  358. '75.0.3741.0',
  359. '74.0.3729.29',
  360. '75.0.3740.4',
  361. '73.0.3683.90',
  362. '74.0.3729.28',
  363. '75.0.3740.3',
  364. '73.0.3683.89',
  365. '75.0.3740.2',
  366. '74.0.3729.27',
  367. '75.0.3740.1',
  368. '75.0.3740.0',
  369. '74.0.3729.26',
  370. '73.0.3683.88',
  371. '73.0.3683.87',
  372. '74.0.3729.25',
  373. '75.0.3739.1',
  374. '75.0.3739.0',
  375. '73.0.3683.86',
  376. '74.0.3729.24',
  377. '73.0.3683.85',
  378. '75.0.3738.4',
  379. '75.0.3738.3',
  380. '75.0.3738.2',
  381. '75.0.3738.1',
  382. '75.0.3738.0',
  383. '74.0.3729.23',
  384. '73.0.3683.84',
  385. '74.0.3729.22',
  386. '74.0.3729.21',
  387. '75.0.3737.1',
  388. '75.0.3737.0',
  389. '74.0.3729.20',
  390. '73.0.3683.83',
  391. '74.0.3729.19',
  392. '75.0.3736.1',
  393. '75.0.3736.0',
  394. '74.0.3729.18',
  395. '73.0.3683.82',
  396. '74.0.3729.17',
  397. '75.0.3735.1',
  398. '75.0.3735.0',
  399. '74.0.3729.16',
  400. '73.0.3683.81',
  401. '75.0.3734.1',
  402. '75.0.3734.0',
  403. '74.0.3729.15',
  404. '73.0.3683.80',
  405. '74.0.3729.14',
  406. '75.0.3733.1',
  407. '75.0.3733.0',
  408. '75.0.3732.1',
  409. '74.0.3729.13',
  410. '74.0.3729.12',
  411. '73.0.3683.79',
  412. '74.0.3729.11',
  413. '75.0.3732.0',
  414. '74.0.3729.10',
  415. '73.0.3683.78',
  416. '74.0.3729.9',
  417. '74.0.3729.8',
  418. '74.0.3729.7',
  419. '75.0.3731.3',
  420. '75.0.3731.2',
  421. '75.0.3731.0',
  422. '74.0.3729.6',
  423. '73.0.3683.77',
  424. '73.0.3683.76',
  425. '75.0.3730.5',
  426. '75.0.3730.4',
  427. '73.0.3683.75',
  428. '74.0.3729.5',
  429. '73.0.3683.74',
  430. '75.0.3730.3',
  431. '75.0.3730.2',
  432. '74.0.3729.4',
  433. '73.0.3683.73',
  434. '73.0.3683.72',
  435. '75.0.3730.1',
  436. '75.0.3730.0',
  437. '74.0.3729.3',
  438. '73.0.3683.71',
  439. '74.0.3729.2',
  440. '73.0.3683.70',
  441. '74.0.3729.1',
  442. '74.0.3729.0',
  443. '74.0.3726.4',
  444. '73.0.3683.69',
  445. '74.0.3726.3',
  446. '74.0.3728.0',
  447. '74.0.3726.2',
  448. '73.0.3683.68',
  449. '74.0.3726.1',
  450. '74.0.3726.0',
  451. '74.0.3725.4',
  452. '73.0.3683.67',
  453. '73.0.3683.66',
  454. '74.0.3725.3',
  455. '74.0.3725.2',
  456. '74.0.3725.1',
  457. '74.0.3724.8',
  458. '74.0.3725.0',
  459. '73.0.3683.65',
  460. '74.0.3724.7',
  461. '74.0.3724.6',
  462. '74.0.3724.5',
  463. '74.0.3724.4',
  464. '74.0.3724.3',
  465. '74.0.3724.2',
  466. '74.0.3724.1',
  467. '74.0.3724.0',
  468. '73.0.3683.64',
  469. '74.0.3723.1',
  470. '74.0.3723.0',
  471. '73.0.3683.63',
  472. '74.0.3722.1',
  473. '74.0.3722.0',
  474. '73.0.3683.62',
  475. '74.0.3718.9',
  476. '74.0.3702.3',
  477. '74.0.3721.3',
  478. '74.0.3721.2',
  479. '74.0.3721.1',
  480. '74.0.3721.0',
  481. '74.0.3720.6',
  482. '73.0.3683.61',
  483. '72.0.3626.122',
  484. '73.0.3683.60',
  485. '74.0.3720.5',
  486. '72.0.3626.121',
  487. '74.0.3718.8',
  488. '74.0.3720.4',
  489. '74.0.3720.3',
  490. '74.0.3718.7',
  491. '74.0.3720.2',
  492. '74.0.3720.1',
  493. '74.0.3720.0',
  494. '74.0.3718.6',
  495. '74.0.3719.5',
  496. '73.0.3683.59',
  497. '74.0.3718.5',
  498. '74.0.3718.4',
  499. '74.0.3719.4',
  500. '74.0.3719.3',
  501. '74.0.3719.2',
  502. '74.0.3719.1',
  503. '73.0.3683.58',
  504. '74.0.3719.0',
  505. '73.0.3683.57',
  506. '73.0.3683.56',
  507. '74.0.3718.3',
  508. '73.0.3683.55',
  509. '74.0.3718.2',
  510. '74.0.3718.1',
  511. '74.0.3718.0',
  512. '73.0.3683.54',
  513. '74.0.3717.2',
  514. '73.0.3683.53',
  515. '74.0.3717.1',
  516. '74.0.3717.0',
  517. '73.0.3683.52',
  518. '74.0.3716.1',
  519. '74.0.3716.0',
  520. '73.0.3683.51',
  521. '74.0.3715.1',
  522. '74.0.3715.0',
  523. '73.0.3683.50',
  524. '74.0.3711.2',
  525. '74.0.3714.2',
  526. '74.0.3713.3',
  527. '74.0.3714.1',
  528. '74.0.3714.0',
  529. '73.0.3683.49',
  530. '74.0.3713.1',
  531. '74.0.3713.0',
  532. '72.0.3626.120',
  533. '73.0.3683.48',
  534. '74.0.3712.2',
  535. '74.0.3712.1',
  536. '74.0.3712.0',
  537. '73.0.3683.47',
  538. '72.0.3626.119',
  539. '73.0.3683.46',
  540. '74.0.3710.2',
  541. '72.0.3626.118',
  542. '74.0.3711.1',
  543. '74.0.3711.0',
  544. '73.0.3683.45',
  545. '72.0.3626.117',
  546. '74.0.3710.1',
  547. '74.0.3710.0',
  548. '73.0.3683.44',
  549. '72.0.3626.116',
  550. '74.0.3709.1',
  551. '74.0.3709.0',
  552. '74.0.3704.9',
  553. '73.0.3683.43',
  554. '72.0.3626.115',
  555. '74.0.3704.8',
  556. '74.0.3704.7',
  557. '74.0.3708.0',
  558. '74.0.3706.7',
  559. '74.0.3704.6',
  560. '73.0.3683.42',
  561. '72.0.3626.114',
  562. '74.0.3706.6',
  563. '72.0.3626.113',
  564. '74.0.3704.5',
  565. '74.0.3706.5',
  566. '74.0.3706.4',
  567. '74.0.3706.3',
  568. '74.0.3706.2',
  569. '74.0.3706.1',
  570. '74.0.3706.0',
  571. '73.0.3683.41',
  572. '72.0.3626.112',
  573. '74.0.3705.1',
  574. '74.0.3705.0',
  575. '73.0.3683.40',
  576. '72.0.3626.111',
  577. '73.0.3683.39',
  578. '74.0.3704.4',
  579. '73.0.3683.38',
  580. '74.0.3704.3',
  581. '74.0.3704.2',
  582. '74.0.3704.1',
  583. '74.0.3704.0',
  584. '73.0.3683.37',
  585. '72.0.3626.110',
  586. '72.0.3626.109',
  587. '74.0.3703.3',
  588. '74.0.3703.2',
  589. '73.0.3683.36',
  590. '74.0.3703.1',
  591. '74.0.3703.0',
  592. '73.0.3683.35',
  593. '72.0.3626.108',
  594. '74.0.3702.2',
  595. '74.0.3699.3',
  596. '74.0.3702.1',
  597. '74.0.3702.0',
  598. '73.0.3683.34',
  599. '72.0.3626.107',
  600. '73.0.3683.33',
  601. '74.0.3701.1',
  602. '74.0.3701.0',
  603. '73.0.3683.32',
  604. '73.0.3683.31',
  605. '72.0.3626.105',
  606. '74.0.3700.1',
  607. '74.0.3700.0',
  608. '73.0.3683.29',
  609. '72.0.3626.103',
  610. '74.0.3699.2',
  611. '74.0.3699.1',
  612. '74.0.3699.0',
  613. '73.0.3683.28',
  614. '72.0.3626.102',
  615. '73.0.3683.27',
  616. '73.0.3683.26',
  617. '74.0.3698.0',
  618. '74.0.3696.2',
  619. '72.0.3626.101',
  620. '73.0.3683.25',
  621. '74.0.3696.1',
  622. '74.0.3696.0',
  623. '74.0.3694.8',
  624. '72.0.3626.100',
  625. '74.0.3694.7',
  626. '74.0.3694.6',
  627. '74.0.3694.5',
  628. '74.0.3694.4',
  629. '72.0.3626.99',
  630. '72.0.3626.98',
  631. '74.0.3694.3',
  632. '73.0.3683.24',
  633. '72.0.3626.97',
  634. '72.0.3626.96',
  635. '72.0.3626.95',
  636. '73.0.3683.23',
  637. '72.0.3626.94',
  638. '73.0.3683.22',
  639. '73.0.3683.21',
  640. '72.0.3626.93',
  641. '74.0.3694.2',
  642. '72.0.3626.92',
  643. '74.0.3694.1',
  644. '74.0.3694.0',
  645. '74.0.3693.6',
  646. '73.0.3683.20',
  647. '72.0.3626.91',
  648. '74.0.3693.5',
  649. '74.0.3693.4',
  650. '74.0.3693.3',
  651. '74.0.3693.2',
  652. '73.0.3683.19',
  653. '74.0.3693.1',
  654. '74.0.3693.0',
  655. '73.0.3683.18',
  656. '72.0.3626.90',
  657. '74.0.3692.1',
  658. '74.0.3692.0',
  659. '73.0.3683.17',
  660. '72.0.3626.89',
  661. '74.0.3687.3',
  662. '74.0.3691.1',
  663. '74.0.3691.0',
  664. '73.0.3683.16',
  665. '72.0.3626.88',
  666. '72.0.3626.87',
  667. '73.0.3683.15',
  668. '74.0.3690.1',
  669. '74.0.3690.0',
  670. '73.0.3683.14',
  671. '72.0.3626.86',
  672. '73.0.3683.13',
  673. '73.0.3683.12',
  674. '74.0.3689.1',
  675. '74.0.3689.0',
  676. '73.0.3683.11',
  677. '72.0.3626.85',
  678. '73.0.3683.10',
  679. '72.0.3626.84',
  680. '73.0.3683.9',
  681. '74.0.3688.1',
  682. '74.0.3688.0',
  683. '73.0.3683.8',
  684. '72.0.3626.83',
  685. '74.0.3687.2',
  686. '74.0.3687.1',
  687. '74.0.3687.0',
  688. '73.0.3683.7',
  689. '72.0.3626.82',
  690. '74.0.3686.4',
  691. '72.0.3626.81',
  692. '74.0.3686.3',
  693. '74.0.3686.2',
  694. '74.0.3686.1',
  695. '74.0.3686.0',
  696. '73.0.3683.6',
  697. '72.0.3626.80',
  698. '74.0.3685.1',
  699. '74.0.3685.0',
  700. '73.0.3683.5',
  701. '72.0.3626.79',
  702. '74.0.3684.1',
  703. '74.0.3684.0',
  704. '73.0.3683.4',
  705. '72.0.3626.78',
  706. '72.0.3626.77',
  707. '73.0.3683.3',
  708. '73.0.3683.2',
  709. '72.0.3626.76',
  710. '73.0.3683.1',
  711. '73.0.3683.0',
  712. '72.0.3626.75',
  713. '71.0.3578.141',
  714. '73.0.3682.1',
  715. '73.0.3682.0',
  716. '72.0.3626.74',
  717. '71.0.3578.140',
  718. '73.0.3681.4',
  719. '73.0.3681.3',
  720. '73.0.3681.2',
  721. '73.0.3681.1',
  722. '73.0.3681.0',
  723. '72.0.3626.73',
  724. '71.0.3578.139',
  725. '72.0.3626.72',
  726. '72.0.3626.71',
  727. '73.0.3680.1',
  728. '73.0.3680.0',
  729. '72.0.3626.70',
  730. '71.0.3578.138',
  731. '73.0.3678.2',
  732. '73.0.3679.1',
  733. '73.0.3679.0',
  734. '72.0.3626.69',
  735. '71.0.3578.137',
  736. '73.0.3678.1',
  737. '73.0.3678.0',
  738. '71.0.3578.136',
  739. '73.0.3677.1',
  740. '73.0.3677.0',
  741. '72.0.3626.68',
  742. '72.0.3626.67',
  743. '71.0.3578.135',
  744. '73.0.3676.1',
  745. '73.0.3676.0',
  746. '73.0.3674.2',
  747. '72.0.3626.66',
  748. '71.0.3578.134',
  749. '73.0.3674.1',
  750. '73.0.3674.0',
  751. '72.0.3626.65',
  752. '71.0.3578.133',
  753. '73.0.3673.2',
  754. '73.0.3673.1',
  755. '73.0.3673.0',
  756. '72.0.3626.64',
  757. '71.0.3578.132',
  758. '72.0.3626.63',
  759. '72.0.3626.62',
  760. '72.0.3626.61',
  761. '72.0.3626.60',
  762. '73.0.3672.1',
  763. '73.0.3672.0',
  764. '72.0.3626.59',
  765. '71.0.3578.131',
  766. '73.0.3671.3',
  767. '73.0.3671.2',
  768. '73.0.3671.1',
  769. '73.0.3671.0',
  770. '72.0.3626.58',
  771. '71.0.3578.130',
  772. '73.0.3670.1',
  773. '73.0.3670.0',
  774. '72.0.3626.57',
  775. '71.0.3578.129',
  776. '73.0.3669.1',
  777. '73.0.3669.0',
  778. '72.0.3626.56',
  779. '71.0.3578.128',
  780. '73.0.3668.2',
  781. '73.0.3668.1',
  782. '73.0.3668.0',
  783. '72.0.3626.55',
  784. '71.0.3578.127',
  785. '73.0.3667.2',
  786. '73.0.3667.1',
  787. '73.0.3667.0',
  788. '72.0.3626.54',
  789. '71.0.3578.126',
  790. '73.0.3666.1',
  791. '73.0.3666.0',
  792. '72.0.3626.53',
  793. '71.0.3578.125',
  794. '73.0.3665.4',
  795. '73.0.3665.3',
  796. '72.0.3626.52',
  797. '73.0.3665.2',
  798. '73.0.3664.4',
  799. '73.0.3665.1',
  800. '73.0.3665.0',
  801. '72.0.3626.51',
  802. '71.0.3578.124',
  803. '72.0.3626.50',
  804. '73.0.3664.3',
  805. '73.0.3664.2',
  806. '73.0.3664.1',
  807. '73.0.3664.0',
  808. '73.0.3663.2',
  809. '72.0.3626.49',
  810. '71.0.3578.123',
  811. '73.0.3663.1',
  812. '73.0.3663.0',
  813. '72.0.3626.48',
  814. '71.0.3578.122',
  815. '73.0.3662.1',
  816. '73.0.3662.0',
  817. '72.0.3626.47',
  818. '71.0.3578.121',
  819. '73.0.3661.1',
  820. '72.0.3626.46',
  821. '73.0.3661.0',
  822. '72.0.3626.45',
  823. '71.0.3578.120',
  824. '73.0.3660.2',
  825. '73.0.3660.1',
  826. '73.0.3660.0',
  827. '72.0.3626.44',
  828. '71.0.3578.119',
  829. '73.0.3659.1',
  830. '73.0.3659.0',
  831. '72.0.3626.43',
  832. '71.0.3578.118',
  833. '73.0.3658.1',
  834. '73.0.3658.0',
  835. '72.0.3626.42',
  836. '71.0.3578.117',
  837. '73.0.3657.1',
  838. '73.0.3657.0',
  839. '72.0.3626.41',
  840. '71.0.3578.116',
  841. '73.0.3656.1',
  842. '73.0.3656.0',
  843. '72.0.3626.40',
  844. '71.0.3578.115',
  845. '73.0.3655.1',
  846. '73.0.3655.0',
  847. '72.0.3626.39',
  848. '71.0.3578.114',
  849. '73.0.3654.1',
  850. '73.0.3654.0',
  851. '72.0.3626.38',
  852. '71.0.3578.113',
  853. '73.0.3653.1',
  854. '73.0.3653.0',
  855. '72.0.3626.37',
  856. '71.0.3578.112',
  857. '73.0.3652.1',
  858. '73.0.3652.0',
  859. '72.0.3626.36',
  860. '71.0.3578.111',
  861. '73.0.3651.1',
  862. '73.0.3651.0',
  863. '72.0.3626.35',
  864. '71.0.3578.110',
  865. '73.0.3650.1',
  866. '73.0.3650.0',
  867. '72.0.3626.34',
  868. '71.0.3578.109',
  869. '73.0.3649.1',
  870. '73.0.3649.0',
  871. '72.0.3626.33',
  872. '71.0.3578.108',
  873. '73.0.3648.2',
  874. '73.0.3648.1',
  875. '73.0.3648.0',
  876. '72.0.3626.32',
  877. '71.0.3578.107',
  878. '73.0.3647.2',
  879. '73.0.3647.1',
  880. '73.0.3647.0',
  881. '72.0.3626.31',
  882. '71.0.3578.106',
  883. '73.0.3635.3',
  884. '73.0.3646.2',
  885. '73.0.3646.1',
  886. '73.0.3646.0',
  887. '72.0.3626.30',
  888. '71.0.3578.105',
  889. '72.0.3626.29',
  890. '73.0.3645.2',
  891. '73.0.3645.1',
  892. '73.0.3645.0',
  893. '72.0.3626.28',
  894. '71.0.3578.104',
  895. '72.0.3626.27',
  896. '72.0.3626.26',
  897. '72.0.3626.25',
  898. '72.0.3626.24',
  899. '73.0.3644.0',
  900. '73.0.3643.2',
  901. '72.0.3626.23',
  902. '71.0.3578.103',
  903. '73.0.3643.1',
  904. '73.0.3643.0',
  905. '72.0.3626.22',
  906. '71.0.3578.102',
  907. '73.0.3642.1',
  908. '73.0.3642.0',
  909. '72.0.3626.21',
  910. '71.0.3578.101',
  911. '73.0.3641.1',
  912. '73.0.3641.0',
  913. '72.0.3626.20',
  914. '71.0.3578.100',
  915. '72.0.3626.19',
  916. '73.0.3640.1',
  917. '73.0.3640.0',
  918. '72.0.3626.18',
  919. '73.0.3639.1',
  920. '71.0.3578.99',
  921. '73.0.3639.0',
  922. '72.0.3626.17',
  923. '73.0.3638.2',
  924. '72.0.3626.16',
  925. '73.0.3638.1',
  926. '73.0.3638.0',
  927. '72.0.3626.15',
  928. '71.0.3578.98',
  929. '73.0.3635.2',
  930. '71.0.3578.97',
  931. '73.0.3637.1',
  932. '73.0.3637.0',
  933. '72.0.3626.14',
  934. '71.0.3578.96',
  935. '71.0.3578.95',
  936. '72.0.3626.13',
  937. '71.0.3578.94',
  938. '73.0.3636.2',
  939. '71.0.3578.93',
  940. '73.0.3636.1',
  941. '73.0.3636.0',
  942. '72.0.3626.12',
  943. '71.0.3578.92',
  944. '73.0.3635.1',
  945. '73.0.3635.0',
  946. '72.0.3626.11',
  947. '71.0.3578.91',
  948. '73.0.3634.2',
  949. '73.0.3634.1',
  950. '73.0.3634.0',
  951. '72.0.3626.10',
  952. '71.0.3578.90',
  953. '71.0.3578.89',
  954. '73.0.3633.2',
  955. '73.0.3633.1',
  956. '73.0.3633.0',
  957. '72.0.3610.4',
  958. '72.0.3626.9',
  959. '71.0.3578.88',
  960. '73.0.3632.5',
  961. '73.0.3632.4',
  962. '73.0.3632.3',
  963. '73.0.3632.2',
  964. '73.0.3632.1',
  965. '73.0.3632.0',
  966. '72.0.3626.8',
  967. '71.0.3578.87',
  968. '73.0.3631.2',
  969. '73.0.3631.1',
  970. '73.0.3631.0',
  971. '72.0.3626.7',
  972. '71.0.3578.86',
  973. '72.0.3626.6',
  974. '73.0.3630.1',
  975. '73.0.3630.0',
  976. '72.0.3626.5',
  977. '71.0.3578.85',
  978. '72.0.3626.4',
  979. '73.0.3628.3',
  980. '73.0.3628.2',
  981. '73.0.3629.1',
  982. '73.0.3629.0',
  983. '72.0.3626.3',
  984. '71.0.3578.84',
  985. '73.0.3628.1',
  986. '73.0.3628.0',
  987. '71.0.3578.83',
  988. '73.0.3627.1',
  989. '73.0.3627.0',
  990. '72.0.3626.2',
  991. '71.0.3578.82',
  992. '71.0.3578.81',
  993. '71.0.3578.80',
  994. '72.0.3626.1',
  995. '72.0.3626.0',
  996. '71.0.3578.79',
  997. '70.0.3538.124',
  998. '71.0.3578.78',
  999. '72.0.3623.4',
  1000. '72.0.3625.2',
  1001. '72.0.3625.1',
  1002. '72.0.3625.0',
  1003. '71.0.3578.77',
  1004. '70.0.3538.123',
  1005. '72.0.3624.4',
  1006. '72.0.3624.3',
  1007. '72.0.3624.2',
  1008. '71.0.3578.76',
  1009. '72.0.3624.1',
  1010. '72.0.3624.0',
  1011. '72.0.3623.3',
  1012. '71.0.3578.75',
  1013. '70.0.3538.122',
  1014. '71.0.3578.74',
  1015. '72.0.3623.2',
  1016. '72.0.3610.3',
  1017. '72.0.3623.1',
  1018. '72.0.3623.0',
  1019. '72.0.3622.3',
  1020. '72.0.3622.2',
  1021. '71.0.3578.73',
  1022. '70.0.3538.121',
  1023. '72.0.3622.1',
  1024. '72.0.3622.0',
  1025. '71.0.3578.72',
  1026. '70.0.3538.120',
  1027. '72.0.3621.1',
  1028. '72.0.3621.0',
  1029. '71.0.3578.71',
  1030. '70.0.3538.119',
  1031. '72.0.3620.1',
  1032. '72.0.3620.0',
  1033. '71.0.3578.70',
  1034. '70.0.3538.118',
  1035. '71.0.3578.69',
  1036. '72.0.3619.1',
  1037. '72.0.3619.0',
  1038. '71.0.3578.68',
  1039. '70.0.3538.117',
  1040. '71.0.3578.67',
  1041. '72.0.3618.1',
  1042. '72.0.3618.0',
  1043. '71.0.3578.66',
  1044. '70.0.3538.116',
  1045. '72.0.3617.1',
  1046. '72.0.3617.0',
  1047. '71.0.3578.65',
  1048. '70.0.3538.115',
  1049. '72.0.3602.3',
  1050. '71.0.3578.64',
  1051. '72.0.3616.1',
  1052. '72.0.3616.0',
  1053. '71.0.3578.63',
  1054. '70.0.3538.114',
  1055. '71.0.3578.62',
  1056. '72.0.3615.1',
  1057. '72.0.3615.0',
  1058. '71.0.3578.61',
  1059. '70.0.3538.113',
  1060. '72.0.3614.1',
  1061. '72.0.3614.0',
  1062. '71.0.3578.60',
  1063. '70.0.3538.112',
  1064. '72.0.3613.1',
  1065. '72.0.3613.0',
  1066. '71.0.3578.59',
  1067. '70.0.3538.111',
  1068. '72.0.3612.2',
  1069. '72.0.3612.1',
  1070. '72.0.3612.0',
  1071. '70.0.3538.110',
  1072. '71.0.3578.58',
  1073. '70.0.3538.109',
  1074. '72.0.3611.2',
  1075. '72.0.3611.1',
  1076. '72.0.3611.0',
  1077. '71.0.3578.57',
  1078. '70.0.3538.108',
  1079. '72.0.3610.2',
  1080. '71.0.3578.56',
  1081. '71.0.3578.55',
  1082. '72.0.3610.1',
  1083. '72.0.3610.0',
  1084. '71.0.3578.54',
  1085. '70.0.3538.107',
  1086. '71.0.3578.53',
  1087. '72.0.3609.3',
  1088. '71.0.3578.52',
  1089. '72.0.3609.2',
  1090. '71.0.3578.51',
  1091. '72.0.3608.5',
  1092. '72.0.3609.1',
  1093. '72.0.3609.0',
  1094. '71.0.3578.50',
  1095. '70.0.3538.106',
  1096. '72.0.3608.4',
  1097. '72.0.3608.3',
  1098. '72.0.3608.2',
  1099. '71.0.3578.49',
  1100. '72.0.3608.1',
  1101. '72.0.3608.0',
  1102. '70.0.3538.105',
  1103. '71.0.3578.48',
  1104. '72.0.3607.1',
  1105. '72.0.3607.0',
  1106. '71.0.3578.47',
  1107. '70.0.3538.104',
  1108. '72.0.3606.2',
  1109. '72.0.3606.1',
  1110. '72.0.3606.0',
  1111. '71.0.3578.46',
  1112. '70.0.3538.103',
  1113. '70.0.3538.102',
  1114. '72.0.3605.3',
  1115. '72.0.3605.2',
  1116. '72.0.3605.1',
  1117. '72.0.3605.0',
  1118. '71.0.3578.45',
  1119. '70.0.3538.101',
  1120. '71.0.3578.44',
  1121. '71.0.3578.43',
  1122. '70.0.3538.100',
  1123. '70.0.3538.99',
  1124. '71.0.3578.42',
  1125. '72.0.3604.1',
  1126. '72.0.3604.0',
  1127. '71.0.3578.41',
  1128. '70.0.3538.98',
  1129. '71.0.3578.40',
  1130. '72.0.3603.2',
  1131. '72.0.3603.1',
  1132. '72.0.3603.0',
  1133. '71.0.3578.39',
  1134. '70.0.3538.97',
  1135. '72.0.3602.2',
  1136. '71.0.3578.38',
  1137. '71.0.3578.37',
  1138. '72.0.3602.1',
  1139. '72.0.3602.0',
  1140. '71.0.3578.36',
  1141. '70.0.3538.96',
  1142. '72.0.3601.1',
  1143. '72.0.3601.0',
  1144. '71.0.3578.35',
  1145. '70.0.3538.95',
  1146. '72.0.3600.1',
  1147. '72.0.3600.0',
  1148. '71.0.3578.34',
  1149. '70.0.3538.94',
  1150. '72.0.3599.3',
  1151. '72.0.3599.2',
  1152. '72.0.3599.1',
  1153. '72.0.3599.0',
  1154. '71.0.3578.33',
  1155. '70.0.3538.93',
  1156. '72.0.3598.1',
  1157. '72.0.3598.0',
  1158. '71.0.3578.32',
  1159. '70.0.3538.87',
  1160. '72.0.3597.1',
  1161. '72.0.3597.0',
  1162. '72.0.3596.2',
  1163. '71.0.3578.31',
  1164. '70.0.3538.86',
  1165. '71.0.3578.30',
  1166. '71.0.3578.29',
  1167. '72.0.3596.1',
  1168. '72.0.3596.0',
  1169. '71.0.3578.28',
  1170. '70.0.3538.85',
  1171. '72.0.3595.2',
  1172. '72.0.3591.3',
  1173. '72.0.3595.1',
  1174. '72.0.3595.0',
  1175. '71.0.3578.27',
  1176. '70.0.3538.84',
  1177. '72.0.3594.1',
  1178. '72.0.3594.0',
  1179. '71.0.3578.26',
  1180. '70.0.3538.83',
  1181. '72.0.3593.2',
  1182. '72.0.3593.1',
  1183. '72.0.3593.0',
  1184. '71.0.3578.25',
  1185. '70.0.3538.82',
  1186. '72.0.3589.3',
  1187. '72.0.3592.2',
  1188. '72.0.3592.1',
  1189. '72.0.3592.0',
  1190. '71.0.3578.24',
  1191. '72.0.3589.2',
  1192. '70.0.3538.81',
  1193. '70.0.3538.80',
  1194. '72.0.3591.2',
  1195. '72.0.3591.1',
  1196. '72.0.3591.0',
  1197. '71.0.3578.23',
  1198. '70.0.3538.79',
  1199. '71.0.3578.22',
  1200. '72.0.3590.1',
  1201. '72.0.3590.0',
  1202. '71.0.3578.21',
  1203. '70.0.3538.78',
  1204. '70.0.3538.77',
  1205. '72.0.3589.1',
  1206. '72.0.3589.0',
  1207. '71.0.3578.20',
  1208. '70.0.3538.76',
  1209. '71.0.3578.19',
  1210. '70.0.3538.75',
  1211. '72.0.3588.1',
  1212. '72.0.3588.0',
  1213. '71.0.3578.18',
  1214. '70.0.3538.74',
  1215. '72.0.3586.2',
  1216. '72.0.3587.0',
  1217. '71.0.3578.17',
  1218. '70.0.3538.73',
  1219. '72.0.3586.1',
  1220. '72.0.3586.0',
  1221. '71.0.3578.16',
  1222. '70.0.3538.72',
  1223. '72.0.3585.1',
  1224. '72.0.3585.0',
  1225. '71.0.3578.15',
  1226. '70.0.3538.71',
  1227. '71.0.3578.14',
  1228. '72.0.3584.1',
  1229. '72.0.3584.0',
  1230. '71.0.3578.13',
  1231. '70.0.3538.70',
  1232. '72.0.3583.2',
  1233. '71.0.3578.12',
  1234. '72.0.3583.1',
  1235. '72.0.3583.0',
  1236. '71.0.3578.11',
  1237. '70.0.3538.69',
  1238. '71.0.3578.10',
  1239. '72.0.3582.0',
  1240. '72.0.3581.4',
  1241. '71.0.3578.9',
  1242. '70.0.3538.67',
  1243. '72.0.3581.3',
  1244. '72.0.3581.2',
  1245. '72.0.3581.1',
  1246. '72.0.3581.0',
  1247. '71.0.3578.8',
  1248. '70.0.3538.66',
  1249. '72.0.3580.1',
  1250. '72.0.3580.0',
  1251. '71.0.3578.7',
  1252. '70.0.3538.65',
  1253. '71.0.3578.6',
  1254. '72.0.3579.1',
  1255. '72.0.3579.0',
  1256. '71.0.3578.5',
  1257. '70.0.3538.64',
  1258. '71.0.3578.4',
  1259. '71.0.3578.3',
  1260. '71.0.3578.2',
  1261. '71.0.3578.1',
  1262. '71.0.3578.0',
  1263. '70.0.3538.63',
  1264. '69.0.3497.128',
  1265. '70.0.3538.62',
  1266. '70.0.3538.61',
  1267. '70.0.3538.60',
  1268. '70.0.3538.59',
  1269. '71.0.3577.1',
  1270. '71.0.3577.0',
  1271. '70.0.3538.58',
  1272. '69.0.3497.127',
  1273. '71.0.3576.2',
  1274. '71.0.3576.1',
  1275. '71.0.3576.0',
  1276. '70.0.3538.57',
  1277. '70.0.3538.56',
  1278. '71.0.3575.2',
  1279. '70.0.3538.55',
  1280. '69.0.3497.126',
  1281. '70.0.3538.54',
  1282. '71.0.3575.1',
  1283. '71.0.3575.0',
  1284. '71.0.3574.1',
  1285. '71.0.3574.0',
  1286. '70.0.3538.53',
  1287. '69.0.3497.125',
  1288. '70.0.3538.52',
  1289. '71.0.3573.1',
  1290. '71.0.3573.0',
  1291. '70.0.3538.51',
  1292. '69.0.3497.124',
  1293. '71.0.3572.1',
  1294. '71.0.3572.0',
  1295. '70.0.3538.50',
  1296. '69.0.3497.123',
  1297. '71.0.3571.2',
  1298. '70.0.3538.49',
  1299. '69.0.3497.122',
  1300. '71.0.3571.1',
  1301. '71.0.3571.0',
  1302. '70.0.3538.48',
  1303. '69.0.3497.121',
  1304. '71.0.3570.1',
  1305. '71.0.3570.0',
  1306. '70.0.3538.47',
  1307. '69.0.3497.120',
  1308. '71.0.3568.2',
  1309. '71.0.3569.1',
  1310. '71.0.3569.0',
  1311. '70.0.3538.46',
  1312. '69.0.3497.119',
  1313. '70.0.3538.45',
  1314. '71.0.3568.1',
  1315. '71.0.3568.0',
  1316. '70.0.3538.44',
  1317. '69.0.3497.118',
  1318. '70.0.3538.43',
  1319. '70.0.3538.42',
  1320. '71.0.3567.1',
  1321. '71.0.3567.0',
  1322. '70.0.3538.41',
  1323. '69.0.3497.117',
  1324. '71.0.3566.1',
  1325. '71.0.3566.0',
  1326. '70.0.3538.40',
  1327. '69.0.3497.116',
  1328. '71.0.3565.1',
  1329. '71.0.3565.0',
  1330. '70.0.3538.39',
  1331. '69.0.3497.115',
  1332. '71.0.3564.1',
  1333. '71.0.3564.0',
  1334. '70.0.3538.38',
  1335. '69.0.3497.114',
  1336. '71.0.3563.0',
  1337. '71.0.3562.2',
  1338. '70.0.3538.37',
  1339. '69.0.3497.113',
  1340. '70.0.3538.36',
  1341. '70.0.3538.35',
  1342. '71.0.3562.1',
  1343. '71.0.3562.0',
  1344. '70.0.3538.34',
  1345. '69.0.3497.112',
  1346. '70.0.3538.33',
  1347. '71.0.3561.1',
  1348. '71.0.3561.0',
  1349. '70.0.3538.32',
  1350. '69.0.3497.111',
  1351. '71.0.3559.6',
  1352. '71.0.3560.1',
  1353. '71.0.3560.0',
  1354. '71.0.3559.5',
  1355. '71.0.3559.4',
  1356. '70.0.3538.31',
  1357. '69.0.3497.110',
  1358. '71.0.3559.3',
  1359. '70.0.3538.30',
  1360. '69.0.3497.109',
  1361. '71.0.3559.2',
  1362. '71.0.3559.1',
  1363. '71.0.3559.0',
  1364. '70.0.3538.29',
  1365. '69.0.3497.108',
  1366. '71.0.3558.2',
  1367. '71.0.3558.1',
  1368. '71.0.3558.0',
  1369. '70.0.3538.28',
  1370. '69.0.3497.107',
  1371. '71.0.3557.2',
  1372. '71.0.3557.1',
  1373. '71.0.3557.0',
  1374. '70.0.3538.27',
  1375. '69.0.3497.106',
  1376. '71.0.3554.4',
  1377. '70.0.3538.26',
  1378. '71.0.3556.1',
  1379. '71.0.3556.0',
  1380. '70.0.3538.25',
  1381. '71.0.3554.3',
  1382. '69.0.3497.105',
  1383. '71.0.3554.2',
  1384. '70.0.3538.24',
  1385. '69.0.3497.104',
  1386. '71.0.3555.2',
  1387. '70.0.3538.23',
  1388. '71.0.3555.1',
  1389. '71.0.3555.0',
  1390. '70.0.3538.22',
  1391. '69.0.3497.103',
  1392. '71.0.3554.1',
  1393. '71.0.3554.0',
  1394. '70.0.3538.21',
  1395. '69.0.3497.102',
  1396. '71.0.3553.3',
  1397. '70.0.3538.20',
  1398. '69.0.3497.101',
  1399. '71.0.3553.2',
  1400. '69.0.3497.100',
  1401. '71.0.3553.1',
  1402. '71.0.3553.0',
  1403. '70.0.3538.19',
  1404. '69.0.3497.99',
  1405. '69.0.3497.98',
  1406. '69.0.3497.97',
  1407. '71.0.3552.6',
  1408. '71.0.3552.5',
  1409. '71.0.3552.4',
  1410. '71.0.3552.3',
  1411. '71.0.3552.2',
  1412. '71.0.3552.1',
  1413. '71.0.3552.0',
  1414. '70.0.3538.18',
  1415. '69.0.3497.96',
  1416. '71.0.3551.3',
  1417. '71.0.3551.2',
  1418. '71.0.3551.1',
  1419. '71.0.3551.0',
  1420. '70.0.3538.17',
  1421. '69.0.3497.95',
  1422. '71.0.3550.3',
  1423. '71.0.3550.2',
  1424. '71.0.3550.1',
  1425. '71.0.3550.0',
  1426. '70.0.3538.16',
  1427. '69.0.3497.94',
  1428. '71.0.3549.1',
  1429. '71.0.3549.0',
  1430. '70.0.3538.15',
  1431. '69.0.3497.93',
  1432. '69.0.3497.92',
  1433. '71.0.3548.1',
  1434. '71.0.3548.0',
  1435. '70.0.3538.14',
  1436. '69.0.3497.91',
  1437. '71.0.3547.1',
  1438. '71.0.3547.0',
  1439. '70.0.3538.13',
  1440. '69.0.3497.90',
  1441. '71.0.3546.2',
  1442. '69.0.3497.89',
  1443. '71.0.3546.1',
  1444. '71.0.3546.0',
  1445. '70.0.3538.12',
  1446. '69.0.3497.88',
  1447. '71.0.3545.4',
  1448. '71.0.3545.3',
  1449. '71.0.3545.2',
  1450. '71.0.3545.1',
  1451. '71.0.3545.0',
  1452. '70.0.3538.11',
  1453. '69.0.3497.87',
  1454. '71.0.3544.5',
  1455. '71.0.3544.4',
  1456. '71.0.3544.3',
  1457. '71.0.3544.2',
  1458. '71.0.3544.1',
  1459. '71.0.3544.0',
  1460. '69.0.3497.86',
  1461. '70.0.3538.10',
  1462. '69.0.3497.85',
  1463. '70.0.3538.9',
  1464. '69.0.3497.84',
  1465. '71.0.3543.4',
  1466. '70.0.3538.8',
  1467. '71.0.3543.3',
  1468. '71.0.3543.2',
  1469. '71.0.3543.1',
  1470. '71.0.3543.0',
  1471. '70.0.3538.7',
  1472. '69.0.3497.83',
  1473. '71.0.3542.2',
  1474. '71.0.3542.1',
  1475. '71.0.3542.0',
  1476. '70.0.3538.6',
  1477. '69.0.3497.82',
  1478. '69.0.3497.81',
  1479. '71.0.3541.1',
  1480. '71.0.3541.0',
  1481. '70.0.3538.5',
  1482. '69.0.3497.80',
  1483. '71.0.3540.1',
  1484. '71.0.3540.0',
  1485. '70.0.3538.4',
  1486. '69.0.3497.79',
  1487. '70.0.3538.3',
  1488. '71.0.3539.1',
  1489. '71.0.3539.0',
  1490. '69.0.3497.78',
  1491. '68.0.3440.134',
  1492. '69.0.3497.77',
  1493. '70.0.3538.2',
  1494. '70.0.3538.1',
  1495. '70.0.3538.0',
  1496. '69.0.3497.76',
  1497. '68.0.3440.133',
  1498. '69.0.3497.75',
  1499. '70.0.3537.2',
  1500. '70.0.3537.1',
  1501. '70.0.3537.0',
  1502. '69.0.3497.74',
  1503. '68.0.3440.132',
  1504. '70.0.3536.0',
  1505. '70.0.3535.5',
  1506. '70.0.3535.4',
  1507. '70.0.3535.3',
  1508. '69.0.3497.73',
  1509. '68.0.3440.131',
  1510. '70.0.3532.8',
  1511. '70.0.3532.7',
  1512. '69.0.3497.72',
  1513. '69.0.3497.71',
  1514. '70.0.3535.2',
  1515. '70.0.3535.1',
  1516. '70.0.3535.0',
  1517. '69.0.3497.70',
  1518. '68.0.3440.130',
  1519. '69.0.3497.69',
  1520. '68.0.3440.129',
  1521. '70.0.3534.4',
  1522. '70.0.3534.3',
  1523. '70.0.3534.2',
  1524. '70.0.3534.1',
  1525. '70.0.3534.0',
  1526. '69.0.3497.68',
  1527. '68.0.3440.128',
  1528. '70.0.3533.2',
  1529. '70.0.3533.1',
  1530. '70.0.3533.0',
  1531. '69.0.3497.67',
  1532. '68.0.3440.127',
  1533. '70.0.3532.6',
  1534. '70.0.3532.5',
  1535. '70.0.3532.4',
  1536. '69.0.3497.66',
  1537. '68.0.3440.126',
  1538. '70.0.3532.3',
  1539. '70.0.3532.2',
  1540. '70.0.3532.1',
  1541. '69.0.3497.60',
  1542. '69.0.3497.65',
  1543. '69.0.3497.64',
  1544. '70.0.3532.0',
  1545. '70.0.3531.0',
  1546. '70.0.3530.4',
  1547. '70.0.3530.3',
  1548. '70.0.3530.2',
  1549. '69.0.3497.58',
  1550. '68.0.3440.125',
  1551. '69.0.3497.57',
  1552. '69.0.3497.56',
  1553. '69.0.3497.55',
  1554. '69.0.3497.54',
  1555. '70.0.3530.1',
  1556. '70.0.3530.0',
  1557. '69.0.3497.53',
  1558. '68.0.3440.124',
  1559. '69.0.3497.52',
  1560. '70.0.3529.3',
  1561. '70.0.3529.2',
  1562. '70.0.3529.1',
  1563. '70.0.3529.0',
  1564. '69.0.3497.51',
  1565. '70.0.3528.4',
  1566. '68.0.3440.123',
  1567. '70.0.3528.3',
  1568. '70.0.3528.2',
  1569. '70.0.3528.1',
  1570. '70.0.3528.0',
  1571. '69.0.3497.50',
  1572. '68.0.3440.122',
  1573. '70.0.3527.1',
  1574. '70.0.3527.0',
  1575. '69.0.3497.49',
  1576. '68.0.3440.121',
  1577. '70.0.3526.1',
  1578. '70.0.3526.0',
  1579. '68.0.3440.120',
  1580. '69.0.3497.48',
  1581. '69.0.3497.47',
  1582. '68.0.3440.119',
  1583. '68.0.3440.118',
  1584. '70.0.3525.5',
  1585. '70.0.3525.4',
  1586. '70.0.3525.3',
  1587. '68.0.3440.117',
  1588. '69.0.3497.46',
  1589. '70.0.3525.2',
  1590. '70.0.3525.1',
  1591. '70.0.3525.0',
  1592. '69.0.3497.45',
  1593. '68.0.3440.116',
  1594. '70.0.3524.4',
  1595. '70.0.3524.3',
  1596. '69.0.3497.44',
  1597. '70.0.3524.2',
  1598. '70.0.3524.1',
  1599. '70.0.3524.0',
  1600. '70.0.3523.2',
  1601. '69.0.3497.43',
  1602. '68.0.3440.115',
  1603. '70.0.3505.9',
  1604. '69.0.3497.42',
  1605. '70.0.3505.8',
  1606. '70.0.3523.1',
  1607. '70.0.3523.0',
  1608. '69.0.3497.41',
  1609. '68.0.3440.114',
  1610. '70.0.3505.7',
  1611. '69.0.3497.40',
  1612. '70.0.3522.1',
  1613. '70.0.3522.0',
  1614. '70.0.3521.2',
  1615. '69.0.3497.39',
  1616. '68.0.3440.113',
  1617. '70.0.3505.6',
  1618. '70.0.3521.1',
  1619. '70.0.3521.0',
  1620. '69.0.3497.38',
  1621. '68.0.3440.112',
  1622. '70.0.3520.1',
  1623. '70.0.3520.0',
  1624. '69.0.3497.37',
  1625. '68.0.3440.111',
  1626. '70.0.3519.3',
  1627. '70.0.3519.2',
  1628. '70.0.3519.1',
  1629. '70.0.3519.0',
  1630. '69.0.3497.36',
  1631. '68.0.3440.110',
  1632. '70.0.3518.1',
  1633. '70.0.3518.0',
  1634. '69.0.3497.35',
  1635. '69.0.3497.34',
  1636. '68.0.3440.109',
  1637. '70.0.3517.1',
  1638. '70.0.3517.0',
  1639. '69.0.3497.33',
  1640. '68.0.3440.108',
  1641. '69.0.3497.32',
  1642. '70.0.3516.3',
  1643. '70.0.3516.2',
  1644. '70.0.3516.1',
  1645. '70.0.3516.0',
  1646. '69.0.3497.31',
  1647. '68.0.3440.107',
  1648. '70.0.3515.4',
  1649. '68.0.3440.106',
  1650. '70.0.3515.3',
  1651. '70.0.3515.2',
  1652. '70.0.3515.1',
  1653. '70.0.3515.0',
  1654. '69.0.3497.30',
  1655. '68.0.3440.105',
  1656. '68.0.3440.104',
  1657. '70.0.3514.2',
  1658. '70.0.3514.1',
  1659. '70.0.3514.0',
  1660. '69.0.3497.29',
  1661. '68.0.3440.103',
  1662. '70.0.3513.1',
  1663. '70.0.3513.0',
  1664. '69.0.3497.28',
  1665. )
  1666. return _USER_AGENT_TPL % random.choice(_CHROME_VERSIONS)
  1667. std_headers = {
  1668. 'User-Agent': random_user_agent(),
  1669. 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
  1670. 'Accept-Language': 'en-us,en;q=0.5',
  1671. }
  1672. USER_AGENTS = {
  1673. 'Safari': 'Mozilla/5.0 (X11; Linux x86_64; rv:10.0) AppleWebKit/533.20.25 (KHTML, like Gecko) Version/5.0.4 Safari/533.20.27',
  1674. }
  1675. NO_DEFAULT = object()
  1676. IDENTITY = lambda x: x
  1677. ENGLISH_MONTH_NAMES = [
  1678. 'January', 'February', 'March', 'April', 'May', 'June',
  1679. 'July', 'August', 'September', 'October', 'November', 'December']
  1680. MONTH_NAMES = {
  1681. 'en': ENGLISH_MONTH_NAMES,
  1682. 'fr': [
  1683. 'janvier', 'février', 'mars', 'avril', 'mai', 'juin',
  1684. 'juillet', 'août', 'septembre', 'octobre', 'novembre', 'décembre'],
  1685. }
  1686. # Timezone names for RFC2822 obs-zone
  1687. # From https://github.com/python/cpython/blob/3.11/Lib/email/_parseaddr.py#L36-L42
  1688. TIMEZONE_NAMES = {
  1689. 'UT': 0, 'UTC': 0, 'GMT': 0, 'Z': 0,
  1690. 'AST': -4, 'ADT': -3, # Atlantic (used in Canada)
  1691. 'EST': -5, 'EDT': -4, # Eastern
  1692. 'CST': -6, 'CDT': -5, # Central
  1693. 'MST': -7, 'MDT': -6, # Mountain
  1694. 'PST': -8, 'PDT': -7 # Pacific
  1695. }
  1696. KNOWN_EXTENSIONS = (
  1697. 'mp4', 'm4a', 'm4p', 'm4b', 'm4r', 'm4v', 'aac',
  1698. 'flv', 'f4v', 'f4a', 'f4b',
  1699. 'webm', 'ogg', 'ogv', 'oga', 'ogx', 'spx', 'opus',
  1700. 'mkv', 'mka', 'mk3d',
  1701. 'avi', 'divx',
  1702. 'mov',
  1703. 'asf', 'wmv', 'wma',
  1704. '3gp', '3g2',
  1705. 'mp3',
  1706. 'flac',
  1707. 'ape',
  1708. 'wav',
  1709. 'f4f', 'f4m', 'm3u8', 'smil')
  1710. # needed for sanitizing filenames in restricted mode
  1711. ACCENT_CHARS = dict(zip('ÂÃÄÀÁÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖŐØŒÙÚÛÜŰÝÞßàáâãäåæçèéêëìíîïðñòóôõöőøœùúûüűýþÿ',
  1712. itertools.chain('AAAAAA', ['AE'], 'CEEEEIIIIDNOOOOOOO', ['OE'], 'UUUUUY', ['TH', 'ss'],
  1713. 'aaaaaa', ['ae'], 'ceeeeiiiionooooooo', ['oe'], 'uuuuuy', ['th'], 'y')))
  1714. DATE_FORMATS = (
  1715. '%d %B %Y',
  1716. '%d %b %Y',
  1717. '%B %d %Y',
  1718. '%B %dst %Y',
  1719. '%B %dnd %Y',
  1720. '%B %drd %Y',
  1721. '%B %dth %Y',
  1722. '%b %d %Y',
  1723. '%b %dst %Y',
  1724. '%b %dnd %Y',
  1725. '%b %drd %Y',
  1726. '%b %dth %Y',
  1727. '%b %dst %Y %I:%M',
  1728. '%b %dnd %Y %I:%M',
  1729. '%b %drd %Y %I:%M',
  1730. '%b %dth %Y %I:%M',
  1731. '%Y %m %d',
  1732. '%Y-%m-%d',
  1733. '%Y.%m.%d.',
  1734. '%Y/%m/%d',
  1735. '%Y/%m/%d %H:%M',
  1736. '%Y/%m/%d %H:%M:%S',
  1737. '%Y%m%d%H%M',
  1738. '%Y%m%d%H%M%S',
  1739. '%Y%m%d',
  1740. '%Y-%m-%d %H:%M',
  1741. '%Y-%m-%d %H:%M:%S',
  1742. '%Y-%m-%d %H:%M:%S.%f',
  1743. '%Y-%m-%d %H:%M:%S:%f',
  1744. '%d.%m.%Y %H:%M',
  1745. '%d.%m.%Y %H.%M',
  1746. '%Y-%m-%dT%H:%M:%SZ',
  1747. '%Y-%m-%dT%H:%M:%S.%fZ',
  1748. '%Y-%m-%dT%H:%M:%S.%f0Z',
  1749. '%Y-%m-%dT%H:%M:%S',
  1750. '%Y-%m-%dT%H:%M:%S.%f',
  1751. '%Y-%m-%dT%H:%M',
  1752. '%b %d %Y at %H:%M',
  1753. '%b %d %Y at %H:%M:%S',
  1754. '%B %d %Y at %H:%M',
  1755. '%B %d %Y at %H:%M:%S',
  1756. '%H:%M %d-%b-%Y',
  1757. )
  1758. DATE_FORMATS_DAY_FIRST = list(DATE_FORMATS)
  1759. DATE_FORMATS_DAY_FIRST.extend([
  1760. '%d-%m-%Y',
  1761. '%d.%m.%Y',
  1762. '%d.%m.%y',
  1763. '%d/%m/%Y',
  1764. '%d/%m/%y',
  1765. '%d/%m/%Y %H:%M:%S',
  1766. '%d-%m-%Y %H:%M',
  1767. ])
  1768. DATE_FORMATS_MONTH_FIRST = list(DATE_FORMATS)
  1769. DATE_FORMATS_MONTH_FIRST.extend([
  1770. '%m-%d-%Y',
  1771. '%m.%d.%Y',
  1772. '%m/%d/%Y',
  1773. '%m/%d/%y',
  1774. '%m/%d/%Y %H:%M:%S',
  1775. ])
  1776. PACKED_CODES_RE = r"}\('(.+)',(\d+),(\d+),'([^']+)'\.split\('\|'\)"
  1777. JSON_LD_RE = r'(?is)<script[^>]+type=(["\']?)application/ld\+json\1[^>]*>(?P<json_ld>.+?)</script>'
  1778. def preferredencoding():
  1779. """Get preferred encoding.
  1780. Returns the best encoding scheme for the system, based on
  1781. locale.getpreferredencoding() and some further tweaks.
  1782. """
  1783. try:
  1784. pref = locale.getpreferredencoding()
  1785. 'TEST'.encode(pref)
  1786. except Exception:
  1787. pref = 'UTF-8'
  1788. return pref
  1789. def write_json_file(obj, fn):
  1790. """ Encode obj as JSON and write it to fn, atomically if possible """
  1791. fn = encodeFilename(fn)
  1792. if sys.version_info < (3, 0) and sys.platform != 'win32':
  1793. encoding = get_filesystem_encoding()
  1794. # os.path.basename returns a bytes object, but NamedTemporaryFile
  1795. # will fail if the filename contains non-ascii characters unless we
  1796. # use a unicode object
  1797. path_basename = lambda f: os.path.basename(f).decode(encoding)
  1798. # the same for os.path.dirname
  1799. path_dirname = lambda f: os.path.dirname(f).decode(encoding)
  1800. else:
  1801. path_basename = os.path.basename
  1802. path_dirname = os.path.dirname
  1803. args = {
  1804. 'suffix': '.tmp',
  1805. 'prefix': path_basename(fn) + '.',
  1806. 'dir': path_dirname(fn),
  1807. 'delete': False,
  1808. }
  1809. # In Python 2.x, json.dump expects a bytestream.
  1810. # In Python 3.x, it writes to a character stream
  1811. if sys.version_info < (3, 0):
  1812. args['mode'] = 'wb'
  1813. else:
  1814. args.update({
  1815. 'mode': 'w',
  1816. 'encoding': 'utf-8',
  1817. })
  1818. tf = tempfile.NamedTemporaryFile(**compat_kwargs(args))
  1819. try:
  1820. with tf:
  1821. json.dump(obj, tf)
  1822. if sys.platform == 'win32':
  1823. # Need to remove existing file on Windows, else os.rename raises
  1824. # WindowsError or FileExistsError.
  1825. try:
  1826. os.unlink(fn)
  1827. except OSError:
  1828. pass
  1829. try:
  1830. mask = os.umask(0)
  1831. os.umask(mask)
  1832. os.chmod(tf.name, 0o666 & ~mask)
  1833. except OSError:
  1834. pass
  1835. os.rename(tf.name, fn)
  1836. except Exception:
  1837. try:
  1838. os.remove(tf.name)
  1839. except OSError:
  1840. pass
  1841. raise
  1842. if sys.version_info >= (2, 7):
  1843. def find_xpath_attr(node, xpath, key, val=None):
  1844. """ Find the xpath xpath[@key=val] """
  1845. assert re.match(r'^[a-zA-Z_-]+$', key)
  1846. expr = xpath + ('[@%s]' % key if val is None else "[@%s='%s']" % (key, val))
  1847. return node.find(expr)
  1848. else:
  1849. def find_xpath_attr(node, xpath, key, val=None):
  1850. for f in node.findall(compat_xpath(xpath)):
  1851. if key not in f.attrib:
  1852. continue
  1853. if val is None or f.attrib.get(key) == val:
  1854. return f
  1855. return None
  1856. # On python2.6 the xml.etree.ElementTree.Element methods don't support
  1857. # the namespace parameter
  1858. def xpath_with_ns(path, ns_map):
  1859. components = [c.split(':') for c in path.split('/')]
  1860. replaced = []
  1861. for c in components:
  1862. if len(c) == 1:
  1863. replaced.append(c[0])
  1864. else:
  1865. ns, tag = c
  1866. replaced.append('{%s}%s' % (ns_map[ns], tag))
  1867. return '/'.join(replaced)
  1868. def xpath_element(node, xpath, name=None, fatal=False, default=NO_DEFAULT):
  1869. def _find_xpath(xpath):
  1870. return node.find(compat_xpath(xpath))
  1871. if isinstance(xpath, compat_basestring):
  1872. n = _find_xpath(xpath)
  1873. else:
  1874. for xp in xpath:
  1875. n = _find_xpath(xp)
  1876. if n is not None:
  1877. break
  1878. if n is None:
  1879. if default is not NO_DEFAULT:
  1880. return default
  1881. elif fatal:
  1882. name = xpath if name is None else name
  1883. raise ExtractorError('Could not find XML element %s' % name)
  1884. else:
  1885. return None
  1886. return n
  1887. def xpath_text(node, xpath, name=None, fatal=False, default=NO_DEFAULT):
  1888. n = xpath_element(node, xpath, name, fatal=fatal, default=default)
  1889. if n is None or n == default:
  1890. return n
  1891. if n.text is None:
  1892. if default is not NO_DEFAULT:
  1893. return default
  1894. elif fatal:
  1895. name = xpath if name is None else name
  1896. raise ExtractorError('Could not find XML element\'s text %s' % name)
  1897. else:
  1898. return None
  1899. return n.text
  1900. def xpath_attr(node, xpath, key, name=None, fatal=False, default=NO_DEFAULT):
  1901. n = find_xpath_attr(node, xpath, key)
  1902. if n is None:
  1903. if default is not NO_DEFAULT:
  1904. return default
  1905. elif fatal:
  1906. name = '%s[@%s]' % (xpath, key) if name is None else name
  1907. raise ExtractorError('Could not find XML attribute %s' % name)
  1908. else:
  1909. return None
  1910. return n.attrib[key]
  1911. def get_element_by_id(id, html):
  1912. """Return the content of the tag with the specified ID in the passed HTML document"""
  1913. return get_element_by_attribute('id', id, html)
  1914. def get_element_by_class(class_name, html):
  1915. """Return the content of the first tag with the specified class in the passed HTML document"""
  1916. retval = get_elements_by_class(class_name, html)
  1917. return retval[0] if retval else None
  1918. def get_element_by_attribute(attribute, value, html, escape_value=True):
  1919. retval = get_elements_by_attribute(attribute, value, html, escape_value)
  1920. return retval[0] if retval else None
  1921. def get_elements_by_class(class_name, html):
  1922. """Return the content of all tags with the specified class in the passed HTML document as a list"""
  1923. return get_elements_by_attribute(
  1924. 'class', r'[^\'"]*\b%s\b[^\'"]*' % re.escape(class_name),
  1925. html, escape_value=False)
  1926. def get_elements_by_attribute(attribute, value, html, escape_value=True):
  1927. """Return the content of the tag with the specified attribute in the passed HTML document"""
  1928. value = re.escape(value) if escape_value else value
  1929. retlist = []
  1930. for m in re.finditer(r'''(?xs)
  1931. <([a-zA-Z0-9:._-]+)
  1932. (?:\s+[a-zA-Z0-9:._-]+(?:=[a-zA-Z0-9:._-]*|="[^"]*"|='[^']*'|))*?
  1933. \s+%s=['"]?%s['"]?
  1934. (?:\s+[a-zA-Z0-9:._-]+(?:=[a-zA-Z0-9:._-]*|="[^"]*"|='[^']*'|))*?
  1935. \s*>
  1936. (?P<content>.*?)
  1937. </\1>
  1938. ''' % (re.escape(attribute), value), html):
  1939. res = m.group('content')
  1940. if res.startswith('"') or res.startswith("'"):
  1941. res = res[1:-1]
  1942. retlist.append(unescapeHTML(res))
  1943. return retlist
  1944. class HTMLAttributeParser(compat_HTMLParser):
  1945. """Trivial HTML parser to gather the attributes for a single element"""
  1946. def __init__(self):
  1947. self.attrs = {}
  1948. compat_HTMLParser.__init__(self)
  1949. def handle_starttag(self, tag, attrs):
  1950. self.attrs = dict(attrs)
  1951. def extract_attributes(html_element):
  1952. """Given a string for an HTML element such as
  1953. <el
  1954. a="foo" B="bar" c="&98;az" d=boz
  1955. empty= noval entity="&amp;"
  1956. sq='"' dq="'"
  1957. >
  1958. Decode and return a dictionary of attributes.
  1959. {
  1960. 'a': 'foo', 'b': 'bar', c: 'baz', d: 'boz',
  1961. 'empty': '', 'noval': None, 'entity': '&',
  1962. 'sq': '"', 'dq': '\''
  1963. }.
  1964. NB HTMLParser is stricter in Python 2.6 & 3.2 than in later versions,
  1965. but the cases in the unit test will work for all of 2.6, 2.7, 3.2-3.5.
  1966. """
  1967. parser = HTMLAttributeParser()
  1968. try:
  1969. parser.feed(html_element)
  1970. parser.close()
  1971. # Older Python may throw HTMLParseError in case of malformed HTML
  1972. except compat_HTMLParseError:
  1973. pass
  1974. return parser.attrs
  1975. def clean_html(html):
  1976. """Clean an HTML snippet into a readable string"""
  1977. if html is None: # Convenience for sanitizing descriptions etc.
  1978. return html
  1979. # Newline vs <br />
  1980. html = html.replace('\n', ' ')
  1981. html = re.sub(r'(?u)\s*<\s*br\s*/?\s*>\s*', '\n', html)
  1982. html = re.sub(r'(?u)<\s*/\s*p\s*>\s*<\s*p[^>]*>', '\n', html)
  1983. # Strip html tags
  1984. html = re.sub('<.*?>', '', html)
  1985. # Replace html entities
  1986. html = unescapeHTML(html)
  1987. return html.strip()
  1988. def sanitize_open(filename, open_mode):
  1989. """Try to open the given filename, and slightly tweak it if this fails.
  1990. Attempts to open the given filename. If this fails, it tries to change
  1991. the filename slightly, step by step, until it's either able to open it
  1992. or it fails and raises a final exception, like the standard open()
  1993. function.
  1994. It returns the tuple (stream, definitive_file_name).
  1995. """
  1996. try:
  1997. if filename == '-':
  1998. if sys.platform == 'win32':
  1999. import msvcrt
  2000. msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)
  2001. return (sys.stdout.buffer if hasattr(sys.stdout, 'buffer') else sys.stdout, filename)
  2002. stream = open(encodeFilename(filename), open_mode)
  2003. return (stream, filename)
  2004. except (IOError, OSError) as err:
  2005. if err.errno in (errno.EACCES,):
  2006. raise
  2007. # In case of error, try to remove win32 forbidden chars
  2008. alt_filename = sanitize_path(filename)
  2009. if alt_filename == filename:
  2010. raise
  2011. else:
  2012. # An exception here should be caught in the caller
  2013. stream = open(encodeFilename(alt_filename), open_mode)
  2014. return (stream, alt_filename)
  2015. def timeconvert(timestr):
  2016. """Convert RFC 2822 defined time string into system timestamp"""
  2017. timestamp = None
  2018. timetuple = email.utils.parsedate_tz(timestr)
  2019. if timetuple is not None:
  2020. timestamp = email.utils.mktime_tz(timetuple)
  2021. return timestamp
  2022. def sanitize_filename(s, restricted=False, is_id=False):
  2023. """Sanitizes a string so it could be used as part of a filename.
  2024. If restricted is set, use a stricter subset of allowed characters.
  2025. Set is_id if this is not an arbitrary string, but an ID that should be kept
  2026. if possible.
  2027. """
  2028. def replace_insane(char):
  2029. if restricted and char in ACCENT_CHARS:
  2030. return ACCENT_CHARS[char]
  2031. if char == '?' or ord(char) < 32 or ord(char) == 127:
  2032. return ''
  2033. elif char == '"':
  2034. return '' if restricted else '\''
  2035. elif char == ':':
  2036. return '_-' if restricted else ' -'
  2037. elif char in '\\/|*<>':
  2038. return '_'
  2039. if restricted and (char in '!&\'()[]{}$;`^,#' or char.isspace()):
  2040. return '_'
  2041. if restricted and ord(char) > 127:
  2042. return '' if unicodedata.category(char)[0] in 'CM' else '_'
  2043. return char
  2044. # Replace look-alike Unicode glyphs
  2045. if restricted and not is_id:
  2046. s = unicodedata.normalize('NFKC', s)
  2047. # Handle timestamps
  2048. s = re.sub(r'[0-9]+(?::[0-9]+)+', lambda m: m.group(0).replace(':', '_'), s)
  2049. result = ''.join(map(replace_insane, s))
  2050. if not is_id:
  2051. while '__' in result:
  2052. result = result.replace('__', '_')
  2053. result = result.strip('_')
  2054. # Common case of "Foreign band name - English song title"
  2055. if restricted and result.startswith('-_'):
  2056. result = result[2:]
  2057. if result.startswith('-'):
  2058. result = '_' + result[len('-'):]
  2059. result = result.lstrip('.')
  2060. if not result:
  2061. result = '_'
  2062. return result
  2063. def sanitize_path(s):
  2064. """Sanitizes and normalizes path on Windows"""
  2065. if sys.platform != 'win32':
  2066. return s
  2067. drive_or_unc, _ = os.path.splitdrive(s)
  2068. if sys.version_info < (2, 7) and not drive_or_unc:
  2069. drive_or_unc, _ = os.path.splitunc(s)
  2070. norm_path = os.path.normpath(remove_start(s, drive_or_unc)).split(os.path.sep)
  2071. if drive_or_unc:
  2072. norm_path.pop(0)
  2073. sanitized_path = [
  2074. path_part if path_part in ['.', '..'] else re.sub(r'(?:[/<>:"\|\\?\*]|[\s.]$)', '#', path_part)
  2075. for path_part in norm_path]
  2076. if drive_or_unc:
  2077. sanitized_path.insert(0, drive_or_unc + os.path.sep)
  2078. return os.path.join(*sanitized_path)
  2079. def sanitize_url(url):
  2080. # Prepend protocol-less URLs with `http:` scheme in order to mitigate
  2081. # the number of unwanted failures due to missing protocol
  2082. if url.startswith('//'):
  2083. return 'http:%s' % url
  2084. # Fix some common typos seen so far
  2085. COMMON_TYPOS = (
  2086. # https://github.com/ytdl-org/youtube-dl/issues/15649
  2087. (r'^httpss://', r'https://'),
  2088. # https://bx1.be/lives/direct-tv/
  2089. (r'^rmtp([es]?)://', r'rtmp\1://'),
  2090. )
  2091. for mistake, fixup in COMMON_TYPOS:
  2092. if re.match(mistake, url):
  2093. return re.sub(mistake, fixup, url)
  2094. return url
  2095. def extract_basic_auth(url):
  2096. parts = compat_urllib_parse.urlsplit(url)
  2097. if parts.username is None:
  2098. return url, None
  2099. url = compat_urllib_parse.urlunsplit(parts._replace(netloc=(
  2100. parts.hostname if parts.port is None
  2101. else '%s:%d' % (parts.hostname, parts.port))))
  2102. auth_payload = base64.b64encode(
  2103. ('%s:%s' % (parts.username, parts.password or '')).encode('utf-8'))
  2104. return url, 'Basic {0}'.format(auth_payload.decode('ascii'))
  2105. def sanitized_Request(url, *args, **kwargs):
  2106. url, auth_header = extract_basic_auth(escape_url(sanitize_url(url)))
  2107. if auth_header is not None:
  2108. headers = args[1] if len(args) > 1 else kwargs.get('headers')
  2109. headers = headers or {}
  2110. headers['Authorization'] = auth_header
  2111. if len(args) <= 1 and kwargs.get('headers') is None:
  2112. kwargs['headers'] = headers
  2113. kwargs = compat_kwargs(kwargs)
  2114. return compat_urllib_request.Request(url, *args, **kwargs)
  2115. def expand_path(s):
  2116. """Expand shell variables and ~"""
  2117. return os.path.expandvars(compat_expanduser(s))
  2118. def orderedSet(iterable):
  2119. """ Remove all duplicates from the input iterable """
  2120. res = []
  2121. for el in iterable:
  2122. if el not in res:
  2123. res.append(el)
  2124. return res
  2125. def _htmlentity_transform(entity_with_semicolon):
  2126. """Transforms an HTML entity to a character."""
  2127. entity = entity_with_semicolon[:-1]
  2128. # Known non-numeric HTML entity
  2129. if entity in compat_html_entities.name2codepoint:
  2130. return compat_chr(compat_html_entities.name2codepoint[entity])
  2131. # TODO: HTML5 allows entities without a semicolon. For example,
  2132. # '&Eacuteric' should be decoded as 'Éric'.
  2133. if entity_with_semicolon in compat_html_entities_html5:
  2134. return compat_html_entities_html5[entity_with_semicolon]
  2135. mobj = re.match(r'#(x[0-9a-fA-F]+|[0-9]+)', entity)
  2136. if mobj is not None:
  2137. numstr = mobj.group(1)
  2138. if numstr.startswith('x'):
  2139. base = 16
  2140. numstr = '0%s' % numstr
  2141. else:
  2142. base = 10
  2143. # See https://github.com/ytdl-org/youtube-dl/issues/7518
  2144. try:
  2145. return compat_chr(int(numstr, base))
  2146. except ValueError:
  2147. pass
  2148. # Unknown entity in name, return its literal representation
  2149. return '&%s;' % entity
  2150. def unescapeHTML(s):
  2151. if s is None:
  2152. return None
  2153. assert isinstance(s, compat_str)
  2154. return re.sub(
  2155. r'&([^&;]+;)', lambda m: _htmlentity_transform(m.group(1)), s)
  2156. def process_communicate_or_kill(p, *args, **kwargs):
  2157. try:
  2158. return p.communicate(*args, **kwargs)
  2159. except BaseException: # Including KeyboardInterrupt
  2160. p.kill()
  2161. p.wait()
  2162. raise
  2163. def get_subprocess_encoding():
  2164. if sys.platform == 'win32' and sys.getwindowsversion()[0] >= 5:
  2165. # For subprocess calls, encode with locale encoding
  2166. # Refer to http://stackoverflow.com/a/9951851/35070
  2167. encoding = preferredencoding()
  2168. else:
  2169. encoding = sys.getfilesystemencoding()
  2170. if encoding is None:
  2171. encoding = 'utf-8'
  2172. return encoding
  2173. # Jython assumes filenames are Unicode strings though reported as Python 2.x compatible
  2174. if sys.version_info < (3, 0) and not sys.platform.startswith('java'):
  2175. def encodeFilename(s, for_subprocess=False):
  2176. """
  2177. @param s The name of the file
  2178. """
  2179. # Pass '' directly to use Unicode APIs on Windows 2000 and up
  2180. # (Detecting Windows NT 4 is tricky because 'major >= 4' would
  2181. # match Windows 9x series as well. Besides, NT 4 is obsolete.)
  2182. if (not for_subprocess
  2183. and sys.platform == 'win32'
  2184. and sys.getwindowsversion()[0] >= 5
  2185. and isinstance(s, compat_str)):
  2186. return s
  2187. return _encode_compat_str(s, get_subprocess_encoding(), 'ignore')
  2188. def decodeFilename(b, for_subprocess=False):
  2189. return _decode_compat_str(b, get_subprocess_encoding(), 'ignore')
  2190. else:
  2191. # Python 3 has a Unicode API
  2192. encodeFilename = decodeFilename = lambda *s, **k: s[0]
  2193. def encodeArgument(s):
  2194. if not isinstance(s, compat_str):
  2195. # Legacy code that uses byte strings
  2196. # Uncomment the following line after fixing all post processors
  2197. # assert False, 'Internal error: %r should be of type %r, is %r' % (s, compat_str, type(s))
  2198. s = s.decode('ascii')
  2199. return encodeFilename(s, True)
  2200. def decodeArgument(b):
  2201. return decodeFilename(b, True)
  2202. def decodeOption(optval):
  2203. if optval is None:
  2204. return optval
  2205. return _decode_compat_str(optval)
  2206. def formatSeconds(secs):
  2207. if secs > 3600:
  2208. return '%d:%02d:%02d' % (secs // 3600, (secs % 3600) // 60, secs % 60)
  2209. elif secs > 60:
  2210. return '%d:%02d' % (secs // 60, secs % 60)
  2211. else:
  2212. return '%d' % secs
  2213. def make_HTTPS_handler(params, **kwargs):
  2214. # https://www.rfc-editor.org/info/rfc7301
  2215. ALPN_PROTOCOLS = ['http/1.1']
  2216. def set_alpn_protocols(ctx):
  2217. # From https://github.com/yt-dlp/yt-dlp/commit/2c6dcb65fb612fc5bc5c61937bf438d3c473d8d0
  2218. # Thanks @coletdjnz
  2219. # Some servers may (wrongly) reject requests if ALPN extension is not sent. See:
  2220. # https://github.com/python/cpython/issues/85140
  2221. # https://github.com/yt-dlp/yt-dlp/issues/3878
  2222. try:
  2223. ctx.set_alpn_protocols(ALPN_PROTOCOLS)
  2224. except (AttributeError, NotImplementedError):
  2225. # Python < 2.7.10, not ssl.HAS_ALPN
  2226. pass
  2227. opts_no_check_certificate = params.get('nocheckcertificate', False)
  2228. if hasattr(ssl, 'create_default_context'): # Python >= 3.4 or 2.7.9
  2229. context = ssl.create_default_context(ssl.Purpose.SERVER_AUTH)
  2230. set_alpn_protocols(context)
  2231. if opts_no_check_certificate:
  2232. context.check_hostname = False
  2233. context.verify_mode = ssl.CERT_NONE
  2234. try:
  2235. return YoutubeDLHTTPSHandler(params, context=context, **kwargs)
  2236. except TypeError:
  2237. # Python 2.7.8
  2238. # (create_default_context present but HTTPSHandler has no context=)
  2239. pass
  2240. if sys.version_info < (3, 2):
  2241. return YoutubeDLHTTPSHandler(params, **kwargs)
  2242. else: # Python3 < 3.4
  2243. context = ssl.SSLContext(ssl.PROTOCOL_TLSv1)
  2244. context.verify_mode = (ssl.CERT_NONE
  2245. if opts_no_check_certificate
  2246. else ssl.CERT_REQUIRED)
  2247. context.set_default_verify_paths()
  2248. set_alpn_protocols(context)
  2249. return YoutubeDLHTTPSHandler(params, context=context, **kwargs)
  2250. def bug_reports_message():
  2251. if ytdl_is_updateable():
  2252. update_cmd = 'type youtube-dl -U to update'
  2253. else:
  2254. update_cmd = 'see https://yt-dl.org/update on how to update'
  2255. msg = '; please report this issue on https://yt-dl.org/bug .'
  2256. msg += ' Make sure you are using the latest version; %s.' % update_cmd
  2257. msg += ' Be sure to call youtube-dl with the --verbose flag and include its complete output.'
  2258. return msg
  2259. class YoutubeDLError(Exception):
  2260. """Base exception for YoutubeDL errors."""
  2261. pass
  2262. class ExtractorError(YoutubeDLError):
  2263. """Error during info extraction."""
  2264. def __init__(self, msg, tb=None, expected=False, cause=None, video_id=None):
  2265. """ tb, if given, is the original traceback (so that it can be printed out).
  2266. If expected is set, this is a normal error message and most likely not a bug in youtube-dl.
  2267. """
  2268. if sys.exc_info()[0] in (compat_urllib_error.URLError, socket.timeout, UnavailableVideoError):
  2269. expected = True
  2270. if video_id is not None:
  2271. msg = video_id + ': ' + msg
  2272. if cause:
  2273. msg += ' (caused by %r)' % cause
  2274. if not expected:
  2275. msg += bug_reports_message()
  2276. super(ExtractorError, self).__init__(msg)
  2277. self.traceback = tb
  2278. self.exc_info = sys.exc_info() # preserve original exception
  2279. self.cause = cause
  2280. self.video_id = video_id
  2281. def format_traceback(self):
  2282. if self.traceback is None:
  2283. return None
  2284. return ''.join(traceback.format_tb(self.traceback))
  2285. class UnsupportedError(ExtractorError):
  2286. def __init__(self, url):
  2287. super(UnsupportedError, self).__init__(
  2288. 'Unsupported URL: %s' % url, expected=True)
  2289. self.url = url
  2290. class RegexNotFoundError(ExtractorError):
  2291. """Error when a regex didn't match"""
  2292. pass
  2293. class GeoRestrictedError(ExtractorError):
  2294. """Geographic restriction Error exception.
  2295. This exception may be thrown when a video is not available from your
  2296. geographic location due to geographic restrictions imposed by a website.
  2297. """
  2298. def __init__(self, msg, countries=None):
  2299. super(GeoRestrictedError, self).__init__(msg, expected=True)
  2300. self.msg = msg
  2301. self.countries = countries
  2302. class DownloadError(YoutubeDLError):
  2303. """Download Error exception.
  2304. This exception may be thrown by FileDownloader objects if they are not
  2305. configured to continue on errors. They will contain the appropriate
  2306. error message.
  2307. """
  2308. def __init__(self, msg, exc_info=None):
  2309. """ exc_info, if given, is the original exception that caused the trouble (as returned by sys.exc_info()). """
  2310. super(DownloadError, self).__init__(msg)
  2311. self.exc_info = exc_info
  2312. class SameFileError(YoutubeDLError):
  2313. """Same File exception.
  2314. This exception will be thrown by FileDownloader objects if they detect
  2315. multiple files would have to be downloaded to the same file on disk.
  2316. """
  2317. pass
  2318. class PostProcessingError(YoutubeDLError):
  2319. """Post Processing exception.
  2320. This exception may be raised by PostProcessor's .run() method to
  2321. indicate an error in the postprocessing task.
  2322. """
  2323. def __init__(self, msg):
  2324. super(PostProcessingError, self).__init__(msg)
  2325. self.msg = msg
  2326. class MaxDownloadsReached(YoutubeDLError):
  2327. """ --max-downloads limit has been reached. """
  2328. pass
  2329. class UnavailableVideoError(YoutubeDLError):
  2330. """Unavailable Format exception.
  2331. This exception will be thrown when a video is requested
  2332. in a format that is not available for that video.
  2333. """
  2334. pass
  2335. class ContentTooShortError(YoutubeDLError):
  2336. """Content Too Short exception.
  2337. This exception may be raised by FileDownloader objects when a file they
  2338. download is too small for what the server announced first, indicating
  2339. the connection was probably interrupted.
  2340. """
  2341. def __init__(self, downloaded, expected):
  2342. super(ContentTooShortError, self).__init__(
  2343. 'Downloaded {0} bytes, expected {1} bytes'.format(downloaded, expected)
  2344. )
  2345. # Both in bytes
  2346. self.downloaded = downloaded
  2347. self.expected = expected
  2348. class XAttrMetadataError(YoutubeDLError):
  2349. def __init__(self, code=None, msg='Unknown error'):
  2350. super(XAttrMetadataError, self).__init__(msg)
  2351. self.code = code
  2352. self.msg = msg
  2353. # Parsing code and msg
  2354. if (self.code in (errno.ENOSPC, errno.EDQUOT)
  2355. or 'No space left' in self.msg or 'Disk quota exceeded' in self.msg):
  2356. self.reason = 'NO_SPACE'
  2357. elif self.code == errno.E2BIG or 'Argument list too long' in self.msg:
  2358. self.reason = 'VALUE_TOO_LONG'
  2359. else:
  2360. self.reason = 'NOT_SUPPORTED'
  2361. class XAttrUnavailableError(YoutubeDLError):
  2362. pass
  2363. def _create_http_connection(ydl_handler, http_class, is_https, *args, **kwargs):
  2364. # Working around python 2 bug (see http://bugs.python.org/issue17849) by limiting
  2365. # expected HTTP responses to meet HTTP/1.0 or later (see also
  2366. # https://github.com/ytdl-org/youtube-dl/issues/6727)
  2367. if sys.version_info < (3, 0):
  2368. kwargs['strict'] = True
  2369. hc = http_class(*args, **compat_kwargs(kwargs))
  2370. source_address = ydl_handler._params.get('source_address')
  2371. if source_address is not None:
  2372. # This is to workaround _create_connection() from socket where it will try all
  2373. # address data from getaddrinfo() including IPv6. This filters the result from
  2374. # getaddrinfo() based on the source_address value.
  2375. # This is based on the cpython socket.create_connection() function.
  2376. # https://github.com/python/cpython/blob/master/Lib/socket.py#L691
  2377. def _create_connection(address, timeout=socket._GLOBAL_DEFAULT_TIMEOUT, source_address=None):
  2378. host, port = address
  2379. err = None
  2380. addrs = socket.getaddrinfo(host, port, 0, socket.SOCK_STREAM)
  2381. af = socket.AF_INET if '.' in source_address[0] else socket.AF_INET6
  2382. ip_addrs = [addr for addr in addrs if addr[0] == af]
  2383. if addrs and not ip_addrs:
  2384. ip_version = 'v4' if af == socket.AF_INET else 'v6'
  2385. raise socket.error(
  2386. "No remote IP%s addresses available for connect, can't use '%s' as source address"
  2387. % (ip_version, source_address[0]))
  2388. for res in ip_addrs:
  2389. af, socktype, proto, canonname, sa = res
  2390. sock = None
  2391. try:
  2392. sock = socket.socket(af, socktype, proto)
  2393. if timeout is not socket._GLOBAL_DEFAULT_TIMEOUT:
  2394. sock.settimeout(timeout)
  2395. sock.bind(source_address)
  2396. sock.connect(sa)
  2397. err = None # Explicitly break reference cycle
  2398. return sock
  2399. except socket.error as _:
  2400. err = _
  2401. if sock is not None:
  2402. sock.close()
  2403. if err is not None:
  2404. raise err
  2405. else:
  2406. raise socket.error('getaddrinfo returns an empty list')
  2407. if hasattr(hc, '_create_connection'):
  2408. hc._create_connection = _create_connection
  2409. sa = (source_address, 0)
  2410. if hasattr(hc, 'source_address'): # Python 2.7+
  2411. hc.source_address = sa
  2412. else: # Python 2.6
  2413. def _hc_connect(self, *args, **kwargs):
  2414. sock = _create_connection(
  2415. (self.host, self.port), self.timeout, sa)
  2416. if is_https:
  2417. self.sock = ssl.wrap_socket(
  2418. sock, self.key_file, self.cert_file,
  2419. ssl_version=ssl.PROTOCOL_TLSv1)
  2420. else:
  2421. self.sock = sock
  2422. hc.connect = functools.partial(_hc_connect, hc)
  2423. return hc
  2424. def handle_youtubedl_headers(headers):
  2425. filtered_headers = headers
  2426. if 'Youtubedl-no-compression' in filtered_headers:
  2427. filtered_headers = filter_dict(filtered_headers, cndn=lambda k, _: k.lower() != 'accept-encoding')
  2428. del filtered_headers['Youtubedl-no-compression']
  2429. return filtered_headers
  2430. class YoutubeDLHandler(compat_urllib_request.HTTPHandler):
  2431. """Handler for HTTP requests and responses.
  2432. This class, when installed with an OpenerDirector, automatically adds
  2433. the standard headers to every HTTP request and handles gzipped and
  2434. deflated responses from web servers. If compression is to be avoided in
  2435. a particular request, the original request in the program code only has
  2436. to include the HTTP header "Youtubedl-no-compression", which will be
  2437. removed before making the real request.
  2438. Part of this code was copied from:
  2439. http://techknack.net/python-urllib2-handlers/, archived at
  2440. https://web.archive.org/web/20130527205558/http://techknack.net/python-urllib2-handlers/
  2441. Andrew Rowls, the author of that code, agreed to release it to the
  2442. public domain.
  2443. """
  2444. def __init__(self, params, *args, **kwargs):
  2445. compat_urllib_request.HTTPHandler.__init__(self, *args, **kwargs)
  2446. self._params = params
  2447. def http_open(self, req):
  2448. conn_class = compat_http_client.HTTPConnection
  2449. socks_proxy = req.headers.get('Ytdl-socks-proxy')
  2450. if socks_proxy:
  2451. conn_class = make_socks_conn_class(conn_class, socks_proxy)
  2452. del req.headers['Ytdl-socks-proxy']
  2453. return self.do_open(functools.partial(
  2454. _create_http_connection, self, conn_class, False),
  2455. req)
  2456. @staticmethod
  2457. def deflate_gz(data):
  2458. try:
  2459. # format:zlib,gzip + windowsize:32768
  2460. return data and zlib.decompress(data, 32 + zlib.MAX_WBITS)
  2461. except zlib.error:
  2462. # raw zlib * windowsize:32768 (RFC 9110: "non-conformant")
  2463. return zlib.decompress(data, -zlib.MAX_WBITS)
  2464. @staticmethod
  2465. def gzip(data):
  2466. from gzip import GzipFile
  2467. def _gzip(data):
  2468. with io.BytesIO(data) as data_buf:
  2469. gz = GzipFile(fileobj=data_buf, mode='rb')
  2470. return gz.read()
  2471. try:
  2472. return _gzip(data)
  2473. except IOError as original_ioerror:
  2474. # There may be junk at the end of the file
  2475. # See http://stackoverflow.com/q/4928560/35070 for details
  2476. for i in range(1, 1024):
  2477. try:
  2478. return _gzip(data[:-i])
  2479. except IOError:
  2480. continue
  2481. else:
  2482. raise original_ioerror
  2483. @staticmethod
  2484. def brotli(data):
  2485. return data and brotli.decompress(data)
  2486. @staticmethod
  2487. def compress(data):
  2488. return data and ncompress.decompress(data)
  2489. @staticmethod
  2490. def _fix_path(url):
  2491. # an embedded /../ or /./ sequence is not automatically handled by urllib2
  2492. # see https://github.com/yt-dlp/yt-dlp/issues/3355
  2493. parsed_url = compat_urllib_parse.urlsplit(url)
  2494. path = parsed_url.path
  2495. if not path.endswith('/'):
  2496. path += '/'
  2497. parts = path.partition('/./')
  2498. if not parts[1]:
  2499. parts = path.partition('/../')
  2500. if parts[1]:
  2501. path = compat_urllib_parse.urljoin(
  2502. parts[0] + parts[1][:1],
  2503. parts[1][1:] + (parts[2] if parsed_url.path.endswith('/') else parts[2][:-1]))
  2504. url = parsed_url._replace(path=path).geturl()
  2505. if '/.' in url:
  2506. # worse, URL path may have initial /../ against RFCs: work-around
  2507. # by stripping such prefixes, like eg Firefox
  2508. path = parsed_url.path + '/'
  2509. while path.startswith('/.'):
  2510. if path.startswith('/../'):
  2511. path = path[3:]
  2512. elif path.startswith('/./'):
  2513. path = path[2:]
  2514. else:
  2515. break
  2516. path = path[:-1]
  2517. if not path.startswith('/') and parsed_url.path.startswith('/'):
  2518. path = '/' + path
  2519. url = parsed_url._replace(path=path).geturl()
  2520. return url
  2521. def http_request(self, req):
  2522. url = req.get_full_url()
  2523. # resolve embedded . and ..
  2524. url_fixed = self._fix_path(url)
  2525. # According to RFC 3986, URLs can not contain non-ASCII characters; however this is not
  2526. # always respected by websites: some tend to give out URLs with non percent-encoded
  2527. # non-ASCII characters (see telemb.py, ard.py [#3412])
  2528. # urllib chokes on URLs with non-ASCII characters (see http://bugs.python.org/issue3991)
  2529. # To work around aforementioned issue we will replace request's original URL with
  2530. # percent-encoded one
  2531. # Since redirects are also affected (e.g. http://www.southpark.de/alle-episoden/s18e09)
  2532. # the code of this workaround has been moved here from YoutubeDL.urlopen()
  2533. url_escaped = escape_url(url_fixed)
  2534. # Substitute URL if any change after escaping
  2535. if url != url_escaped:
  2536. req = update_Request(req, url=url_escaped)
  2537. for h, v in std_headers.items():
  2538. # Capitalize is needed because of Python bug 2275: http://bugs.python.org/issue2275
  2539. # The dict keys are capitalized because of this bug by urllib
  2540. if h.capitalize() not in req.headers:
  2541. req.add_header(h, v)
  2542. # Similarly, 'Accept-encoding'
  2543. if 'Accept-encoding' not in req.headers:
  2544. req.add_header(
  2545. 'Accept-Encoding', join_nonempty(
  2546. 'gzip', 'deflate', brotli and 'br', ncompress and 'compress',
  2547. delim=', '))
  2548. req.headers = handle_youtubedl_headers(req.headers)
  2549. if sys.version_info < (2, 7):
  2550. # avoid possible race where __r_type may be unset
  2551. req.get_type()
  2552. if '#' in req.get_full_url():
  2553. # Python 2.6 is brain-dead when it comes to fragments
  2554. req._Request__original = req._Request__original.partition('#')[0]
  2555. req._Request__r_type = req._Request__r_type.partition('#')[0]
  2556. # Use the totally undocumented AbstractHTTPHandler per
  2557. # https://github.com/yt-dlp/yt-dlp/pull/4158
  2558. return compat_urllib_request.AbstractHTTPHandler.do_request_(self, req)
  2559. def http_response(self, req, resp):
  2560. old_resp = resp
  2561. # Content-Encoding header lists the encodings in order that they were applied [1].
  2562. # To decompress, we simply do the reverse.
  2563. # [1]: https://datatracker.ietf.org/doc/html/rfc9110#name-content-encoding
  2564. decoded_response = None
  2565. decoders = {
  2566. 'gzip': self.deflate_gz,
  2567. 'deflate': self.deflate_gz,
  2568. }
  2569. if brotli:
  2570. decoders['br'] = self.brotli
  2571. if ncompress:
  2572. decoders['compress'] = self.compress
  2573. if sys.platform.startswith('java'):
  2574. # Jython zlib implementation misses gzip
  2575. decoders['gzip'] = self.gzip
  2576. def encodings(hdrs):
  2577. # A header field that allows multiple values can have multiple instances [2].
  2578. # [2]: https://datatracker.ietf.org/doc/html/rfc9110#name-fields
  2579. for e in reversed(','.join(hdrs).split(',')):
  2580. if e:
  2581. yield e.strip()
  2582. encodings_left = []
  2583. try:
  2584. resp.headers.get_all
  2585. hdrs = resp.headers
  2586. except AttributeError:
  2587. # Py2 has no get_all() method: headers are rfc822.Message
  2588. from email.message import Message
  2589. hdrs = Message()
  2590. for k, v in resp.headers.items():
  2591. hdrs[k] = v
  2592. decoder, decoded_response = True, None
  2593. for encoding in encodings(hdrs.get_all('Content-Encoding', [])):
  2594. # "SHOULD consider" x-compress, x-gzip as compress, gzip
  2595. decoder = decoder and decoders.get(remove_start(encoding, 'x-'))
  2596. if not decoder:
  2597. encodings_left.insert(0, encoding)
  2598. continue
  2599. decoded_response = decoder(decoded_response or resp.read())
  2600. if decoded_response is not None:
  2601. resp = compat_urllib_request.addinfourl(
  2602. io.BytesIO(decoded_response), old_resp.headers, old_resp.url, old_resp.code)
  2603. resp.msg = old_resp.msg
  2604. del resp.headers['Content-Length']
  2605. resp.headers['Content-Length'] = '%d' % len(decoded_response)
  2606. del resp.headers['Content-Encoding']
  2607. if encodings_left:
  2608. resp.headers['Content-Encoding'] = ', '.join(encodings_left)
  2609. # Percent-encode redirect URL of Location HTTP header to satisfy RFC 3986 (see
  2610. # https://github.com/ytdl-org/youtube-dl/issues/6457).
  2611. if 300 <= resp.code < 400:
  2612. location = resp.headers.get('Location')
  2613. if location:
  2614. # As of RFC 2616 default charset is iso-8859-1 that is respected by python 3
  2615. if sys.version_info >= (3, 0):
  2616. location = location.encode('iso-8859-1')
  2617. location = location.decode('utf-8')
  2618. # resolve embedded . and ..
  2619. location_fixed = self._fix_path(location)
  2620. location_escaped = escape_url(location_fixed)
  2621. if location != location_escaped:
  2622. del resp.headers['Location']
  2623. if not isinstance(location_escaped, str): # Py 2 case
  2624. location_escaped = location_escaped.encode('utf-8')
  2625. resp.headers['Location'] = location_escaped
  2626. return resp
  2627. https_request = http_request
  2628. https_response = http_response
  2629. def make_socks_conn_class(base_class, socks_proxy):
  2630. assert issubclass(base_class, (
  2631. compat_http_client.HTTPConnection, compat_http_client.HTTPSConnection))
  2632. url_components = compat_urllib_parse.urlparse(socks_proxy)
  2633. if url_components.scheme.lower() == 'socks5':
  2634. socks_type = ProxyType.SOCKS5
  2635. elif url_components.scheme.lower() in ('socks', 'socks4'):
  2636. socks_type = ProxyType.SOCKS4
  2637. elif url_components.scheme.lower() == 'socks4a':
  2638. socks_type = ProxyType.SOCKS4A
  2639. def unquote_if_non_empty(s):
  2640. if not s:
  2641. return s
  2642. return compat_urllib_parse_unquote_plus(s)
  2643. proxy_args = (
  2644. socks_type,
  2645. url_components.hostname, url_components.port or 1080,
  2646. True, # Remote DNS
  2647. unquote_if_non_empty(url_components.username),
  2648. unquote_if_non_empty(url_components.password),
  2649. )
  2650. class SocksConnection(base_class):
  2651. def connect(self):
  2652. self.sock = sockssocket()
  2653. self.sock.setproxy(*proxy_args)
  2654. if type(self.timeout) in (int, float):
  2655. self.sock.settimeout(self.timeout)
  2656. self.sock.connect((self.host, self.port))
  2657. if isinstance(self, compat_http_client.HTTPSConnection):
  2658. if hasattr(self, '_context'): # Python > 2.6
  2659. self.sock = self._context.wrap_socket(
  2660. self.sock, server_hostname=self.host)
  2661. else:
  2662. self.sock = ssl.wrap_socket(self.sock)
  2663. return SocksConnection
  2664. class YoutubeDLHTTPSHandler(compat_urllib_request.HTTPSHandler):
  2665. def __init__(self, params, https_conn_class=None, *args, **kwargs):
  2666. compat_urllib_request.HTTPSHandler.__init__(self, *args, **kwargs)
  2667. self._https_conn_class = https_conn_class or compat_http_client.HTTPSConnection
  2668. self._params = params
  2669. def https_open(self, req):
  2670. kwargs = {}
  2671. conn_class = self._https_conn_class
  2672. if hasattr(self, '_context'): # python > 2.6
  2673. kwargs['context'] = self._context
  2674. if hasattr(self, '_check_hostname'): # python 3.x
  2675. kwargs['check_hostname'] = self._check_hostname
  2676. socks_proxy = req.headers.get('Ytdl-socks-proxy')
  2677. if socks_proxy:
  2678. conn_class = make_socks_conn_class(conn_class, socks_proxy)
  2679. del req.headers['Ytdl-socks-proxy']
  2680. return self.do_open(functools.partial(
  2681. _create_http_connection, self, conn_class, True),
  2682. req, **kwargs)
  2683. class YoutubeDLCookieJar(compat_cookiejar.MozillaCookieJar):
  2684. """
  2685. See [1] for cookie file format.
  2686. 1. https://curl.haxx.se/docs/http-cookies.html
  2687. """
  2688. _HTTPONLY_PREFIX = '#HttpOnly_'
  2689. _ENTRY_LEN = 7
  2690. _HEADER = '''# Netscape HTTP Cookie File
  2691. # This file is generated by youtube-dl. Do not edit.
  2692. '''
  2693. _CookieFileEntry = collections.namedtuple(
  2694. 'CookieFileEntry',
  2695. ('domain_name', 'include_subdomains', 'path', 'https_only', 'expires_at', 'name', 'value'))
  2696. def save(self, filename=None, ignore_discard=False, ignore_expires=False):
  2697. """
  2698. Save cookies to a file.
  2699. Most of the code is taken from CPython 3.8 and slightly adapted
  2700. to support cookie files with UTF-8 in both python 2 and 3.
  2701. """
  2702. if filename is None:
  2703. if self.filename is not None:
  2704. filename = self.filename
  2705. else:
  2706. raise ValueError(compat_cookiejar.MISSING_FILENAME_TEXT)
  2707. # Store session cookies with `expires` set to 0 instead of an empty
  2708. # string
  2709. for cookie in self:
  2710. if cookie.expires is None:
  2711. cookie.expires = 0
  2712. with io.open(filename, 'w', encoding='utf-8') as f:
  2713. f.write(self._HEADER)
  2714. now = time.time()
  2715. for cookie in self:
  2716. if not ignore_discard and cookie.discard:
  2717. continue
  2718. if not ignore_expires and cookie.is_expired(now):
  2719. continue
  2720. if cookie.secure:
  2721. secure = 'TRUE'
  2722. else:
  2723. secure = 'FALSE'
  2724. if cookie.domain.startswith('.'):
  2725. initial_dot = 'TRUE'
  2726. else:
  2727. initial_dot = 'FALSE'
  2728. if cookie.expires is not None:
  2729. expires = compat_str(cookie.expires)
  2730. else:
  2731. expires = ''
  2732. if cookie.value is None:
  2733. # cookies.txt regards 'Set-Cookie: foo' as a cookie
  2734. # with no name, whereas http.cookiejar regards it as a
  2735. # cookie with no value.
  2736. name = ''
  2737. value = cookie.name
  2738. else:
  2739. name = cookie.name
  2740. value = cookie.value
  2741. f.write(
  2742. '\t'.join([cookie.domain, initial_dot, cookie.path,
  2743. secure, expires, name, value]) + '\n')
  2744. def load(self, filename=None, ignore_discard=False, ignore_expires=False):
  2745. """Load cookies from a file."""
  2746. if filename is None:
  2747. if self.filename is not None:
  2748. filename = self.filename
  2749. else:
  2750. raise ValueError(compat_cookiejar.MISSING_FILENAME_TEXT)
  2751. def prepare_line(line):
  2752. if line.startswith(self._HTTPONLY_PREFIX):
  2753. line = line[len(self._HTTPONLY_PREFIX):]
  2754. # comments and empty lines are fine
  2755. if line.startswith('#') or not line.strip():
  2756. return line
  2757. cookie_list = line.split('\t')
  2758. if len(cookie_list) != self._ENTRY_LEN:
  2759. raise compat_cookiejar.LoadError('invalid length %d' % len(cookie_list))
  2760. cookie = self._CookieFileEntry(*cookie_list)
  2761. if cookie.expires_at and not cookie.expires_at.isdigit():
  2762. raise compat_cookiejar.LoadError('invalid expires at %s' % cookie.expires_at)
  2763. return line
  2764. cf = io.StringIO()
  2765. with io.open(filename, encoding='utf-8') as f:
  2766. for line in f:
  2767. try:
  2768. cf.write(prepare_line(line))
  2769. except compat_cookiejar.LoadError as e:
  2770. write_string(
  2771. 'WARNING: skipping cookie file entry due to %s: %r\n'
  2772. % (e, line), sys.stderr)
  2773. continue
  2774. cf.seek(0)
  2775. self._really_load(cf, filename, ignore_discard, ignore_expires)
  2776. # Session cookies are denoted by either `expires` field set to
  2777. # an empty string or 0. MozillaCookieJar only recognizes the former
  2778. # (see [1]). So we need force the latter to be recognized as session
  2779. # cookies on our own.
  2780. # Session cookies may be important for cookies-based authentication,
  2781. # e.g. usually, when user does not check 'Remember me' check box while
  2782. # logging in on a site, some important cookies are stored as session
  2783. # cookies so that not recognizing them will result in failed login.
  2784. # 1. https://bugs.python.org/issue17164
  2785. for cookie in self:
  2786. # Treat `expires=0` cookies as session cookies
  2787. if cookie.expires == 0:
  2788. cookie.expires = None
  2789. cookie.discard = True
  2790. def get_cookie_header(self, url):
  2791. """Generate a Cookie HTTP header for a given url"""
  2792. cookie_req = sanitized_Request(url)
  2793. self.add_cookie_header(cookie_req)
  2794. return cookie_req.get_header('Cookie')
  2795. def get_cookies_for_url(self, url):
  2796. """Generate a list of Cookie objects for a given url"""
  2797. # Policy `_now` attribute must be set before calling `_cookies_for_request`
  2798. # Ref: https://github.com/python/cpython/blob/3.7/Lib/http/cookiejar.py#L1360
  2799. self._policy._now = self._now = int(time.time())
  2800. return self._cookies_for_request(sanitized_Request(url))
  2801. class YoutubeDLCookieProcessor(compat_urllib_request.HTTPCookieProcessor):
  2802. def __init__(self, cookiejar=None):
  2803. compat_urllib_request.HTTPCookieProcessor.__init__(self, cookiejar)
  2804. def http_response(self, request, response):
  2805. # Python 2 will choke on next HTTP request in row if there are non-ASCII
  2806. # characters in Set-Cookie HTTP header of last response (see
  2807. # https://github.com/ytdl-org/youtube-dl/issues/6769).
  2808. # In order to at least prevent crashing we will percent encode Set-Cookie
  2809. # header before HTTPCookieProcessor starts processing it.
  2810. # if sys.version_info < (3, 0) and response.headers:
  2811. # for set_cookie_header in ('Set-Cookie', 'Set-Cookie2'):
  2812. # set_cookie = response.headers.get(set_cookie_header)
  2813. # if set_cookie:
  2814. # set_cookie_escaped = compat_urllib_parse.quote(set_cookie, b"%/;:@&=+$,!~*'()?#[] ")
  2815. # if set_cookie != set_cookie_escaped:
  2816. # del response.headers[set_cookie_header]
  2817. # response.headers[set_cookie_header] = set_cookie_escaped
  2818. return compat_urllib_request.HTTPCookieProcessor.http_response(self, request, response)
  2819. https_request = compat_urllib_request.HTTPCookieProcessor.http_request
  2820. https_response = http_response
  2821. class YoutubeDLRedirectHandler(compat_urllib_request.HTTPRedirectHandler):
  2822. """YoutubeDL redirect handler
  2823. The code is based on HTTPRedirectHandler implementation from CPython [1].
  2824. This redirect handler fixes and improves the logic to better align with RFC7261
  2825. and what browsers tend to do [2][3]
  2826. 1. https://github.com/python/cpython/blob/master/Lib/urllib/request.py
  2827. 2. https://datatracker.ietf.org/doc/html/rfc7231
  2828. 3. https://github.com/python/cpython/issues/91306
  2829. """
  2830. # Supply possibly missing alias
  2831. http_error_308 = compat_urllib_request.HTTPRedirectHandler.http_error_302
  2832. def redirect_request(self, req, fp, code, msg, headers, newurl):
  2833. """Return a Request or None in response to a redirect.
  2834. This is called by the http_error_30x methods when a
  2835. redirection response is received. If a redirection should
  2836. take place, return a new Request to allow http_error_30x to
  2837. perform the redirect. Otherwise, raise HTTPError if no-one
  2838. else should try to handle this url. Return None if you can't
  2839. but another Handler might.
  2840. """
  2841. if code not in (301, 302, 303, 307, 308):
  2842. raise compat_urllib_HTTPError(req.full_url, code, msg, headers, fp)
  2843. new_method = req.get_method()
  2844. new_data = req.data
  2845. # On python 2 urlh.geturl() may sometimes return redirect URL
  2846. # as a byte string instead of unicode. This workaround forces
  2847. # it to return unicode.
  2848. newurl = _decode_compat_str(newurl)
  2849. # Be conciliant with URIs containing a space. This is mainly
  2850. # redundant with the more complete encoding done in http_error_302(),
  2851. # but it is kept for compatibility with other callers.
  2852. newurl = newurl.replace(' ', '%20')
  2853. # Technically the Cookie header should be in unredirected_hdrs;
  2854. # however in practice some may set it in normal headers anyway.
  2855. # We will remove it here to prevent any leaks.
  2856. remove_headers = ['Cookie']
  2857. # A 303 must either use GET or HEAD for subsequent request
  2858. # https://datatracker.ietf.org/doc/html/rfc7231#section-6.4.4
  2859. if code == 303 and req.get_method() != 'HEAD':
  2860. new_method = 'GET'
  2861. # 301 and 302 redirects are commonly turned into a GET from a POST
  2862. # for subsequent requests by browsers, so we'll do the same.
  2863. # https://datatracker.ietf.org/doc/html/rfc7231#section-6.4.2
  2864. # https://datatracker.ietf.org/doc/html/rfc7231#section-6.4.3
  2865. elif code in (301, 302) and req.get_method() == 'POST':
  2866. new_method = 'GET'
  2867. # only remove payload if method changed (e.g. POST to GET)
  2868. if new_method != req.get_method():
  2869. new_data = None
  2870. remove_headers.extend(['Content-Length', 'Content-Type'])
  2871. new_headers = filter_dict(req.headers, cndn=lambda k, _: k.title() not in remove_headers)
  2872. return compat_urllib_request.Request(
  2873. newurl, headers=new_headers, origin_req_host=req.origin_req_host,
  2874. unverifiable=True, method=new_method, data=new_data)
  2875. def extract_timezone(date_str):
  2876. m = re.search(
  2877. r'''(?x)
  2878. ^.{8,}? # >=8 char non-TZ prefix, if present
  2879. (?P<tz>Z| # just the UTC Z, or
  2880. (?:(?<=.\b\d{4}|\b\d{2}:\d\d)| # preceded by 4 digits or hh:mm or
  2881. (?<!.\b[a-zA-Z]{3}|[a-zA-Z]{4}|..\b\d\d)) # not preceded by 3 alpha word or >= 4 alpha or 2 digits
  2882. [ ]? # optional space
  2883. (?P<sign>\+|-) # +/-
  2884. (?P<hours>[0-9]{2}):?(?P<minutes>[0-9]{2}) # hh[:]mm
  2885. $)
  2886. ''', date_str)
  2887. if not m:
  2888. m = re.search(r'\d{1,2}:\d{1,2}(?:\.\d+)?(?P<tz>\s*[A-Z]+)$', date_str)
  2889. timezone = TIMEZONE_NAMES.get(m and m.group('tz').strip())
  2890. if timezone is not None:
  2891. date_str = date_str[:-len(m.group('tz'))]
  2892. timezone = datetime.timedelta(hours=timezone or 0)
  2893. else:
  2894. date_str = date_str[:-len(m.group('tz'))]
  2895. if not m.group('sign'):
  2896. timezone = datetime.timedelta()
  2897. else:
  2898. sign = 1 if m.group('sign') == '+' else -1
  2899. timezone = datetime.timedelta(
  2900. hours=sign * int(m.group('hours')),
  2901. minutes=sign * int(m.group('minutes')))
  2902. return timezone, date_str
  2903. def parse_iso8601(date_str, delimiter='T', timezone=None):
  2904. """ Return a UNIX timestamp from the given date """
  2905. if date_str is None:
  2906. return None
  2907. date_str = re.sub(r'\.[0-9]+', '', date_str)
  2908. if timezone is None:
  2909. timezone, date_str = extract_timezone(date_str)
  2910. try:
  2911. date_format = '%Y-%m-%d{0}%H:%M:%S'.format(delimiter)
  2912. dt = datetime.datetime.strptime(date_str, date_format) - timezone
  2913. return calendar.timegm(dt.timetuple())
  2914. except ValueError:
  2915. pass
  2916. def date_formats(day_first=True):
  2917. return DATE_FORMATS_DAY_FIRST if day_first else DATE_FORMATS_MONTH_FIRST
  2918. def unified_strdate(date_str, day_first=True):
  2919. """Return a string with the date in the format YYYYMMDD"""
  2920. if date_str is None:
  2921. return None
  2922. upload_date = None
  2923. # Replace commas
  2924. date_str = date_str.replace(',', ' ')
  2925. # Remove AM/PM + timezone
  2926. date_str = re.sub(r'(?i)\s*(?:AM|PM)(?:\s+[A-Z]+)?', '', date_str)
  2927. _, date_str = extract_timezone(date_str)
  2928. for expression in date_formats(day_first):
  2929. try:
  2930. upload_date = datetime.datetime.strptime(date_str, expression).strftime('%Y%m%d')
  2931. except ValueError:
  2932. pass
  2933. if upload_date is None:
  2934. timetuple = email.utils.parsedate_tz(date_str)
  2935. if timetuple:
  2936. try:
  2937. upload_date = datetime.datetime(*timetuple[:6]).strftime('%Y%m%d')
  2938. except ValueError:
  2939. pass
  2940. if upload_date is not None:
  2941. return compat_str(upload_date)
  2942. def unified_timestamp(date_str, day_first=True):
  2943. if date_str is None:
  2944. return None
  2945. date_str = re.sub(r'\s+', ' ', re.sub(
  2946. r'(?i)[,|]|(mon|tues?|wed(nes)?|thu(rs)?|fri|sat(ur)?)(day)?', '', date_str))
  2947. pm_delta = 12 if re.search(r'(?i)PM', date_str) else 0
  2948. timezone, date_str = extract_timezone(date_str)
  2949. # Remove AM/PM + timezone
  2950. date_str = re.sub(r'(?i)\s*(?:AM|PM)(?:\s+[A-Z]+)?', '', date_str)
  2951. # Remove unrecognized timezones from ISO 8601 alike timestamps
  2952. m = re.search(r'\d{1,2}:\d{1,2}(?:\.\d+)?(?P<tz>\s*[A-Z]+)$', date_str)
  2953. if m:
  2954. date_str = date_str[:-len(m.group('tz'))]
  2955. # Python only supports microseconds, so remove nanoseconds
  2956. m = re.search(r'^([0-9]{4,}-[0-9]{1,2}-[0-9]{1,2}T[0-9]{1,2}:[0-9]{1,2}:[0-9]{1,2}\.[0-9]{6})[0-9]+$', date_str)
  2957. if m:
  2958. date_str = m.group(1)
  2959. for expression in date_formats(day_first):
  2960. try:
  2961. dt = datetime.datetime.strptime(date_str, expression) - timezone + datetime.timedelta(hours=pm_delta)
  2962. return calendar.timegm(dt.timetuple())
  2963. except ValueError:
  2964. pass
  2965. timetuple = email.utils.parsedate_tz(date_str)
  2966. if timetuple:
  2967. return calendar.timegm(timetuple) + pm_delta * 3600 - compat_datetime_timedelta_total_seconds(timezone)
  2968. def determine_ext(url, default_ext='unknown_video'):
  2969. if url is None or '.' not in url:
  2970. return default_ext
  2971. guess = url.partition('?')[0].rpartition('.')[2]
  2972. if re.match(r'^[A-Za-z0-9]+$', guess):
  2973. return guess
  2974. # Try extract ext from URLs like http://example.com/foo/bar.mp4/?download
  2975. elif guess.rstrip('/') in KNOWN_EXTENSIONS:
  2976. return guess.rstrip('/')
  2977. else:
  2978. return default_ext
  2979. def subtitles_filename(filename, sub_lang, sub_format, expected_real_ext=None):
  2980. return replace_extension(filename, sub_lang + '.' + sub_format, expected_real_ext)
  2981. def date_from_str(date_str):
  2982. """
  2983. Return a datetime object from a string in the format YYYYMMDD or
  2984. (now|today)[+-][0-9](day|week|month|year)(s)?"""
  2985. today = datetime.date.today()
  2986. if date_str in ('now', 'today'):
  2987. return today
  2988. if date_str == 'yesterday':
  2989. return today - datetime.timedelta(days=1)
  2990. match = re.match(r'(now|today)(?P<sign>[+-])(?P<time>\d+)(?P<unit>day|week|month|year)(s)?', date_str)
  2991. if match is not None:
  2992. sign = match.group('sign')
  2993. time = int(match.group('time'))
  2994. if sign == '-':
  2995. time = -time
  2996. unit = match.group('unit')
  2997. # A bad approximation?
  2998. if unit == 'month':
  2999. unit = 'day'
  3000. time *= 30
  3001. elif unit == 'year':
  3002. unit = 'day'
  3003. time *= 365
  3004. unit += 's'
  3005. delta = datetime.timedelta(**{unit: time})
  3006. return today + delta
  3007. return datetime.datetime.strptime(date_str, '%Y%m%d').date()
  3008. def hyphenate_date(date_str):
  3009. """
  3010. Convert a date in 'YYYYMMDD' format to 'YYYY-MM-DD' format"""
  3011. match = re.match(r'^(\d\d\d\d)(\d\d)(\d\d)$', date_str)
  3012. if match is not None:
  3013. return '-'.join(match.groups())
  3014. else:
  3015. return date_str
  3016. class DateRange(object):
  3017. """Represents a time interval between two dates"""
  3018. def __init__(self, start=None, end=None):
  3019. """start and end must be strings in the format accepted by date"""
  3020. if start is not None:
  3021. self.start = date_from_str(start)
  3022. else:
  3023. self.start = datetime.datetime.min.date()
  3024. if end is not None:
  3025. self.end = date_from_str(end)
  3026. else:
  3027. self.end = datetime.datetime.max.date()
  3028. if self.start > self.end:
  3029. raise ValueError('Date range: "%s" , the start date must be before the end date' % self)
  3030. @classmethod
  3031. def day(cls, day):
  3032. """Returns a range that only contains the given day"""
  3033. return cls(day, day)
  3034. def __contains__(self, date):
  3035. """Check if the date is in the range"""
  3036. if not isinstance(date, datetime.date):
  3037. date = date_from_str(date)
  3038. return self.start <= date <= self.end
  3039. def __str__(self):
  3040. return '%s - %s' % (self.start.isoformat(), self.end.isoformat())
  3041. def __eq__(self, other):
  3042. return (isinstance(other, DateRange)
  3043. and self.start == other.start and self.end == other.end)
  3044. def platform_name():
  3045. """ Returns the platform name as a compat_str """
  3046. res = platform.platform()
  3047. return _decode_compat_str(res)
  3048. def _windows_write_string(s, out):
  3049. """ Returns True if the string was written using special methods,
  3050. False if it has yet to be written out."""
  3051. # Adapted from http://stackoverflow.com/a/3259271/35070
  3052. import ctypes
  3053. import ctypes.wintypes
  3054. WIN_OUTPUT_IDS = {
  3055. 1: -11,
  3056. 2: -12,
  3057. }
  3058. try:
  3059. fileno = out.fileno()
  3060. except AttributeError:
  3061. # If the output stream doesn't have a fileno, it's virtual
  3062. return False
  3063. except io.UnsupportedOperation:
  3064. # Some strange Windows pseudo files?
  3065. return False
  3066. if fileno not in WIN_OUTPUT_IDS:
  3067. return False
  3068. GetStdHandle = compat_ctypes_WINFUNCTYPE(
  3069. ctypes.wintypes.HANDLE, ctypes.wintypes.DWORD)(
  3070. ('GetStdHandle', ctypes.windll.kernel32))
  3071. h = GetStdHandle(WIN_OUTPUT_IDS[fileno])
  3072. WriteConsoleW = compat_ctypes_WINFUNCTYPE(
  3073. ctypes.wintypes.BOOL, ctypes.wintypes.HANDLE, ctypes.wintypes.LPWSTR,
  3074. ctypes.wintypes.DWORD, ctypes.POINTER(ctypes.wintypes.DWORD),
  3075. ctypes.wintypes.LPVOID)(('WriteConsoleW', ctypes.windll.kernel32))
  3076. written = ctypes.wintypes.DWORD(0)
  3077. GetFileType = compat_ctypes_WINFUNCTYPE(ctypes.wintypes.DWORD, ctypes.wintypes.DWORD)(('GetFileType', ctypes.windll.kernel32))
  3078. FILE_TYPE_CHAR = 0x0002
  3079. FILE_TYPE_REMOTE = 0x8000
  3080. GetConsoleMode = compat_ctypes_WINFUNCTYPE(
  3081. ctypes.wintypes.BOOL, ctypes.wintypes.HANDLE,
  3082. ctypes.POINTER(ctypes.wintypes.DWORD))(
  3083. ('GetConsoleMode', ctypes.windll.kernel32))
  3084. INVALID_HANDLE_VALUE = ctypes.wintypes.DWORD(-1).value
  3085. def not_a_console(handle):
  3086. if handle == INVALID_HANDLE_VALUE or handle is None:
  3087. return True
  3088. return ((GetFileType(handle) & ~FILE_TYPE_REMOTE) != FILE_TYPE_CHAR
  3089. or GetConsoleMode(handle, ctypes.byref(ctypes.wintypes.DWORD())) == 0)
  3090. if not_a_console(h):
  3091. return False
  3092. def next_nonbmp_pos(s):
  3093. try:
  3094. return next(i for i, c in enumerate(s) if ord(c) > 0xffff)
  3095. except StopIteration:
  3096. return len(s)
  3097. while s:
  3098. count = min(next_nonbmp_pos(s), 1024)
  3099. ret = WriteConsoleW(
  3100. h, s, count if count else 2, ctypes.byref(written), None)
  3101. if ret == 0:
  3102. raise OSError('Failed to write string')
  3103. if not count: # We just wrote a non-BMP character
  3104. assert written.value == 2
  3105. s = s[1:]
  3106. else:
  3107. assert written.value > 0
  3108. s = s[written.value:]
  3109. return True
  3110. def write_string(s, out=None, encoding=None):
  3111. if out is None:
  3112. out = sys.stderr
  3113. assert isinstance(s, compat_str)
  3114. if sys.platform == 'win32' and encoding is None and hasattr(out, 'fileno'):
  3115. if _windows_write_string(s, out):
  3116. return
  3117. if ('b' in getattr(out, 'mode', '')
  3118. or sys.version_info[0] < 3): # Python 2 lies about mode of sys.stderr
  3119. byt = s.encode(encoding or preferredencoding(), 'ignore')
  3120. out.write(byt)
  3121. elif hasattr(out, 'buffer'):
  3122. enc = encoding or getattr(out, 'encoding', None) or preferredencoding()
  3123. byt = s.encode(enc, 'ignore')
  3124. out.buffer.write(byt)
  3125. else:
  3126. out.write(s)
  3127. out.flush()
  3128. def bytes_to_intlist(bs):
  3129. if not bs:
  3130. return []
  3131. if isinstance(bs[0], int): # Python 3
  3132. return list(bs)
  3133. else:
  3134. return [ord(c) for c in bs]
  3135. def intlist_to_bytes(xs):
  3136. if not xs:
  3137. return b''
  3138. return compat_struct_pack('%dB' % len(xs), *xs)
  3139. # Cross-platform file locking
  3140. if sys.platform == 'win32':
  3141. import ctypes.wintypes
  3142. import msvcrt
  3143. class OVERLAPPED(ctypes.Structure):
  3144. _fields_ = [
  3145. ('Internal', ctypes.wintypes.LPVOID),
  3146. ('InternalHigh', ctypes.wintypes.LPVOID),
  3147. ('Offset', ctypes.wintypes.DWORD),
  3148. ('OffsetHigh', ctypes.wintypes.DWORD),
  3149. ('hEvent', ctypes.wintypes.HANDLE),
  3150. ]
  3151. kernel32 = ctypes.windll.kernel32
  3152. LockFileEx = kernel32.LockFileEx
  3153. LockFileEx.argtypes = [
  3154. ctypes.wintypes.HANDLE, # hFile
  3155. ctypes.wintypes.DWORD, # dwFlags
  3156. ctypes.wintypes.DWORD, # dwReserved
  3157. ctypes.wintypes.DWORD, # nNumberOfBytesToLockLow
  3158. ctypes.wintypes.DWORD, # nNumberOfBytesToLockHigh
  3159. ctypes.POINTER(OVERLAPPED) # Overlapped
  3160. ]
  3161. LockFileEx.restype = ctypes.wintypes.BOOL
  3162. UnlockFileEx = kernel32.UnlockFileEx
  3163. UnlockFileEx.argtypes = [
  3164. ctypes.wintypes.HANDLE, # hFile
  3165. ctypes.wintypes.DWORD, # dwReserved
  3166. ctypes.wintypes.DWORD, # nNumberOfBytesToLockLow
  3167. ctypes.wintypes.DWORD, # nNumberOfBytesToLockHigh
  3168. ctypes.POINTER(OVERLAPPED) # Overlapped
  3169. ]
  3170. UnlockFileEx.restype = ctypes.wintypes.BOOL
  3171. whole_low = 0xffffffff
  3172. whole_high = 0x7fffffff
  3173. def _lock_file(f, exclusive):
  3174. overlapped = OVERLAPPED()
  3175. overlapped.Offset = 0
  3176. overlapped.OffsetHigh = 0
  3177. overlapped.hEvent = 0
  3178. f._lock_file_overlapped_p = ctypes.pointer(overlapped)
  3179. handle = msvcrt.get_osfhandle(f.fileno())
  3180. if not LockFileEx(handle, 0x2 if exclusive else 0x0, 0,
  3181. whole_low, whole_high, f._lock_file_overlapped_p):
  3182. raise OSError('Locking file failed: %r' % ctypes.FormatError())
  3183. def _unlock_file(f):
  3184. assert f._lock_file_overlapped_p
  3185. handle = msvcrt.get_osfhandle(f.fileno())
  3186. if not UnlockFileEx(handle, 0,
  3187. whole_low, whole_high, f._lock_file_overlapped_p):
  3188. raise OSError('Unlocking file failed: %r' % ctypes.FormatError())
  3189. else:
  3190. # Some platforms, such as Jython, is missing fcntl
  3191. try:
  3192. import fcntl
  3193. def _lock_file(f, exclusive):
  3194. fcntl.flock(f, fcntl.LOCK_EX if exclusive else fcntl.LOCK_SH)
  3195. def _unlock_file(f):
  3196. fcntl.flock(f, fcntl.LOCK_UN)
  3197. except ImportError:
  3198. UNSUPPORTED_MSG = 'file locking is not supported on this platform'
  3199. def _lock_file(f, exclusive):
  3200. raise IOError(UNSUPPORTED_MSG)
  3201. def _unlock_file(f):
  3202. raise IOError(UNSUPPORTED_MSG)
  3203. class locked_file(object):
  3204. def __init__(self, filename, mode, encoding=None):
  3205. assert mode in ['r', 'a', 'w']
  3206. self.f = io.open(filename, mode, encoding=encoding)
  3207. self.mode = mode
  3208. def __enter__(self):
  3209. exclusive = self.mode != 'r'
  3210. try:
  3211. _lock_file(self.f, exclusive)
  3212. except IOError:
  3213. self.f.close()
  3214. raise
  3215. return self
  3216. def __exit__(self, etype, value, traceback):
  3217. try:
  3218. _unlock_file(self.f)
  3219. finally:
  3220. self.f.close()
  3221. def __iter__(self):
  3222. return iter(self.f)
  3223. def write(self, *args):
  3224. return self.f.write(*args)
  3225. def read(self, *args):
  3226. return self.f.read(*args)
  3227. def get_filesystem_encoding():
  3228. encoding = sys.getfilesystemencoding()
  3229. return encoding if encoding is not None else 'utf-8'
  3230. def shell_quote(args):
  3231. quoted_args = []
  3232. encoding = get_filesystem_encoding()
  3233. for a in args:
  3234. # We may get a filename encoded with 'encodeFilename'
  3235. a = _decode_compat_str(a, encoding)
  3236. quoted_args.append(compat_shlex_quote(a))
  3237. return ' '.join(quoted_args)
  3238. def smuggle_url(url, data):
  3239. """ Pass additional data in a URL for internal use. """
  3240. url, idata = unsmuggle_url(url, {})
  3241. data.update(idata)
  3242. sdata = compat_urllib_parse_urlencode(
  3243. {'__youtubedl_smuggle': json.dumps(data)})
  3244. return url + '#' + sdata
  3245. def unsmuggle_url(smug_url, default=None):
  3246. if '#__youtubedl_smuggle' not in smug_url:
  3247. return smug_url, default
  3248. url, _, sdata = smug_url.rpartition('#')
  3249. jsond = compat_parse_qs(sdata)['__youtubedl_smuggle'][0]
  3250. data = json.loads(jsond)
  3251. return url, data
  3252. def format_bytes(bytes):
  3253. if bytes is None:
  3254. return 'N/A'
  3255. if type(bytes) is str:
  3256. bytes = float(bytes)
  3257. if bytes == 0.0:
  3258. exponent = 0
  3259. else:
  3260. exponent = int(math.log(bytes, 1024.0))
  3261. suffix = ['B', 'KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB', 'ZiB', 'YiB'][exponent]
  3262. converted = float(bytes) / float(1024 ** exponent)
  3263. return '%.2f%s' % (converted, suffix)
  3264. def lookup_unit_table(unit_table, s):
  3265. units_re = '|'.join(re.escape(u) for u in unit_table)
  3266. m = re.match(
  3267. r'(?P<num>[0-9]+(?:[,.][0-9]*)?)\s*(?P<unit>%s)\b' % units_re, s)
  3268. if not m:
  3269. return None
  3270. num_str = m.group('num').replace(',', '.')
  3271. mult = unit_table[m.group('unit')]
  3272. return int(float(num_str) * mult)
  3273. def parse_filesize(s):
  3274. if s is None:
  3275. return None
  3276. # The lower-case forms are of course incorrect and unofficial,
  3277. # but we support those too
  3278. _UNIT_TABLE = {
  3279. 'B': 1,
  3280. 'b': 1,
  3281. 'bytes': 1,
  3282. 'KiB': 1024,
  3283. 'KB': 1000,
  3284. 'kB': 1024,
  3285. 'Kb': 1000,
  3286. 'kb': 1000,
  3287. 'kilobytes': 1000,
  3288. 'kibibytes': 1024,
  3289. 'MiB': 1024 ** 2,
  3290. 'MB': 1000 ** 2,
  3291. 'mB': 1024 ** 2,
  3292. 'Mb': 1000 ** 2,
  3293. 'mb': 1000 ** 2,
  3294. 'megabytes': 1000 ** 2,
  3295. 'mebibytes': 1024 ** 2,
  3296. 'GiB': 1024 ** 3,
  3297. 'GB': 1000 ** 3,
  3298. 'gB': 1024 ** 3,
  3299. 'Gb': 1000 ** 3,
  3300. 'gb': 1000 ** 3,
  3301. 'gigabytes': 1000 ** 3,
  3302. 'gibibytes': 1024 ** 3,
  3303. 'TiB': 1024 ** 4,
  3304. 'TB': 1000 ** 4,
  3305. 'tB': 1024 ** 4,
  3306. 'Tb': 1000 ** 4,
  3307. 'tb': 1000 ** 4,
  3308. 'terabytes': 1000 ** 4,
  3309. 'tebibytes': 1024 ** 4,
  3310. 'PiB': 1024 ** 5,
  3311. 'PB': 1000 ** 5,
  3312. 'pB': 1024 ** 5,
  3313. 'Pb': 1000 ** 5,
  3314. 'pb': 1000 ** 5,
  3315. 'petabytes': 1000 ** 5,
  3316. 'pebibytes': 1024 ** 5,
  3317. 'EiB': 1024 ** 6,
  3318. 'EB': 1000 ** 6,
  3319. 'eB': 1024 ** 6,
  3320. 'Eb': 1000 ** 6,
  3321. 'eb': 1000 ** 6,
  3322. 'exabytes': 1000 ** 6,
  3323. 'exbibytes': 1024 ** 6,
  3324. 'ZiB': 1024 ** 7,
  3325. 'ZB': 1000 ** 7,
  3326. 'zB': 1024 ** 7,
  3327. 'Zb': 1000 ** 7,
  3328. 'zb': 1000 ** 7,
  3329. 'zettabytes': 1000 ** 7,
  3330. 'zebibytes': 1024 ** 7,
  3331. 'YiB': 1024 ** 8,
  3332. 'YB': 1000 ** 8,
  3333. 'yB': 1024 ** 8,
  3334. 'Yb': 1000 ** 8,
  3335. 'yb': 1000 ** 8,
  3336. 'yottabytes': 1000 ** 8,
  3337. 'yobibytes': 1024 ** 8,
  3338. }
  3339. return lookup_unit_table(_UNIT_TABLE, s)
  3340. def parse_count(s):
  3341. if s is None:
  3342. return None
  3343. s = s.strip()
  3344. if re.match(r'^[\d,.]+$', s):
  3345. return str_to_int(s)
  3346. _UNIT_TABLE = {
  3347. 'k': 1000,
  3348. 'K': 1000,
  3349. 'm': 1000 ** 2,
  3350. 'M': 1000 ** 2,
  3351. 'kk': 1000 ** 2,
  3352. 'KK': 1000 ** 2,
  3353. }
  3354. return lookup_unit_table(_UNIT_TABLE, s)
  3355. def parse_resolution(s):
  3356. if s is None:
  3357. return {}
  3358. mobj = re.search(r'\b(?P<w>\d+)\s*[xX×]\s*(?P<h>\d+)\b', s)
  3359. if mobj:
  3360. return {
  3361. 'width': int(mobj.group('w')),
  3362. 'height': int(mobj.group('h')),
  3363. }
  3364. mobj = re.search(r'\b(\d+)[pPiI]\b', s)
  3365. if mobj:
  3366. return {'height': int(mobj.group(1))}
  3367. mobj = re.search(r'\b([48])[kK]\b', s)
  3368. if mobj:
  3369. return {'height': int(mobj.group(1)) * 540}
  3370. return {}
  3371. def parse_bitrate(s):
  3372. s = txt_or_none(s)
  3373. if not s:
  3374. return None
  3375. mobj = re.search(r'\b(\d+)\s*kbps', s)
  3376. if mobj:
  3377. return int(mobj.group(1))
  3378. def month_by_name(name, lang='en'):
  3379. """ Return the number of a month by (locale-independently) English name """
  3380. month_names = MONTH_NAMES.get(lang, MONTH_NAMES['en'])
  3381. try:
  3382. return month_names.index(name) + 1
  3383. except ValueError:
  3384. return None
  3385. def month_by_abbreviation(abbrev):
  3386. """ Return the number of a month by (locale-independently) English
  3387. abbreviations """
  3388. try:
  3389. return [s[:3] for s in ENGLISH_MONTH_NAMES].index(abbrev) + 1
  3390. except ValueError:
  3391. return None
  3392. def fix_xml_ampersands(xml_str):
  3393. """Replace all the '&' by '&amp;' in XML"""
  3394. return re.sub(
  3395. r'&(?!amp;|lt;|gt;|apos;|quot;|#x[0-9a-fA-F]{,4};|#[0-9]{,4};)',
  3396. '&amp;',
  3397. xml_str)
  3398. def setproctitle(title):
  3399. assert isinstance(title, compat_str)
  3400. # ctypes in Jython is not complete
  3401. # http://bugs.jython.org/issue2148
  3402. if sys.platform.startswith('java'):
  3403. return
  3404. try:
  3405. libc = ctypes.cdll.LoadLibrary('libc.so.6')
  3406. except OSError:
  3407. return
  3408. except TypeError:
  3409. # LoadLibrary in Windows Python 2.7.13 only expects
  3410. # a bytestring, but since unicode_literals turns
  3411. # every string into a unicode string, it fails.
  3412. return
  3413. title_bytes = title.encode('utf-8')
  3414. buf = ctypes.create_string_buffer(len(title_bytes))
  3415. buf.value = title_bytes
  3416. try:
  3417. libc.prctl(15, buf, 0, 0, 0)
  3418. except AttributeError:
  3419. return # Strange libc, just skip this
  3420. def remove_start(s, start):
  3421. return s[len(start):] if s is not None and s.startswith(start) else s
  3422. def remove_end(s, end):
  3423. return s[:-len(end)] if s is not None and s.endswith(end) else s
  3424. def remove_quotes(s):
  3425. if s is None or len(s) < 2:
  3426. return s
  3427. for quote in ('"', "'", ):
  3428. if s[0] == quote and s[-1] == quote:
  3429. return s[1:-1]
  3430. return s
  3431. def url_basename(url):
  3432. path = compat_urllib_parse.urlparse(url).path
  3433. return path.strip('/').split('/')[-1]
  3434. def base_url(url):
  3435. return re.match(r'https?://[^?#&]+/', url).group()
  3436. def urljoin(base, path):
  3437. path = _decode_compat_str(path, encoding='utf-8', or_none=True)
  3438. if not path:
  3439. return None
  3440. if re.match(r'^(?:[a-zA-Z][a-zA-Z0-9+-.]*:)?//', path):
  3441. return path
  3442. base = _decode_compat_str(base, encoding='utf-8', or_none=True)
  3443. if not base:
  3444. return None
  3445. return (
  3446. re.match(r'^(?:https?:)?//', base)
  3447. and compat_urllib_parse.urljoin(base, path))
  3448. class HEADRequest(compat_urllib_request.Request):
  3449. def get_method(self):
  3450. return 'HEAD'
  3451. class PUTRequest(compat_urllib_request.Request):
  3452. def get_method(self):
  3453. return 'PUT'
  3454. def int_or_none(v, scale=1, default=None, get_attr=None, invscale=1, base=None):
  3455. if get_attr:
  3456. if v is not None:
  3457. v = getattr(v, get_attr, None)
  3458. if v in (None, ''):
  3459. return default
  3460. try:
  3461. # like int, raise if base is specified and v is not a string
  3462. return (int(v) if base is None else int(v, base=base)) * invscale // scale
  3463. except (ValueError, TypeError, OverflowError):
  3464. return default
  3465. def str_or_none(v, default=None):
  3466. return default if v is None else compat_str(v)
  3467. def str_to_int(int_str):
  3468. """ A more relaxed version of int_or_none """
  3469. if isinstance(int_str, compat_integer_types):
  3470. return int_str
  3471. elif isinstance(int_str, compat_str):
  3472. int_str = re.sub(r'[,\.\+]', '', int_str)
  3473. return int_or_none(int_str)
  3474. def float_or_none(v, scale=1, invscale=1, default=None):
  3475. if v is None:
  3476. return default
  3477. try:
  3478. return float(v) * invscale / scale
  3479. except (ValueError, TypeError):
  3480. return default
  3481. def bool_or_none(v, default=None):
  3482. return v if isinstance(v, bool) else default
  3483. def strip_or_none(v, default=None):
  3484. return v.strip() if isinstance(v, compat_str) else default
  3485. def txt_or_none(v, default=None):
  3486. """ Combine str/strip_or_none, disallow blank value (for traverse_obj) """
  3487. return default if v is None else (compat_str(v).strip() or default)
  3488. def url_or_none(url):
  3489. if not url or not isinstance(url, compat_str):
  3490. return None
  3491. url = url.strip()
  3492. return url if re.match(r'^(?:(?:https?|rt(?:m(?:pt?[es]?|fp)|sp[su]?)|mms|ftps?):)?//', url) else None
  3493. def parse_duration(s):
  3494. if not isinstance(s, compat_basestring):
  3495. return None
  3496. s = s.strip()
  3497. days, hours, mins, secs, ms = [None] * 5
  3498. m = re.match(r'(?:(?:(?:(?P<days>[0-9]+):)?(?P<hours>[0-9]+):)?(?P<mins>[0-9]+):)?(?P<secs>[0-9]+)(?P<ms>\.[0-9]+)?Z?$', s)
  3499. if m:
  3500. days, hours, mins, secs, ms = m.groups()
  3501. else:
  3502. m = re.match(
  3503. r'''(?ix)(?:P?
  3504. (?:
  3505. [0-9]+\s*y(?:ears?)?\s*
  3506. )?
  3507. (?:
  3508. [0-9]+\s*m(?:onths?)?\s*
  3509. )?
  3510. (?:
  3511. [0-9]+\s*w(?:eeks?)?\s*
  3512. )?
  3513. (?:
  3514. (?P<days>[0-9]+)\s*d(?:ays?)?\s*
  3515. )?
  3516. T)?
  3517. (?:
  3518. (?P<hours>[0-9]+)\s*h(?:ours?)?\s*
  3519. )?
  3520. (?:
  3521. (?P<mins>[0-9]+)\s*m(?:in(?:ute)?s?)?\s*
  3522. )?
  3523. (?:
  3524. (?P<secs>[0-9]+)(?P<ms>\.[0-9]+)?\s*s(?:ec(?:ond)?s?)?\s*
  3525. )?Z?$''', s)
  3526. if m:
  3527. days, hours, mins, secs, ms = m.groups()
  3528. else:
  3529. m = re.match(r'(?i)(?:(?P<hours>[0-9.]+)\s*(?:hours?)|(?P<mins>[0-9.]+)\s*(?:mins?\.?|minutes?)\s*)Z?$', s)
  3530. if m:
  3531. hours, mins = m.groups()
  3532. else:
  3533. return None
  3534. duration = 0
  3535. if secs:
  3536. duration += float(secs)
  3537. if mins:
  3538. duration += float(mins) * 60
  3539. if hours:
  3540. duration += float(hours) * 60 * 60
  3541. if days:
  3542. duration += float(days) * 24 * 60 * 60
  3543. if ms:
  3544. duration += float(ms)
  3545. return duration
  3546. def prepend_extension(filename, ext, expected_real_ext=None):
  3547. name, real_ext = os.path.splitext(filename)
  3548. return (
  3549. '{0}.{1}{2}'.format(name, ext, real_ext)
  3550. if not expected_real_ext or real_ext[1:] == expected_real_ext
  3551. else '{0}.{1}'.format(filename, ext))
  3552. def replace_extension(filename, ext, expected_real_ext=None):
  3553. name, real_ext = os.path.splitext(filename)
  3554. return '{0}.{1}'.format(
  3555. name if not expected_real_ext or real_ext[1:] == expected_real_ext else filename,
  3556. ext)
  3557. def check_executable(exe, args=[]):
  3558. """ Checks if the given binary is installed somewhere in PATH, and returns its name.
  3559. args can be a list of arguments for a short output (like -version) """
  3560. try:
  3561. process_communicate_or_kill(subprocess.Popen(
  3562. [exe] + args, stdout=subprocess.PIPE, stderr=subprocess.PIPE))
  3563. except OSError:
  3564. return False
  3565. return exe
  3566. def get_exe_version(exe, args=['--version'],
  3567. version_re=None, unrecognized='present'):
  3568. """ Returns the version of the specified executable,
  3569. or False if the executable is not present """
  3570. try:
  3571. # STDIN should be redirected too. On UNIX-like systems, ffmpeg triggers
  3572. # SIGTTOU if youtube-dl is run in the background.
  3573. # See https://github.com/ytdl-org/youtube-dl/issues/955#issuecomment-209789656
  3574. out, _ = process_communicate_or_kill(subprocess.Popen(
  3575. [encodeArgument(exe)] + args,
  3576. stdin=subprocess.PIPE,
  3577. stdout=subprocess.PIPE, stderr=subprocess.STDOUT))
  3578. except OSError:
  3579. return False
  3580. out = _decode_compat_str(out, 'ascii', 'ignore')
  3581. return detect_exe_version(out, version_re, unrecognized)
  3582. def detect_exe_version(output, version_re=None, unrecognized='present'):
  3583. assert isinstance(output, compat_str)
  3584. if version_re is None:
  3585. version_re = r'version\s+([-0-9._a-zA-Z]+)'
  3586. m = re.search(version_re, output)
  3587. if m:
  3588. return m.group(1)
  3589. else:
  3590. return unrecognized
  3591. class LazyList(compat_collections_abc.Iterable):
  3592. """Lazy immutable list from an iterable
  3593. Note that slices of a LazyList are lists and not LazyList"""
  3594. class IndexError(IndexError):
  3595. def __init__(self, cause=None):
  3596. if cause:
  3597. # reproduce `raise from`
  3598. self.__cause__ = cause
  3599. super(IndexError, self).__init__()
  3600. def __init__(self, iterable, **kwargs):
  3601. # kwarg-only
  3602. reverse = kwargs.get('reverse', False)
  3603. _cache = kwargs.get('_cache')
  3604. self._iterable = iter(iterable)
  3605. self._cache = [] if _cache is None else _cache
  3606. self._reversed = reverse
  3607. def __iter__(self):
  3608. if self._reversed:
  3609. # We need to consume the entire iterable to iterate in reverse
  3610. for item in self.exhaust():
  3611. yield item
  3612. return
  3613. for item in self._cache:
  3614. yield item
  3615. for item in self._iterable:
  3616. self._cache.append(item)
  3617. yield item
  3618. def _exhaust(self):
  3619. self._cache.extend(self._iterable)
  3620. self._iterable = [] # Discard the emptied iterable to make it pickle-able
  3621. return self._cache
  3622. def exhaust(self):
  3623. """Evaluate the entire iterable"""
  3624. return self._exhaust()[::-1 if self._reversed else 1]
  3625. @staticmethod
  3626. def _reverse_index(x):
  3627. return None if x is None else ~x
  3628. def __getitem__(self, idx):
  3629. if isinstance(idx, slice):
  3630. if self._reversed:
  3631. idx = slice(self._reverse_index(idx.start), self._reverse_index(idx.stop), -(idx.step or 1))
  3632. start, stop, step = idx.start, idx.stop, idx.step or 1
  3633. elif isinstance(idx, int):
  3634. if self._reversed:
  3635. idx = self._reverse_index(idx)
  3636. start, stop, step = idx, idx, 0
  3637. else:
  3638. raise TypeError('indices must be integers or slices')
  3639. if ((start or 0) < 0 or (stop or 0) < 0
  3640. or (start is None and step < 0)
  3641. or (stop is None and step > 0)):
  3642. # We need to consume the entire iterable to be able to slice from the end
  3643. # Obviously, never use this with infinite iterables
  3644. self._exhaust()
  3645. try:
  3646. return self._cache[idx]
  3647. except IndexError as e:
  3648. raise self.IndexError(e)
  3649. n = max(start or 0, stop or 0) - len(self._cache) + 1
  3650. if n > 0:
  3651. self._cache.extend(itertools.islice(self._iterable, n))
  3652. try:
  3653. return self._cache[idx]
  3654. except IndexError as e:
  3655. raise self.IndexError(e)
  3656. def __bool__(self):
  3657. try:
  3658. self[-1] if self._reversed else self[0]
  3659. except self.IndexError:
  3660. return False
  3661. return True
  3662. def __len__(self):
  3663. self._exhaust()
  3664. return len(self._cache)
  3665. def __reversed__(self):
  3666. return type(self)(self._iterable, reverse=not self._reversed, _cache=self._cache)
  3667. def __copy__(self):
  3668. return type(self)(self._iterable, reverse=self._reversed, _cache=self._cache)
  3669. def __repr__(self):
  3670. # repr and str should mimic a list. So we exhaust the iterable
  3671. return repr(self.exhaust())
  3672. def __str__(self):
  3673. return repr(self.exhaust())
  3674. class PagedList(object):
  3675. def __len__(self):
  3676. # This is only useful for tests
  3677. return len(self.getslice())
  3678. class OnDemandPagedList(PagedList):
  3679. def __init__(self, pagefunc, pagesize, use_cache=True):
  3680. self._pagefunc = pagefunc
  3681. self._pagesize = pagesize
  3682. self._use_cache = use_cache
  3683. if use_cache:
  3684. self._cache = {}
  3685. def getslice(self, start=0, end=None):
  3686. res = []
  3687. for pagenum in itertools.count(start // self._pagesize):
  3688. firstid = pagenum * self._pagesize
  3689. nextfirstid = pagenum * self._pagesize + self._pagesize
  3690. if start >= nextfirstid:
  3691. continue
  3692. page_results = None
  3693. if self._use_cache:
  3694. page_results = self._cache.get(pagenum)
  3695. if page_results is None:
  3696. page_results = list(self._pagefunc(pagenum))
  3697. if self._use_cache:
  3698. self._cache[pagenum] = page_results
  3699. startv = (
  3700. start % self._pagesize
  3701. if firstid <= start < nextfirstid
  3702. else 0)
  3703. endv = (
  3704. ((end - 1) % self._pagesize) + 1
  3705. if (end is not None and firstid <= end <= nextfirstid)
  3706. else None)
  3707. if startv != 0 or endv is not None:
  3708. page_results = page_results[startv:endv]
  3709. res.extend(page_results)
  3710. # A little optimization - if current page is not "full", ie. does
  3711. # not contain page_size videos then we can assume that this page
  3712. # is the last one - there are no more ids on further pages -
  3713. # i.e. no need to query again.
  3714. if len(page_results) + startv < self._pagesize:
  3715. break
  3716. # If we got the whole page, but the next page is not interesting,
  3717. # break out early as well
  3718. if end == nextfirstid:
  3719. break
  3720. return res
  3721. class InAdvancePagedList(PagedList):
  3722. def __init__(self, pagefunc, pagecount, pagesize):
  3723. self._pagefunc = pagefunc
  3724. self._pagecount = pagecount
  3725. self._pagesize = pagesize
  3726. def getslice(self, start=0, end=None):
  3727. res = []
  3728. start_page = start // self._pagesize
  3729. end_page = (
  3730. self._pagecount if end is None else (end // self._pagesize + 1))
  3731. skip_elems = start - start_page * self._pagesize
  3732. only_more = None if end is None else end - start
  3733. for pagenum in range(start_page, end_page):
  3734. page = list(self._pagefunc(pagenum))
  3735. if skip_elems:
  3736. page = page[skip_elems:]
  3737. skip_elems = None
  3738. if only_more is not None:
  3739. if len(page) < only_more:
  3740. only_more -= len(page)
  3741. else:
  3742. page = page[:only_more]
  3743. res.extend(page)
  3744. break
  3745. res.extend(page)
  3746. return res
  3747. def uppercase_escape(s):
  3748. unicode_escape = codecs.getdecoder('unicode_escape')
  3749. return re.sub(
  3750. r'\\U[0-9a-fA-F]{8}',
  3751. lambda m: unicode_escape(m.group(0))[0],
  3752. s)
  3753. def lowercase_escape(s):
  3754. unicode_escape = codecs.getdecoder('unicode_escape')
  3755. return re.sub(
  3756. r'\\u[0-9a-fA-F]{4}',
  3757. lambda m: unicode_escape(m.group(0))[0],
  3758. s)
  3759. def escape_rfc3986(s):
  3760. """Escape non-ASCII characters as suggested by RFC 3986"""
  3761. if sys.version_info < (3, 0):
  3762. s = _encode_compat_str(s, 'utf-8')
  3763. # ensure unicode: after quoting, it can always be converted
  3764. return compat_str(compat_urllib_parse.quote(s, b"%/;:@&=+$,!~*'()?#[]"))
  3765. def escape_url(url):
  3766. """Escape URL as suggested by RFC 3986"""
  3767. url_parsed = compat_urllib_parse_urlparse(url)
  3768. return url_parsed._replace(
  3769. netloc=url_parsed.netloc.encode('idna').decode('ascii'),
  3770. path=escape_rfc3986(url_parsed.path),
  3771. params=escape_rfc3986(url_parsed.params),
  3772. query=escape_rfc3986(url_parsed.query),
  3773. fragment=escape_rfc3986(url_parsed.fragment)
  3774. ).geturl()
  3775. def parse_qs(url, **kwargs):
  3776. return compat_parse_qs(compat_urllib_parse.urlparse(url).query, **kwargs)
  3777. def read_batch_urls(batch_fd):
  3778. def fixup(url):
  3779. url = _decode_compat_str(url, 'utf-8', 'replace')
  3780. BOM_UTF8 = '\xef\xbb\xbf'
  3781. if url.startswith(BOM_UTF8):
  3782. url = url[len(BOM_UTF8):]
  3783. url = url.strip()
  3784. if url.startswith(('#', ';', ']')):
  3785. return False
  3786. return url
  3787. with contextlib.closing(batch_fd) as fd:
  3788. return [url for url in map(fixup, fd) if url]
  3789. def urlencode_postdata(*args, **kargs):
  3790. return compat_urllib_parse_urlencode(*args, **kargs).encode('ascii')
  3791. def update_url(url, **kwargs):
  3792. """Replace URL components specified by kwargs
  3793. url: compat_str or parsed URL tuple
  3794. if query_update is in kwargs, update query with
  3795. its value instead of replacing (overrides any `query`)
  3796. NB: query_update expects parse_qs() format: [key: value_list, ...]
  3797. returns: compat_str
  3798. """
  3799. if not kwargs:
  3800. return compat_urllib_parse.urlunparse(url) if isinstance(url, tuple) else url
  3801. if not isinstance(url, tuple):
  3802. url = compat_urllib_parse.urlparse(url)
  3803. query = kwargs.pop('query_update', None)
  3804. if query:
  3805. qs = compat_parse_qs(url.query)
  3806. qs.update(query)
  3807. kwargs['query'] = compat_urllib_parse_urlencode(qs, True)
  3808. kwargs = compat_kwargs(kwargs)
  3809. return compat_urllib_parse.urlunparse(url._replace(**kwargs))
  3810. def update_url_query(url, query):
  3811. return update_url(url, query_update=query)
  3812. def update_Request(req, url=None, data=None, headers={}, query={}):
  3813. req_headers = req.headers.copy()
  3814. req_headers.update(headers)
  3815. req_data = data if data is not None else req.data
  3816. req_url = update_url_query(url or req.get_full_url(), query)
  3817. req_type = {'HEAD': HEADRequest, 'PUT': PUTRequest}.get(
  3818. req.get_method(), compat_urllib_request.Request)
  3819. new_req = req_type(
  3820. req_url, data=req_data, headers=req_headers,
  3821. origin_req_host=req.origin_req_host, unverifiable=req.unverifiable)
  3822. if hasattr(req, 'timeout'):
  3823. new_req.timeout = req.timeout
  3824. return new_req
  3825. def _multipart_encode_impl(data, boundary):
  3826. content_type = 'multipart/form-data; boundary=%s' % boundary
  3827. out = b''
  3828. for k, v in data.items():
  3829. out += b'--' + boundary.encode('ascii') + b'\r\n'
  3830. k = _encode_compat_str(k, 'utf-8')
  3831. v = _encode_compat_str(v, 'utf-8')
  3832. # RFC 2047 requires non-ASCII field names to be encoded, while RFC 7578
  3833. # suggests sending UTF-8 directly. Firefox sends UTF-8, too
  3834. content = b'Content-Disposition: form-data; name="' + k + b'"\r\n\r\n' + v + b'\r\n'
  3835. if boundary.encode('ascii') in content:
  3836. raise ValueError('Boundary overlaps with data')
  3837. out += content
  3838. out += b'--' + boundary.encode('ascii') + b'--\r\n'
  3839. return out, content_type
  3840. def multipart_encode(data, boundary=None):
  3841. '''
  3842. Encode a dict to RFC 7578-compliant form-data
  3843. data:
  3844. A dict where keys and values can be either Unicode or bytes-like
  3845. objects.
  3846. boundary:
  3847. If specified a Unicode object, it's used as the boundary. Otherwise
  3848. a random boundary is generated.
  3849. Reference: https://tools.ietf.org/html/rfc7578
  3850. '''
  3851. has_specified_boundary = boundary is not None
  3852. while True:
  3853. if boundary is None:
  3854. boundary = '---------------' + str(random.randrange(0x0fffffff, 0xffffffff))
  3855. try:
  3856. out, content_type = _multipart_encode_impl(data, boundary)
  3857. break
  3858. except ValueError:
  3859. if has_specified_boundary:
  3860. raise
  3861. boundary = None
  3862. return out, content_type
  3863. def is_iterable_like(x, allowed_types=compat_collections_abc.Iterable, blocked_types=NO_DEFAULT):
  3864. if blocked_types is NO_DEFAULT:
  3865. blocked_types = (compat_str, bytes, compat_collections_abc.Mapping)
  3866. return isinstance(x, allowed_types) and not isinstance(x, blocked_types)
  3867. def variadic(x, allowed_types=NO_DEFAULT):
  3868. if isinstance(allowed_types, compat_collections_abc.Iterable):
  3869. allowed_types = tuple(allowed_types)
  3870. return x if is_iterable_like(x, blocked_types=allowed_types) else (x,)
  3871. def dict_get(d, key_or_keys, default=None, skip_false_values=True):
  3872. exp = (lambda x: x or None) if skip_false_values else IDENTITY
  3873. return traverse_obj(d, *variadic(key_or_keys), expected_type=exp,
  3874. default=default, get_all=False)
  3875. def try_call(*funcs, **kwargs):
  3876. # parameter defaults
  3877. expected_type = kwargs.get('expected_type')
  3878. fargs = kwargs.get('args', [])
  3879. fkwargs = kwargs.get('kwargs', {})
  3880. for f in funcs:
  3881. try:
  3882. val = f(*fargs, **fkwargs)
  3883. except (AttributeError, KeyError, TypeError, IndexError, ZeroDivisionError):
  3884. pass
  3885. else:
  3886. if expected_type is None or isinstance(val, expected_type):
  3887. return val
  3888. def try_get(src, getter, expected_type=None):
  3889. if not isinstance(getter, (list, tuple)):
  3890. getter = [getter]
  3891. for get in getter:
  3892. try:
  3893. v = get(src)
  3894. except (AttributeError, KeyError, TypeError, IndexError):
  3895. pass
  3896. else:
  3897. if expected_type is None or isinstance(v, expected_type):
  3898. return v
  3899. def filter_dict(dct, cndn=lambda _, v: v is not None):
  3900. # NB: don't use dict comprehension for python 2.6 compatibility
  3901. return dict((k, v) for k, v in dct.items() if cndn(k, v))
  3902. def merge_dicts(*dicts, **kwargs):
  3903. """
  3904. Merge the `dict`s in `dicts` using the first valid value for each key.
  3905. Normally valid: not None and not an empty string
  3906. Keyword-only args:
  3907. unblank: allow empty string if False (default True)
  3908. rev: merge dicts in reverse order (default False)
  3909. merge_dicts(dct1, dct2, ..., unblank=False, rev=True)
  3910. matches {**dct1, **dct2, ...}
  3911. However, merge_dicts(dct1, dct2, ..., rev=True) may often be better.
  3912. """
  3913. unblank = kwargs.get('unblank', True)
  3914. rev = kwargs.get('rev', False)
  3915. if unblank:
  3916. def can_merge_str(k, v, to_dict):
  3917. return (isinstance(v, compat_str) and v
  3918. and isinstance(to_dict[k], compat_str)
  3919. and not to_dict[k])
  3920. else:
  3921. can_merge_str = lambda k, v, to_dict: False
  3922. merged = {}
  3923. for a_dict in reversed(dicts) if rev else dicts:
  3924. for k, v in a_dict.items():
  3925. if v is None:
  3926. continue
  3927. if (k not in merged) or can_merge_str(k, v, merged):
  3928. merged[k] = v
  3929. return merged
  3930. # very poor choice of name, as if Python string encodings weren't confusing enough
  3931. def encode_compat_str(s, encoding=preferredencoding(), errors='strict'):
  3932. assert isinstance(s, compat_basestring)
  3933. return s if isinstance(s, compat_str) else compat_str(s, encoding, errors)
  3934. # what it could have been
  3935. def _decode_compat_str(s, encoding=preferredencoding(), errors='strict', or_none=False):
  3936. if not or_none:
  3937. assert isinstance(s, compat_basestring)
  3938. return (
  3939. s if isinstance(s, compat_str)
  3940. else compat_str(s, encoding, errors) if isinstance(s, compat_basestring)
  3941. else None)
  3942. # the real encode_compat_str, but only for internal use
  3943. def _encode_compat_str(s, encoding=preferredencoding(), errors='strict'):
  3944. assert isinstance(s, compat_basestring)
  3945. return s.encode(encoding, errors) if isinstance(s, compat_str) else s
  3946. US_RATINGS = {
  3947. 'G': 0,
  3948. 'PG': 10,
  3949. 'PG-13': 13,
  3950. 'R': 16,
  3951. 'NC': 18,
  3952. }
  3953. TV_PARENTAL_GUIDELINES = {
  3954. 'TV-Y': 0,
  3955. 'TV-Y7': 7,
  3956. 'TV-G': 0,
  3957. 'TV-PG': 0,
  3958. 'TV-14': 14,
  3959. 'TV-MA': 17,
  3960. }
  3961. def parse_age_limit(s):
  3962. if not isinstance(s, bool):
  3963. age = int_or_none(s)
  3964. if age is not None:
  3965. return age if 0 <= age <= 21 else None
  3966. if not isinstance(s, compat_basestring):
  3967. return None
  3968. m = re.match(r'^(?P<age>\d{1,2})\+?$', s)
  3969. if m:
  3970. return int(m.group('age'))
  3971. if s in US_RATINGS:
  3972. return US_RATINGS[s]
  3973. m = re.match(r'^TV[_-]?(%s)$' % '|'.join(k[3:] for k in TV_PARENTAL_GUIDELINES), s)
  3974. if m:
  3975. return TV_PARENTAL_GUIDELINES['TV-' + m.group(1)]
  3976. return None
  3977. def strip_jsonp(code):
  3978. return re.sub(
  3979. r'''(?sx)^
  3980. (?:window\.)?(?P<func_name>[a-zA-Z0-9_.$]*)
  3981. (?:\s*&&\s*(?P=func_name))?
  3982. \s*\(\s*(?P<callback_data>.*)\);?
  3983. \s*?(?://[^\n]*)*$''',
  3984. r'\g<callback_data>', code)
  3985. def js_to_json(code, *args, **kwargs):
  3986. # vars is a dict of (var, val) pairs to substitute
  3987. vars = args[0] if len(args) > 0 else kwargs.get('vars', {})
  3988. strict = kwargs.get('strict', False)
  3989. STRING_QUOTES = '\'"`'
  3990. STRING_RE = '|'.join(r'{0}(?:\\.|[^\\{0}])*{0}'.format(q) for q in STRING_QUOTES)
  3991. COMMENT_RE = r'/\*(?:(?!\*/).)*?\*/|//[^\n]*\n'
  3992. SKIP_RE = r'\s*(?:{comment})?\s*'.format(comment=COMMENT_RE)
  3993. INTEGER_TABLE = (
  3994. (r'(?s)^(0[xX][0-9a-fA-F]+){skip}:?$'.format(skip=SKIP_RE), 16),
  3995. (r'(?s)^(0+[0-7]+){skip}:?$'.format(skip=SKIP_RE), 8),
  3996. (r'(?s)^(\d+){skip}:?$'.format(skip=SKIP_RE), 10),
  3997. )
  3998. # compat candidate
  3999. JSONDecodeError = json.JSONDecodeError if 'JSONDecodeError' in dir(json) else ValueError
  4000. def process_escape(match):
  4001. JSON_PASSTHROUGH_ESCAPES = r'"\bfnrtu'
  4002. escape = match.group(1) or match.group(2)
  4003. return ('\\' + escape if escape in JSON_PASSTHROUGH_ESCAPES
  4004. else '\\u00' if escape == 'x'
  4005. else '' if escape == '\n'
  4006. else escape)
  4007. def template_substitute(match):
  4008. evaluated = js_to_json(match.group(1), vars, strict=strict)
  4009. if evaluated[0] == '"':
  4010. return json.loads(evaluated)
  4011. return evaluated
  4012. def fix_kv(m):
  4013. v = m.group(0)
  4014. if v in ('true', 'false', 'null'):
  4015. return v
  4016. elif v in ('undefined', 'void 0'):
  4017. return 'null'
  4018. elif v.startswith('/*') or v.startswith('//') or v == ',':
  4019. return ''
  4020. if v[0] in STRING_QUOTES:
  4021. v = re.sub(r'(?s)\${([^}]+)}', template_substitute, v[1:-1]) if v[0] == '`' else v[1:-1]
  4022. escaped = re.sub(r'(?s)(")|\\(.)', process_escape, v)
  4023. return '"{0}"'.format(escaped)
  4024. inv = IDENTITY
  4025. im = re.split(r'^!+', v)
  4026. if len(im) > 1 and not im[-1].endswith(':'):
  4027. if (len(v) - len(im[1])) % 2 == 1:
  4028. inv = lambda x: 'true' if x == 0 else 'false'
  4029. else:
  4030. inv = lambda x: 'false' if x == 0 else 'true'
  4031. if not any(x for x in im):
  4032. return
  4033. v = im[-1]
  4034. for regex, base in INTEGER_TABLE:
  4035. im = re.match(regex, v)
  4036. if im:
  4037. i = int(im.group(1), base)
  4038. return ('"%s":' if v.endswith(':') else '%s') % inv(i)
  4039. if v in vars:
  4040. try:
  4041. if not strict:
  4042. json.loads(vars[v])
  4043. except JSONDecodeError:
  4044. return inv(json.dumps(vars[v]))
  4045. else:
  4046. return inv(vars[v])
  4047. if not strict:
  4048. v = try_call(inv, args=(v,), default=v)
  4049. if v in ('true', 'false'):
  4050. return v
  4051. return '"{0}"'.format(v)
  4052. raise ValueError('Unknown value: ' + v)
  4053. def create_map(mobj):
  4054. return json.dumps(dict(json.loads(js_to_json(mobj.group(1) or '[]', vars=vars))))
  4055. code = re.sub(r'new Map\((\[.*?\])?\)', create_map, code)
  4056. if not strict:
  4057. code = re.sub(r'new Date\((".+")\)', r'\g<1>', code)
  4058. code = re.sub(r'new \w+\((.*?)\)', lambda m: json.dumps(m.group(0)), code)
  4059. code = re.sub(r'parseInt\([^\d]+(\d+)[^\d]+\)', r'\1', code)
  4060. code = re.sub(r'\(function\([^)]*\)\s*\{[^}]*\}\s*\)\s*\(\s*(["\'][^)]*["\'])\s*\)', r'\1', code)
  4061. return re.sub(r'''(?sx)
  4062. {str_}|
  4063. {comment}|
  4064. ,(?={skip}[\]}}])|
  4065. void\s0|
  4066. !*(?:(?<!\d)[eE]|[a-df-zA-DF-Z_$])[.a-zA-Z_$0-9]*|
  4067. (?:\b|!+)0(?:[xX][\da-fA-F]+|[0-7]+)(?:{skip}:)?|
  4068. !+\d+(?:\.\d*)?(?:{skip}:)?|
  4069. [0-9]+(?:{skip}:)|
  4070. !+
  4071. '''.format(comment=COMMENT_RE, skip=SKIP_RE, str_=STRING_RE), fix_kv, code)
  4072. def qualities(quality_ids):
  4073. """ Get a numeric quality value out of a list of possible values """
  4074. def q(qid):
  4075. try:
  4076. return quality_ids.index(qid)
  4077. except ValueError:
  4078. return -1
  4079. return q
  4080. DEFAULT_OUTTMPL = '%(title)s-%(id)s.%(ext)s'
  4081. def limit_length(s, length):
  4082. """ Add ellipses to overly long strings """
  4083. if s is None:
  4084. return None
  4085. ELLIPSES = '...'
  4086. if len(s) > length:
  4087. return s[:length - len(ELLIPSES)] + ELLIPSES
  4088. return s
  4089. def version_tuple(v):
  4090. return tuple(int(e) for e in re.split(r'[-.]', v))
  4091. def is_outdated_version(version, limit, assume_new=True):
  4092. if not version:
  4093. return not assume_new
  4094. try:
  4095. return version_tuple(version) < version_tuple(limit)
  4096. except ValueError:
  4097. return not assume_new
  4098. def ytdl_is_updateable():
  4099. """ Returns if youtube-dl can be updated with -U """
  4100. from zipimport import zipimporter
  4101. return isinstance(globals().get('__loader__'), zipimporter) or hasattr(sys, 'frozen')
  4102. def args_to_str(args):
  4103. # Get a short string representation for a subprocess command
  4104. return ' '.join(compat_shlex_quote(a) for a in args)
  4105. def error_to_compat_str(err):
  4106. return _decode_compat_str(str(err))
  4107. def mimetype2ext(mt):
  4108. if mt is None:
  4109. return None
  4110. ext = {
  4111. 'audio/mp4': 'm4a',
  4112. # Per RFC 3003, audio/mpeg can be .mp1, .mp2 or .mp3. Here use .mp3 as
  4113. # it's the most popular one
  4114. 'audio/mpeg': 'mp3',
  4115. }.get(mt)
  4116. if ext is not None:
  4117. return ext
  4118. _, _, res = mt.rpartition('/')
  4119. res = res.split(';')[0].strip().lower()
  4120. return {
  4121. '3gpp': '3gp',
  4122. 'smptett+xml': 'tt',
  4123. 'ttaf+xml': 'dfxp',
  4124. 'ttml+xml': 'ttml',
  4125. 'x-flv': 'flv',
  4126. 'x-mp4-fragmented': 'mp4',
  4127. 'x-ms-sami': 'sami',
  4128. 'x-ms-wmv': 'wmv',
  4129. 'mpegurl': 'm3u8',
  4130. 'x-mpegurl': 'm3u8',
  4131. 'vnd.apple.mpegurl': 'm3u8',
  4132. 'dash+xml': 'mpd',
  4133. 'f4m+xml': 'f4m',
  4134. 'hds+xml': 'f4m',
  4135. 'vnd.ms-sstr+xml': 'ism',
  4136. 'quicktime': 'mov',
  4137. 'mp2t': 'ts',
  4138. 'x-wav': 'wav',
  4139. }.get(res, res)
  4140. def parse_codecs(codecs_str):
  4141. # http://tools.ietf.org/html/rfc6381
  4142. if not codecs_str:
  4143. return {}
  4144. split_codecs = list(filter(None, map(
  4145. lambda str: str.strip(), codecs_str.strip().strip(',').split(','))))
  4146. vcodec, acodec = None, None
  4147. for full_codec in split_codecs:
  4148. codec = full_codec.split('.')[0]
  4149. if codec in ('avc1', 'avc2', 'avc3', 'avc4', 'vp9', 'vp8', 'hev1', 'hev2', 'h263', 'h264', 'mp4v', 'hvc1', 'av01', 'theora'):
  4150. if not vcodec:
  4151. vcodec = full_codec
  4152. elif codec in ('mp4a', 'opus', 'vorbis', 'mp3', 'aac', 'ac-3', 'ec-3', 'eac3', 'dtsc', 'dtse', 'dtsh', 'dtsl'):
  4153. if not acodec:
  4154. acodec = full_codec
  4155. else:
  4156. write_string('WARNING: Unknown codec %s\n' % full_codec, sys.stderr)
  4157. if not vcodec and not acodec:
  4158. if len(split_codecs) == 2:
  4159. return {
  4160. 'vcodec': split_codecs[0],
  4161. 'acodec': split_codecs[1],
  4162. }
  4163. else:
  4164. return {
  4165. 'vcodec': vcodec or 'none',
  4166. 'acodec': acodec or 'none',
  4167. }
  4168. return {}
  4169. def urlhandle_detect_ext(url_handle):
  4170. getheader = url_handle.headers.get
  4171. cd = getheader('Content-Disposition')
  4172. if cd:
  4173. m = re.match(r'attachment;\s*filename="(?P<filename>[^"]+)"', cd)
  4174. if m:
  4175. e = determine_ext(m.group('filename'), default_ext=None)
  4176. if e:
  4177. return e
  4178. return mimetype2ext(getheader('Content-Type'))
  4179. def encode_data_uri(data, mime_type):
  4180. return 'data:%s;base64,%s' % (mime_type, base64.b64encode(data).decode('ascii'))
  4181. def age_restricted(content_limit, age_limit):
  4182. """ Returns True iff the content should be blocked """
  4183. if age_limit is None: # No limit set
  4184. return False
  4185. if content_limit is None:
  4186. return False # Content available for everyone
  4187. return age_limit < content_limit
  4188. def is_html(first_bytes):
  4189. """ Detect whether a file contains HTML by examining its first bytes. """
  4190. BOMS = [
  4191. (b'\xef\xbb\xbf', 'utf-8'),
  4192. (b'\x00\x00\xfe\xff', 'utf-32-be'),
  4193. (b'\xff\xfe\x00\x00', 'utf-32-le'),
  4194. (b'\xff\xfe', 'utf-16-le'),
  4195. (b'\xfe\xff', 'utf-16-be'),
  4196. ]
  4197. for bom, enc in BOMS:
  4198. if first_bytes.startswith(bom):
  4199. s = first_bytes[len(bom):].decode(enc, 'replace')
  4200. break
  4201. else:
  4202. s = first_bytes.decode('utf-8', 'replace')
  4203. return re.match(r'^\s*<', s)
  4204. def determine_protocol(info_dict):
  4205. protocol = info_dict.get('protocol')
  4206. if protocol is not None:
  4207. return protocol
  4208. url = info_dict['url']
  4209. if url.startswith('rtmp'):
  4210. return 'rtmp'
  4211. elif url.startswith('mms'):
  4212. return 'mms'
  4213. elif url.startswith('rtsp'):
  4214. return 'rtsp'
  4215. ext = determine_ext(url)
  4216. if ext == 'm3u8':
  4217. return 'm3u8'
  4218. elif ext == 'f4m':
  4219. return 'f4m'
  4220. return compat_urllib_parse_urlparse(url).scheme
  4221. def render_table(header_row, data):
  4222. """ Render a list of rows, each as a list of values """
  4223. table = [header_row] + data
  4224. max_lens = [max(len(compat_str(v)) for v in col) for col in zip(*table)]
  4225. format_str = ' '.join('%-' + compat_str(ml + 1) + 's' for ml in max_lens[:-1]) + '%s'
  4226. return '\n'.join(format_str % tuple(row) for row in table)
  4227. def _match_one(filter_part, dct):
  4228. COMPARISON_OPERATORS = {
  4229. '<': operator.lt,
  4230. '<=': operator.le,
  4231. '>': operator.gt,
  4232. '>=': operator.ge,
  4233. '=': operator.eq,
  4234. '!=': operator.ne,
  4235. }
  4236. operator_rex = re.compile(r'''(?x)\s*
  4237. (?P<key>[a-z_]+)
  4238. \s*(?P<op>%s)(?P<none_inclusive>\s*\?)?\s*
  4239. (?:
  4240. (?P<intval>[0-9.]+(?:[kKmMgGtTpPeEzZyY]i?[Bb]?)?)|
  4241. (?P<quote>["\'])(?P<quotedstrval>(?:\\.|(?!(?P=quote)|\\).)+?)(?P=quote)|
  4242. (?P<strval>(?![0-9.])[a-z0-9A-Z]*)
  4243. )
  4244. \s*$
  4245. ''' % '|'.join(map(re.escape, COMPARISON_OPERATORS.keys())))
  4246. m = operator_rex.search(filter_part)
  4247. if m:
  4248. op = COMPARISON_OPERATORS[m.group('op')]
  4249. actual_value = dct.get(m.group('key'))
  4250. if (m.group('quotedstrval') is not None
  4251. or m.group('strval') is not None
  4252. # If the original field is a string and matching comparisonvalue is
  4253. # a number we should respect the origin of the original field
  4254. # and process comparison value as a string (see
  4255. # https://github.com/ytdl-org/youtube-dl/issues/11082).
  4256. or actual_value is not None and m.group('intval') is not None
  4257. and isinstance(actual_value, compat_str)):
  4258. if m.group('op') not in ('=', '!='):
  4259. raise ValueError(
  4260. 'Operator %s does not support string values!' % m.group('op'))
  4261. comparison_value = m.group('quotedstrval') or m.group('strval') or m.group('intval')
  4262. quote = m.group('quote')
  4263. if quote is not None:
  4264. comparison_value = comparison_value.replace(r'\%s' % quote, quote)
  4265. else:
  4266. try:
  4267. comparison_value = int(m.group('intval'))
  4268. except ValueError:
  4269. comparison_value = parse_filesize(m.group('intval'))
  4270. if comparison_value is None:
  4271. comparison_value = parse_filesize(m.group('intval') + 'B')
  4272. if comparison_value is None:
  4273. raise ValueError(
  4274. 'Invalid integer value %r in filter part %r' % (
  4275. m.group('intval'), filter_part))
  4276. if actual_value is None:
  4277. return m.group('none_inclusive')
  4278. return op(actual_value, comparison_value)
  4279. UNARY_OPERATORS = {
  4280. '': lambda v: (v is True) if isinstance(v, bool) else (v is not None),
  4281. '!': lambda v: (v is False) if isinstance(v, bool) else (v is None),
  4282. }
  4283. operator_rex = re.compile(r'''(?x)\s*
  4284. (?P<op>%s)\s*(?P<key>[a-z_]+)
  4285. \s*$
  4286. ''' % '|'.join(map(re.escape, UNARY_OPERATORS.keys())))
  4287. m = operator_rex.search(filter_part)
  4288. if m:
  4289. op = UNARY_OPERATORS[m.group('op')]
  4290. actual_value = dct.get(m.group('key'))
  4291. return op(actual_value)
  4292. raise ValueError('Invalid filter part %r' % filter_part)
  4293. def match_str(filter_str, dct):
  4294. """ Filter a dictionary with a simple string syntax. Returns True (=passes filter) or false """
  4295. return all(
  4296. _match_one(filter_part, dct) for filter_part in filter_str.split('&'))
  4297. def match_filter_func(filter_str):
  4298. def _match_func(info_dict):
  4299. if match_str(filter_str, info_dict):
  4300. return None
  4301. else:
  4302. video_title = info_dict.get('title', info_dict.get('id', 'video'))
  4303. return '%s does not pass filter %s, skipping ..' % (video_title, filter_str)
  4304. return _match_func
  4305. def parse_dfxp_time_expr(time_expr):
  4306. if not time_expr:
  4307. return
  4308. mobj = re.match(r'^(?P<time_offset>\d+(?:\.\d+)?)s?$', time_expr)
  4309. if mobj:
  4310. return float(mobj.group('time_offset'))
  4311. mobj = re.match(r'^(\d+):(\d\d):(\d\d(?:(?:\.|:)\d+)?)$', time_expr)
  4312. if mobj:
  4313. return 3600 * int(mobj.group(1)) + 60 * int(mobj.group(2)) + float(mobj.group(3).replace(':', '.'))
  4314. def srt_subtitles_timecode(seconds):
  4315. return '%02d:%02d:%02d,%03d' % (seconds / 3600, (seconds % 3600) / 60, seconds % 60, (seconds % 1) * 1000)
  4316. def dfxp2srt(dfxp_data):
  4317. '''
  4318. @param dfxp_data A bytes-like object containing DFXP data
  4319. @returns A unicode object containing converted SRT data
  4320. '''
  4321. LEGACY_NAMESPACES = (
  4322. (b'http://www.w3.org/ns/ttml', [
  4323. b'http://www.w3.org/2004/11/ttaf1',
  4324. b'http://www.w3.org/2006/04/ttaf1',
  4325. b'http://www.w3.org/2006/10/ttaf1',
  4326. ]),
  4327. (b'http://www.w3.org/ns/ttml#styling', [
  4328. b'http://www.w3.org/ns/ttml#style',
  4329. ]),
  4330. )
  4331. SUPPORTED_STYLING = [
  4332. 'color',
  4333. 'fontFamily',
  4334. 'fontSize',
  4335. 'fontStyle',
  4336. 'fontWeight',
  4337. 'textDecoration'
  4338. ]
  4339. _x = functools.partial(xpath_with_ns, ns_map={
  4340. 'xml': 'http://www.w3.org/XML/1998/namespace',
  4341. 'ttml': 'http://www.w3.org/ns/ttml',
  4342. 'tts': 'http://www.w3.org/ns/ttml#styling',
  4343. })
  4344. styles = {}
  4345. default_style = {}
  4346. class TTMLPElementParser(object):
  4347. _out = ''
  4348. _unclosed_elements = []
  4349. _applied_styles = []
  4350. def start(self, tag, attrib):
  4351. if tag in (_x('ttml:br'), 'br'):
  4352. self._out += '\n'
  4353. else:
  4354. unclosed_elements = []
  4355. style = {}
  4356. element_style_id = attrib.get('style')
  4357. if default_style:
  4358. style.update(default_style)
  4359. if element_style_id:
  4360. style.update(styles.get(element_style_id, {}))
  4361. for prop in SUPPORTED_STYLING:
  4362. prop_val = attrib.get(_x('tts:' + prop))
  4363. if prop_val:
  4364. style[prop] = prop_val
  4365. if style:
  4366. font = ''
  4367. for k, v in sorted(style.items()):
  4368. if self._applied_styles and self._applied_styles[-1].get(k) == v:
  4369. continue
  4370. if k == 'color':
  4371. font += ' color="%s"' % v
  4372. elif k == 'fontSize':
  4373. font += ' size="%s"' % v
  4374. elif k == 'fontFamily':
  4375. font += ' face="%s"' % v
  4376. elif k == 'fontWeight' and v == 'bold':
  4377. self._out += '<b>'
  4378. unclosed_elements.append('b')
  4379. elif k == 'fontStyle' and v == 'italic':
  4380. self._out += '<i>'
  4381. unclosed_elements.append('i')
  4382. elif k == 'textDecoration' and v == 'underline':
  4383. self._out += '<u>'
  4384. unclosed_elements.append('u')
  4385. if font:
  4386. self._out += '<font' + font + '>'
  4387. unclosed_elements.append('font')
  4388. applied_style = {}
  4389. if self._applied_styles:
  4390. applied_style.update(self._applied_styles[-1])
  4391. applied_style.update(style)
  4392. self._applied_styles.append(applied_style)
  4393. self._unclosed_elements.append(unclosed_elements)
  4394. def end(self, tag):
  4395. if tag not in (_x('ttml:br'), 'br'):
  4396. unclosed_elements = self._unclosed_elements.pop()
  4397. for element in reversed(unclosed_elements):
  4398. self._out += '</%s>' % element
  4399. if unclosed_elements and self._applied_styles:
  4400. self._applied_styles.pop()
  4401. def data(self, data):
  4402. self._out += data
  4403. def close(self):
  4404. return self._out.strip()
  4405. def parse_node(node):
  4406. target = TTMLPElementParser()
  4407. parser = xml.etree.ElementTree.XMLParser(target=target)
  4408. parser.feed(xml.etree.ElementTree.tostring(node))
  4409. return parser.close()
  4410. for k, v in LEGACY_NAMESPACES:
  4411. for ns in v:
  4412. dfxp_data = dfxp_data.replace(ns, k)
  4413. dfxp = compat_etree_fromstring(dfxp_data)
  4414. out = []
  4415. paras = dfxp.findall(_x('.//ttml:p')) or dfxp.findall('.//p')
  4416. if not paras:
  4417. raise ValueError('Invalid dfxp/TTML subtitle')
  4418. repeat = False
  4419. while True:
  4420. for style in dfxp.findall(_x('.//ttml:style')):
  4421. style_id = style.get('id') or style.get(_x('xml:id'))
  4422. if not style_id:
  4423. continue
  4424. parent_style_id = style.get('style')
  4425. if parent_style_id:
  4426. if parent_style_id not in styles:
  4427. repeat = True
  4428. continue
  4429. styles[style_id] = styles[parent_style_id].copy()
  4430. for prop in SUPPORTED_STYLING:
  4431. prop_val = style.get(_x('tts:' + prop))
  4432. if prop_val:
  4433. styles.setdefault(style_id, {})[prop] = prop_val
  4434. if repeat:
  4435. repeat = False
  4436. else:
  4437. break
  4438. for p in ('body', 'div'):
  4439. ele = xpath_element(dfxp, [_x('.//ttml:' + p), './/' + p])
  4440. if ele is None:
  4441. continue
  4442. style = styles.get(ele.get('style'))
  4443. if not style:
  4444. continue
  4445. default_style.update(style)
  4446. for para, index in zip(paras, itertools.count(1)):
  4447. begin_time = parse_dfxp_time_expr(para.attrib.get('begin'))
  4448. end_time = parse_dfxp_time_expr(para.attrib.get('end'))
  4449. dur = parse_dfxp_time_expr(para.attrib.get('dur'))
  4450. if begin_time is None:
  4451. continue
  4452. if not end_time:
  4453. if not dur:
  4454. continue
  4455. end_time = begin_time + dur
  4456. out.append('%d\n%s --> %s\n%s\n\n' % (
  4457. index,
  4458. srt_subtitles_timecode(begin_time),
  4459. srt_subtitles_timecode(end_time),
  4460. parse_node(para)))
  4461. return ''.join(out)
  4462. def cli_option(params, command_option, param):
  4463. param = params.get(param)
  4464. if param:
  4465. param = compat_str(param)
  4466. return [command_option, param] if param is not None else []
  4467. def cli_bool_option(params, command_option, param, true_value='true', false_value='false', separator=None):
  4468. param = params.get(param)
  4469. if param is None:
  4470. return []
  4471. assert isinstance(param, bool)
  4472. if separator:
  4473. return [command_option + separator + (true_value if param else false_value)]
  4474. return [command_option, true_value if param else false_value]
  4475. def cli_valueless_option(params, command_option, param, expected_value=True):
  4476. param = params.get(param)
  4477. return [command_option] if param == expected_value else []
  4478. def cli_configuration_args(params, param, default=[]):
  4479. ex_args = params.get(param)
  4480. if ex_args is None:
  4481. return default
  4482. assert isinstance(ex_args, list)
  4483. return ex_args
  4484. class ISO639Utils(object):
  4485. # See http://www.loc.gov/standards/iso639-2/ISO-639-2_utf-8.txt
  4486. _lang_map = {
  4487. 'aa': 'aar',
  4488. 'ab': 'abk',
  4489. 'ae': 'ave',
  4490. 'af': 'afr',
  4491. 'ak': 'aka',
  4492. 'am': 'amh',
  4493. 'an': 'arg',
  4494. 'ar': 'ara',
  4495. 'as': 'asm',
  4496. 'av': 'ava',
  4497. 'ay': 'aym',
  4498. 'az': 'aze',
  4499. 'ba': 'bak',
  4500. 'be': 'bel',
  4501. 'bg': 'bul',
  4502. 'bh': 'bih',
  4503. 'bi': 'bis',
  4504. 'bm': 'bam',
  4505. 'bn': 'ben',
  4506. 'bo': 'bod',
  4507. 'br': 'bre',
  4508. 'bs': 'bos',
  4509. 'ca': 'cat',
  4510. 'ce': 'che',
  4511. 'ch': 'cha',
  4512. 'co': 'cos',
  4513. 'cr': 'cre',
  4514. 'cs': 'ces',
  4515. 'cu': 'chu',
  4516. 'cv': 'chv',
  4517. 'cy': 'cym',
  4518. 'da': 'dan',
  4519. 'de': 'deu',
  4520. 'dv': 'div',
  4521. 'dz': 'dzo',
  4522. 'ee': 'ewe',
  4523. 'el': 'ell',
  4524. 'en': 'eng',
  4525. 'eo': 'epo',
  4526. 'es': 'spa',
  4527. 'et': 'est',
  4528. 'eu': 'eus',
  4529. 'fa': 'fas',
  4530. 'ff': 'ful',
  4531. 'fi': 'fin',
  4532. 'fj': 'fij',
  4533. 'fo': 'fao',
  4534. 'fr': 'fra',
  4535. 'fy': 'fry',
  4536. 'ga': 'gle',
  4537. 'gd': 'gla',
  4538. 'gl': 'glg',
  4539. 'gn': 'grn',
  4540. 'gu': 'guj',
  4541. 'gv': 'glv',
  4542. 'ha': 'hau',
  4543. 'he': 'heb',
  4544. 'iw': 'heb', # Replaced by he in 1989 revision
  4545. 'hi': 'hin',
  4546. 'ho': 'hmo',
  4547. 'hr': 'hrv',
  4548. 'ht': 'hat',
  4549. 'hu': 'hun',
  4550. 'hy': 'hye',
  4551. 'hz': 'her',
  4552. 'ia': 'ina',
  4553. 'id': 'ind',
  4554. 'in': 'ind', # Replaced by id in 1989 revision
  4555. 'ie': 'ile',
  4556. 'ig': 'ibo',
  4557. 'ii': 'iii',
  4558. 'ik': 'ipk',
  4559. 'io': 'ido',
  4560. 'is': 'isl',
  4561. 'it': 'ita',
  4562. 'iu': 'iku',
  4563. 'ja': 'jpn',
  4564. 'jv': 'jav',
  4565. 'ka': 'kat',
  4566. 'kg': 'kon',
  4567. 'ki': 'kik',
  4568. 'kj': 'kua',
  4569. 'kk': 'kaz',
  4570. 'kl': 'kal',
  4571. 'km': 'khm',
  4572. 'kn': 'kan',
  4573. 'ko': 'kor',
  4574. 'kr': 'kau',
  4575. 'ks': 'kas',
  4576. 'ku': 'kur',
  4577. 'kv': 'kom',
  4578. 'kw': 'cor',
  4579. 'ky': 'kir',
  4580. 'la': 'lat',
  4581. 'lb': 'ltz',
  4582. 'lg': 'lug',
  4583. 'li': 'lim',
  4584. 'ln': 'lin',
  4585. 'lo': 'lao',
  4586. 'lt': 'lit',
  4587. 'lu': 'lub',
  4588. 'lv': 'lav',
  4589. 'mg': 'mlg',
  4590. 'mh': 'mah',
  4591. 'mi': 'mri',
  4592. 'mk': 'mkd',
  4593. 'ml': 'mal',
  4594. 'mn': 'mon',
  4595. 'mr': 'mar',
  4596. 'ms': 'msa',
  4597. 'mt': 'mlt',
  4598. 'my': 'mya',
  4599. 'na': 'nau',
  4600. 'nb': 'nob',
  4601. 'nd': 'nde',
  4602. 'ne': 'nep',
  4603. 'ng': 'ndo',
  4604. 'nl': 'nld',
  4605. 'nn': 'nno',
  4606. 'no': 'nor',
  4607. 'nr': 'nbl',
  4608. 'nv': 'nav',
  4609. 'ny': 'nya',
  4610. 'oc': 'oci',
  4611. 'oj': 'oji',
  4612. 'om': 'orm',
  4613. 'or': 'ori',
  4614. 'os': 'oss',
  4615. 'pa': 'pan',
  4616. 'pi': 'pli',
  4617. 'pl': 'pol',
  4618. 'ps': 'pus',
  4619. 'pt': 'por',
  4620. 'qu': 'que',
  4621. 'rm': 'roh',
  4622. 'rn': 'run',
  4623. 'ro': 'ron',
  4624. 'ru': 'rus',
  4625. 'rw': 'kin',
  4626. 'sa': 'san',
  4627. 'sc': 'srd',
  4628. 'sd': 'snd',
  4629. 'se': 'sme',
  4630. 'sg': 'sag',
  4631. 'si': 'sin',
  4632. 'sk': 'slk',
  4633. 'sl': 'slv',
  4634. 'sm': 'smo',
  4635. 'sn': 'sna',
  4636. 'so': 'som',
  4637. 'sq': 'sqi',
  4638. 'sr': 'srp',
  4639. 'ss': 'ssw',
  4640. 'st': 'sot',
  4641. 'su': 'sun',
  4642. 'sv': 'swe',
  4643. 'sw': 'swa',
  4644. 'ta': 'tam',
  4645. 'te': 'tel',
  4646. 'tg': 'tgk',
  4647. 'th': 'tha',
  4648. 'ti': 'tir',
  4649. 'tk': 'tuk',
  4650. 'tl': 'tgl',
  4651. 'tn': 'tsn',
  4652. 'to': 'ton',
  4653. 'tr': 'tur',
  4654. 'ts': 'tso',
  4655. 'tt': 'tat',
  4656. 'tw': 'twi',
  4657. 'ty': 'tah',
  4658. 'ug': 'uig',
  4659. 'uk': 'ukr',
  4660. 'ur': 'urd',
  4661. 'uz': 'uzb',
  4662. 've': 'ven',
  4663. 'vi': 'vie',
  4664. 'vo': 'vol',
  4665. 'wa': 'wln',
  4666. 'wo': 'wol',
  4667. 'xh': 'xho',
  4668. 'yi': 'yid',
  4669. 'ji': 'yid', # Replaced by yi in 1989 revision
  4670. 'yo': 'yor',
  4671. 'za': 'zha',
  4672. 'zh': 'zho',
  4673. 'zu': 'zul',
  4674. }
  4675. @classmethod
  4676. def short2long(cls, code):
  4677. """Convert language code from ISO 639-1 to ISO 639-2/T"""
  4678. return cls._lang_map.get(code[:2])
  4679. @classmethod
  4680. def long2short(cls, code):
  4681. """Convert language code from ISO 639-2/T to ISO 639-1"""
  4682. for short_name, long_name in cls._lang_map.items():
  4683. if long_name == code:
  4684. return short_name
  4685. class ISO3166Utils(object):
  4686. # From http://data.okfn.org/data/core/country-list
  4687. _country_map = {
  4688. 'AF': 'Afghanistan',
  4689. 'AX': 'Åland Islands',
  4690. 'AL': 'Albania',
  4691. 'DZ': 'Algeria',
  4692. 'AS': 'American Samoa',
  4693. 'AD': 'Andorra',
  4694. 'AO': 'Angola',
  4695. 'AI': 'Anguilla',
  4696. 'AQ': 'Antarctica',
  4697. 'AG': 'Antigua and Barbuda',
  4698. 'AR': 'Argentina',
  4699. 'AM': 'Armenia',
  4700. 'AW': 'Aruba',
  4701. 'AU': 'Australia',
  4702. 'AT': 'Austria',
  4703. 'AZ': 'Azerbaijan',
  4704. 'BS': 'Bahamas',
  4705. 'BH': 'Bahrain',
  4706. 'BD': 'Bangladesh',
  4707. 'BB': 'Barbados',
  4708. 'BY': 'Belarus',
  4709. 'BE': 'Belgium',
  4710. 'BZ': 'Belize',
  4711. 'BJ': 'Benin',
  4712. 'BM': 'Bermuda',
  4713. 'BT': 'Bhutan',
  4714. 'BO': 'Bolivia, Plurinational State of',
  4715. 'BQ': 'Bonaire, Sint Eustatius and Saba',
  4716. 'BA': 'Bosnia and Herzegovina',
  4717. 'BW': 'Botswana',
  4718. 'BV': 'Bouvet Island',
  4719. 'BR': 'Brazil',
  4720. 'IO': 'British Indian Ocean Territory',
  4721. 'BN': 'Brunei Darussalam',
  4722. 'BG': 'Bulgaria',
  4723. 'BF': 'Burkina Faso',
  4724. 'BI': 'Burundi',
  4725. 'KH': 'Cambodia',
  4726. 'CM': 'Cameroon',
  4727. 'CA': 'Canada',
  4728. 'CV': 'Cape Verde',
  4729. 'KY': 'Cayman Islands',
  4730. 'CF': 'Central African Republic',
  4731. 'TD': 'Chad',
  4732. 'CL': 'Chile',
  4733. 'CN': 'China',
  4734. 'CX': 'Christmas Island',
  4735. 'CC': 'Cocos (Keeling) Islands',
  4736. 'CO': 'Colombia',
  4737. 'KM': 'Comoros',
  4738. 'CG': 'Congo',
  4739. 'CD': 'Congo, the Democratic Republic of the',
  4740. 'CK': 'Cook Islands',
  4741. 'CR': 'Costa Rica',
  4742. 'CI': 'Côte d\'Ivoire',
  4743. 'HR': 'Croatia',
  4744. 'CU': 'Cuba',
  4745. 'CW': 'Curaçao',
  4746. 'CY': 'Cyprus',
  4747. 'CZ': 'Czech Republic',
  4748. 'DK': 'Denmark',
  4749. 'DJ': 'Djibouti',
  4750. 'DM': 'Dominica',
  4751. 'DO': 'Dominican Republic',
  4752. 'EC': 'Ecuador',
  4753. 'EG': 'Egypt',
  4754. 'SV': 'El Salvador',
  4755. 'GQ': 'Equatorial Guinea',
  4756. 'ER': 'Eritrea',
  4757. 'EE': 'Estonia',
  4758. 'ET': 'Ethiopia',
  4759. 'FK': 'Falkland Islands (Malvinas)',
  4760. 'FO': 'Faroe Islands',
  4761. 'FJ': 'Fiji',
  4762. 'FI': 'Finland',
  4763. 'FR': 'France',
  4764. 'GF': 'French Guiana',
  4765. 'PF': 'French Polynesia',
  4766. 'TF': 'French Southern Territories',
  4767. 'GA': 'Gabon',
  4768. 'GM': 'Gambia',
  4769. 'GE': 'Georgia',
  4770. 'DE': 'Germany',
  4771. 'GH': 'Ghana',
  4772. 'GI': 'Gibraltar',
  4773. 'GR': 'Greece',
  4774. 'GL': 'Greenland',
  4775. 'GD': 'Grenada',
  4776. 'GP': 'Guadeloupe',
  4777. 'GU': 'Guam',
  4778. 'GT': 'Guatemala',
  4779. 'GG': 'Guernsey',
  4780. 'GN': 'Guinea',
  4781. 'GW': 'Guinea-Bissau',
  4782. 'GY': 'Guyana',
  4783. 'HT': 'Haiti',
  4784. 'HM': 'Heard Island and McDonald Islands',
  4785. 'VA': 'Holy See (Vatican City State)',
  4786. 'HN': 'Honduras',
  4787. 'HK': 'Hong Kong',
  4788. 'HU': 'Hungary',
  4789. 'IS': 'Iceland',
  4790. 'IN': 'India',
  4791. 'ID': 'Indonesia',
  4792. 'IR': 'Iran, Islamic Republic of',
  4793. 'IQ': 'Iraq',
  4794. 'IE': 'Ireland',
  4795. 'IM': 'Isle of Man',
  4796. 'IL': 'Israel',
  4797. 'IT': 'Italy',
  4798. 'JM': 'Jamaica',
  4799. 'JP': 'Japan',
  4800. 'JE': 'Jersey',
  4801. 'JO': 'Jordan',
  4802. 'KZ': 'Kazakhstan',
  4803. 'KE': 'Kenya',
  4804. 'KI': 'Kiribati',
  4805. 'KP': 'Korea, Democratic People\'s Republic of',
  4806. 'KR': 'Korea, Republic of',
  4807. 'KW': 'Kuwait',
  4808. 'KG': 'Kyrgyzstan',
  4809. 'LA': 'Lao People\'s Democratic Republic',
  4810. 'LV': 'Latvia',
  4811. 'LB': 'Lebanon',
  4812. 'LS': 'Lesotho',
  4813. 'LR': 'Liberia',
  4814. 'LY': 'Libya',
  4815. 'LI': 'Liechtenstein',
  4816. 'LT': 'Lithuania',
  4817. 'LU': 'Luxembourg',
  4818. 'MO': 'Macao',
  4819. 'MK': 'Macedonia, the Former Yugoslav Republic of',
  4820. 'MG': 'Madagascar',
  4821. 'MW': 'Malawi',
  4822. 'MY': 'Malaysia',
  4823. 'MV': 'Maldives',
  4824. 'ML': 'Mali',
  4825. 'MT': 'Malta',
  4826. 'MH': 'Marshall Islands',
  4827. 'MQ': 'Martinique',
  4828. 'MR': 'Mauritania',
  4829. 'MU': 'Mauritius',
  4830. 'YT': 'Mayotte',
  4831. 'MX': 'Mexico',
  4832. 'FM': 'Micronesia, Federated States of',
  4833. 'MD': 'Moldova, Republic of',
  4834. 'MC': 'Monaco',
  4835. 'MN': 'Mongolia',
  4836. 'ME': 'Montenegro',
  4837. 'MS': 'Montserrat',
  4838. 'MA': 'Morocco',
  4839. 'MZ': 'Mozambique',
  4840. 'MM': 'Myanmar',
  4841. 'NA': 'Namibia',
  4842. 'NR': 'Nauru',
  4843. 'NP': 'Nepal',
  4844. 'NL': 'Netherlands',
  4845. 'NC': 'New Caledonia',
  4846. 'NZ': 'New Zealand',
  4847. 'NI': 'Nicaragua',
  4848. 'NE': 'Niger',
  4849. 'NG': 'Nigeria',
  4850. 'NU': 'Niue',
  4851. 'NF': 'Norfolk Island',
  4852. 'MP': 'Northern Mariana Islands',
  4853. 'NO': 'Norway',
  4854. 'OM': 'Oman',
  4855. 'PK': 'Pakistan',
  4856. 'PW': 'Palau',
  4857. 'PS': 'Palestine, State of',
  4858. 'PA': 'Panama',
  4859. 'PG': 'Papua New Guinea',
  4860. 'PY': 'Paraguay',
  4861. 'PE': 'Peru',
  4862. 'PH': 'Philippines',
  4863. 'PN': 'Pitcairn',
  4864. 'PL': 'Poland',
  4865. 'PT': 'Portugal',
  4866. 'PR': 'Puerto Rico',
  4867. 'QA': 'Qatar',
  4868. 'RE': 'Réunion',
  4869. 'RO': 'Romania',
  4870. 'RU': 'Russian Federation',
  4871. 'RW': 'Rwanda',
  4872. 'BL': 'Saint Barthélemy',
  4873. 'SH': 'Saint Helena, Ascension and Tristan da Cunha',
  4874. 'KN': 'Saint Kitts and Nevis',
  4875. 'LC': 'Saint Lucia',
  4876. 'MF': 'Saint Martin (French part)',
  4877. 'PM': 'Saint Pierre and Miquelon',
  4878. 'VC': 'Saint Vincent and the Grenadines',
  4879. 'WS': 'Samoa',
  4880. 'SM': 'San Marino',
  4881. 'ST': 'Sao Tome and Principe',
  4882. 'SA': 'Saudi Arabia',
  4883. 'SN': 'Senegal',
  4884. 'RS': 'Serbia',
  4885. 'SC': 'Seychelles',
  4886. 'SL': 'Sierra Leone',
  4887. 'SG': 'Singapore',
  4888. 'SX': 'Sint Maarten (Dutch part)',
  4889. 'SK': 'Slovakia',
  4890. 'SI': 'Slovenia',
  4891. 'SB': 'Solomon Islands',
  4892. 'SO': 'Somalia',
  4893. 'ZA': 'South Africa',
  4894. 'GS': 'South Georgia and the South Sandwich Islands',
  4895. 'SS': 'South Sudan',
  4896. 'ES': 'Spain',
  4897. 'LK': 'Sri Lanka',
  4898. 'SD': 'Sudan',
  4899. 'SR': 'Suriname',
  4900. 'SJ': 'Svalbard and Jan Mayen',
  4901. 'SZ': 'Swaziland',
  4902. 'SE': 'Sweden',
  4903. 'CH': 'Switzerland',
  4904. 'SY': 'Syrian Arab Republic',
  4905. 'TW': 'Taiwan, Province of China',
  4906. 'TJ': 'Tajikistan',
  4907. 'TZ': 'Tanzania, United Republic of',
  4908. 'TH': 'Thailand',
  4909. 'TL': 'Timor-Leste',
  4910. 'TG': 'Togo',
  4911. 'TK': 'Tokelau',
  4912. 'TO': 'Tonga',
  4913. 'TT': 'Trinidad and Tobago',
  4914. 'TN': 'Tunisia',
  4915. 'TR': 'Turkey',
  4916. 'TM': 'Turkmenistan',
  4917. 'TC': 'Turks and Caicos Islands',
  4918. 'TV': 'Tuvalu',
  4919. 'UG': 'Uganda',
  4920. 'UA': 'Ukraine',
  4921. 'AE': 'United Arab Emirates',
  4922. 'GB': 'United Kingdom',
  4923. 'US': 'United States',
  4924. 'UM': 'United States Minor Outlying Islands',
  4925. 'UY': 'Uruguay',
  4926. 'UZ': 'Uzbekistan',
  4927. 'VU': 'Vanuatu',
  4928. 'VE': 'Venezuela, Bolivarian Republic of',
  4929. 'VN': 'Viet Nam',
  4930. 'VG': 'Virgin Islands, British',
  4931. 'VI': 'Virgin Islands, U.S.',
  4932. 'WF': 'Wallis and Futuna',
  4933. 'EH': 'Western Sahara',
  4934. 'YE': 'Yemen',
  4935. 'ZM': 'Zambia',
  4936. 'ZW': 'Zimbabwe',
  4937. }
  4938. @classmethod
  4939. def short2full(cls, code):
  4940. """Convert an ISO 3166-2 country code to the corresponding full name"""
  4941. return cls._country_map.get(code.upper())
  4942. class GeoUtils(object):
  4943. # Major IPv4 address blocks per country
  4944. _country_ip_map = {
  4945. 'AD': '46.172.224.0/19',
  4946. 'AE': '94.200.0.0/13',
  4947. 'AF': '149.54.0.0/17',
  4948. 'AG': '209.59.64.0/18',
  4949. 'AI': '204.14.248.0/21',
  4950. 'AL': '46.99.0.0/16',
  4951. 'AM': '46.70.0.0/15',
  4952. 'AO': '105.168.0.0/13',
  4953. 'AP': '182.50.184.0/21',
  4954. 'AQ': '23.154.160.0/24',
  4955. 'AR': '181.0.0.0/12',
  4956. 'AS': '202.70.112.0/20',
  4957. 'AT': '77.116.0.0/14',
  4958. 'AU': '1.128.0.0/11',
  4959. 'AW': '181.41.0.0/18',
  4960. 'AX': '185.217.4.0/22',
  4961. 'AZ': '5.197.0.0/16',
  4962. 'BA': '31.176.128.0/17',
  4963. 'BB': '65.48.128.0/17',
  4964. 'BD': '114.130.0.0/16',
  4965. 'BE': '57.0.0.0/8',
  4966. 'BF': '102.178.0.0/15',
  4967. 'BG': '95.42.0.0/15',
  4968. 'BH': '37.131.0.0/17',
  4969. 'BI': '154.117.192.0/18',
  4970. 'BJ': '137.255.0.0/16',
  4971. 'BL': '185.212.72.0/23',
  4972. 'BM': '196.12.64.0/18',
  4973. 'BN': '156.31.0.0/16',
  4974. 'BO': '161.56.0.0/16',
  4975. 'BQ': '161.0.80.0/20',
  4976. 'BR': '191.128.0.0/12',
  4977. 'BS': '24.51.64.0/18',
  4978. 'BT': '119.2.96.0/19',
  4979. 'BW': '168.167.0.0/16',
  4980. 'BY': '178.120.0.0/13',
  4981. 'BZ': '179.42.192.0/18',
  4982. 'CA': '99.224.0.0/11',
  4983. 'CD': '41.243.0.0/16',
  4984. 'CF': '197.242.176.0/21',
  4985. 'CG': '160.113.0.0/16',
  4986. 'CH': '85.0.0.0/13',
  4987. 'CI': '102.136.0.0/14',
  4988. 'CK': '202.65.32.0/19',
  4989. 'CL': '152.172.0.0/14',
  4990. 'CM': '102.244.0.0/14',
  4991. 'CN': '36.128.0.0/10',
  4992. 'CO': '181.240.0.0/12',
  4993. 'CR': '201.192.0.0/12',
  4994. 'CU': '152.206.0.0/15',
  4995. 'CV': '165.90.96.0/19',
  4996. 'CW': '190.88.128.0/17',
  4997. 'CY': '31.153.0.0/16',
  4998. 'CZ': '88.100.0.0/14',
  4999. 'DE': '53.0.0.0/8',
  5000. 'DJ': '197.241.0.0/17',
  5001. 'DK': '87.48.0.0/12',
  5002. 'DM': '192.243.48.0/20',
  5003. 'DO': '152.166.0.0/15',
  5004. 'DZ': '41.96.0.0/12',
  5005. 'EC': '186.68.0.0/15',
  5006. 'EE': '90.190.0.0/15',
  5007. 'EG': '156.160.0.0/11',
  5008. 'ER': '196.200.96.0/20',
  5009. 'ES': '88.0.0.0/11',
  5010. 'ET': '196.188.0.0/14',
  5011. 'EU': '2.16.0.0/13',
  5012. 'FI': '91.152.0.0/13',
  5013. 'FJ': '144.120.0.0/16',
  5014. 'FK': '80.73.208.0/21',
  5015. 'FM': '119.252.112.0/20',
  5016. 'FO': '88.85.32.0/19',
  5017. 'FR': '90.0.0.0/9',
  5018. 'GA': '41.158.0.0/15',
  5019. 'GB': '25.0.0.0/8',
  5020. 'GD': '74.122.88.0/21',
  5021. 'GE': '31.146.0.0/16',
  5022. 'GF': '161.22.64.0/18',
  5023. 'GG': '62.68.160.0/19',
  5024. 'GH': '154.160.0.0/12',
  5025. 'GI': '95.164.0.0/16',
  5026. 'GL': '88.83.0.0/19',
  5027. 'GM': '160.182.0.0/15',
  5028. 'GN': '197.149.192.0/18',
  5029. 'GP': '104.250.0.0/19',
  5030. 'GQ': '105.235.224.0/20',
  5031. 'GR': '94.64.0.0/13',
  5032. 'GT': '168.234.0.0/16',
  5033. 'GU': '168.123.0.0/16',
  5034. 'GW': '197.214.80.0/20',
  5035. 'GY': '181.41.64.0/18',
  5036. 'HK': '113.252.0.0/14',
  5037. 'HN': '181.210.0.0/16',
  5038. 'HR': '93.136.0.0/13',
  5039. 'HT': '148.102.128.0/17',
  5040. 'HU': '84.0.0.0/14',
  5041. 'ID': '39.192.0.0/10',
  5042. 'IE': '87.32.0.0/12',
  5043. 'IL': '79.176.0.0/13',
  5044. 'IM': '5.62.80.0/20',
  5045. 'IN': '117.192.0.0/10',
  5046. 'IO': '203.83.48.0/21',
  5047. 'IQ': '37.236.0.0/14',
  5048. 'IR': '2.176.0.0/12',
  5049. 'IS': '82.221.0.0/16',
  5050. 'IT': '79.0.0.0/10',
  5051. 'JE': '87.244.64.0/18',
  5052. 'JM': '72.27.0.0/17',
  5053. 'JO': '176.29.0.0/16',
  5054. 'JP': '133.0.0.0/8',
  5055. 'KE': '105.48.0.0/12',
  5056. 'KG': '158.181.128.0/17',
  5057. 'KH': '36.37.128.0/17',
  5058. 'KI': '103.25.140.0/22',
  5059. 'KM': '197.255.224.0/20',
  5060. 'KN': '198.167.192.0/19',
  5061. 'KP': '175.45.176.0/22',
  5062. 'KR': '175.192.0.0/10',
  5063. 'KW': '37.36.0.0/14',
  5064. 'KY': '64.96.0.0/15',
  5065. 'KZ': '2.72.0.0/13',
  5066. 'LA': '115.84.64.0/18',
  5067. 'LB': '178.135.0.0/16',
  5068. 'LC': '24.92.144.0/20',
  5069. 'LI': '82.117.0.0/19',
  5070. 'LK': '112.134.0.0/15',
  5071. 'LR': '102.183.0.0/16',
  5072. 'LS': '129.232.0.0/17',
  5073. 'LT': '78.56.0.0/13',
  5074. 'LU': '188.42.0.0/16',
  5075. 'LV': '46.109.0.0/16',
  5076. 'LY': '41.252.0.0/14',
  5077. 'MA': '105.128.0.0/11',
  5078. 'MC': '88.209.64.0/18',
  5079. 'MD': '37.246.0.0/16',
  5080. 'ME': '178.175.0.0/17',
  5081. 'MF': '74.112.232.0/21',
  5082. 'MG': '154.126.0.0/17',
  5083. 'MH': '117.103.88.0/21',
  5084. 'MK': '77.28.0.0/15',
  5085. 'ML': '154.118.128.0/18',
  5086. 'MM': '37.111.0.0/17',
  5087. 'MN': '49.0.128.0/17',
  5088. 'MO': '60.246.0.0/16',
  5089. 'MP': '202.88.64.0/20',
  5090. 'MQ': '109.203.224.0/19',
  5091. 'MR': '41.188.64.0/18',
  5092. 'MS': '208.90.112.0/22',
  5093. 'MT': '46.11.0.0/16',
  5094. 'MU': '105.16.0.0/12',
  5095. 'MV': '27.114.128.0/18',
  5096. 'MW': '102.70.0.0/15',
  5097. 'MX': '187.192.0.0/11',
  5098. 'MY': '175.136.0.0/13',
  5099. 'MZ': '197.218.0.0/15',
  5100. 'NA': '41.182.0.0/16',
  5101. 'NC': '101.101.0.0/18',
  5102. 'NE': '197.214.0.0/18',
  5103. 'NF': '203.17.240.0/22',
  5104. 'NG': '105.112.0.0/12',
  5105. 'NI': '186.76.0.0/15',
  5106. 'NL': '145.96.0.0/11',
  5107. 'NO': '84.208.0.0/13',
  5108. 'NP': '36.252.0.0/15',
  5109. 'NR': '203.98.224.0/19',
  5110. 'NU': '49.156.48.0/22',
  5111. 'NZ': '49.224.0.0/14',
  5112. 'OM': '5.36.0.0/15',
  5113. 'PA': '186.72.0.0/15',
  5114. 'PE': '186.160.0.0/14',
  5115. 'PF': '123.50.64.0/18',
  5116. 'PG': '124.240.192.0/19',
  5117. 'PH': '49.144.0.0/13',
  5118. 'PK': '39.32.0.0/11',
  5119. 'PL': '83.0.0.0/11',
  5120. 'PM': '70.36.0.0/20',
  5121. 'PR': '66.50.0.0/16',
  5122. 'PS': '188.161.0.0/16',
  5123. 'PT': '85.240.0.0/13',
  5124. 'PW': '202.124.224.0/20',
  5125. 'PY': '181.120.0.0/14',
  5126. 'QA': '37.210.0.0/15',
  5127. 'RE': '102.35.0.0/16',
  5128. 'RO': '79.112.0.0/13',
  5129. 'RS': '93.86.0.0/15',
  5130. 'RU': '5.136.0.0/13',
  5131. 'RW': '41.186.0.0/16',
  5132. 'SA': '188.48.0.0/13',
  5133. 'SB': '202.1.160.0/19',
  5134. 'SC': '154.192.0.0/11',
  5135. 'SD': '102.120.0.0/13',
  5136. 'SE': '78.64.0.0/12',
  5137. 'SG': '8.128.0.0/10',
  5138. 'SI': '188.196.0.0/14',
  5139. 'SK': '78.98.0.0/15',
  5140. 'SL': '102.143.0.0/17',
  5141. 'SM': '89.186.32.0/19',
  5142. 'SN': '41.82.0.0/15',
  5143. 'SO': '154.115.192.0/18',
  5144. 'SR': '186.179.128.0/17',
  5145. 'SS': '105.235.208.0/21',
  5146. 'ST': '197.159.160.0/19',
  5147. 'SV': '168.243.0.0/16',
  5148. 'SX': '190.102.0.0/20',
  5149. 'SY': '5.0.0.0/16',
  5150. 'SZ': '41.84.224.0/19',
  5151. 'TC': '65.255.48.0/20',
  5152. 'TD': '154.68.128.0/19',
  5153. 'TG': '196.168.0.0/14',
  5154. 'TH': '171.96.0.0/13',
  5155. 'TJ': '85.9.128.0/18',
  5156. 'TK': '27.96.24.0/21',
  5157. 'TL': '180.189.160.0/20',
  5158. 'TM': '95.85.96.0/19',
  5159. 'TN': '197.0.0.0/11',
  5160. 'TO': '175.176.144.0/21',
  5161. 'TR': '78.160.0.0/11',
  5162. 'TT': '186.44.0.0/15',
  5163. 'TV': '202.2.96.0/19',
  5164. 'TW': '120.96.0.0/11',
  5165. 'TZ': '156.156.0.0/14',
  5166. 'UA': '37.52.0.0/14',
  5167. 'UG': '102.80.0.0/13',
  5168. 'US': '6.0.0.0/8',
  5169. 'UY': '167.56.0.0/13',
  5170. 'UZ': '84.54.64.0/18',
  5171. 'VA': '212.77.0.0/19',
  5172. 'VC': '207.191.240.0/21',
  5173. 'VE': '186.88.0.0/13',
  5174. 'VG': '66.81.192.0/20',
  5175. 'VI': '146.226.0.0/16',
  5176. 'VN': '14.160.0.0/11',
  5177. 'VU': '202.80.32.0/20',
  5178. 'WF': '117.20.32.0/21',
  5179. 'WS': '202.4.32.0/19',
  5180. 'YE': '134.35.0.0/16',
  5181. 'YT': '41.242.116.0/22',
  5182. 'ZA': '41.0.0.0/11',
  5183. 'ZM': '102.144.0.0/13',
  5184. 'ZW': '102.177.192.0/18',
  5185. }
  5186. @classmethod
  5187. def random_ipv4(cls, code_or_block):
  5188. if len(code_or_block) == 2:
  5189. block = cls._country_ip_map.get(code_or_block.upper())
  5190. if not block:
  5191. return None
  5192. else:
  5193. block = code_or_block
  5194. addr, preflen = block.split('/')
  5195. addr_min = compat_struct_unpack('!L', socket.inet_aton(addr))[0]
  5196. addr_max = addr_min | (0xffffffff >> int(preflen))
  5197. return compat_str(socket.inet_ntoa(
  5198. compat_struct_pack('!L', random.randint(addr_min, addr_max))))
  5199. class PerRequestProxyHandler(compat_urllib_request.ProxyHandler):
  5200. def __init__(self, proxies=None):
  5201. # Set default handlers
  5202. for type in ('http', 'https'):
  5203. setattr(self, '%s_open' % type,
  5204. lambda r, proxy='__noproxy__', type=type, meth=self.proxy_open:
  5205. meth(r, proxy, type))
  5206. compat_urllib_request.ProxyHandler.__init__(self, proxies)
  5207. def proxy_open(self, req, proxy, type):
  5208. req_proxy = req.headers.get('Ytdl-request-proxy')
  5209. if req_proxy is not None:
  5210. proxy = req_proxy
  5211. del req.headers['Ytdl-request-proxy']
  5212. if proxy == '__noproxy__':
  5213. return None # No Proxy
  5214. if compat_urllib_parse.urlparse(proxy).scheme.lower() in ('socks', 'socks4', 'socks4a', 'socks5'):
  5215. req.add_header('Ytdl-socks-proxy', proxy)
  5216. # youtube-dl's http/https handlers do wrapping the socket with socks
  5217. return None
  5218. return compat_urllib_request.ProxyHandler.proxy_open(
  5219. self, req, proxy, type)
  5220. # Both long_to_bytes and bytes_to_long are adapted from PyCrypto, which is
  5221. # released into Public Domain
  5222. # https://github.com/dlitz/pycrypto/blob/master/lib/Crypto/Util/number.py#L387
  5223. def long_to_bytes(n, blocksize=0):
  5224. """long_to_bytes(n:long, blocksize:int) : string
  5225. Convert a long integer to a byte string.
  5226. If optional blocksize is given and greater than zero, pad the front of the
  5227. byte string with binary zeros so that the length is a multiple of
  5228. blocksize.
  5229. """
  5230. # after much testing, this algorithm was deemed to be the fastest
  5231. s = b''
  5232. n = int(n)
  5233. while n > 0:
  5234. s = compat_struct_pack('>I', n & 0xffffffff) + s
  5235. n = n >> 32
  5236. # strip off leading zeros
  5237. for i in range(len(s)):
  5238. if s[i] != b'\000'[0]:
  5239. break
  5240. else:
  5241. # only happens when n == 0
  5242. s = b'\000'
  5243. i = 0
  5244. s = s[i:]
  5245. # add back some pad bytes. this could be done more efficiently w.r.t. the
  5246. # de-padding being done above, but sigh...
  5247. if blocksize > 0 and len(s) % blocksize:
  5248. s = (blocksize - len(s) % blocksize) * b'\000' + s
  5249. return s
  5250. def bytes_to_long(s):
  5251. """bytes_to_long(string) : long
  5252. Convert a byte string to a long integer.
  5253. This is (essentially) the inverse of long_to_bytes().
  5254. """
  5255. acc = 0
  5256. length = len(s)
  5257. if length % 4:
  5258. extra = (4 - length % 4)
  5259. s = b'\000' * extra + s
  5260. length = length + extra
  5261. for i in range(0, length, 4):
  5262. acc = (acc << 32) + compat_struct_unpack('>I', s[i:i + 4])[0]
  5263. return acc
  5264. def ohdave_rsa_encrypt(data, exponent, modulus):
  5265. '''
  5266. Implement OHDave's RSA algorithm. See http://www.ohdave.com/rsa/
  5267. Input:
  5268. data: data to encrypt, bytes-like object
  5269. exponent, modulus: parameter e and N of RSA algorithm, both integer
  5270. Output: hex string of encrypted data
  5271. Limitation: supports one block encryption only
  5272. '''
  5273. payload = int(binascii.hexlify(data[::-1]), 16)
  5274. encrypted = pow(payload, exponent, modulus)
  5275. return '%x' % encrypted
  5276. def pkcs1pad(data, length):
  5277. """
  5278. Padding input data with PKCS#1 scheme
  5279. @param {int[]} data input data
  5280. @param {int} length target length
  5281. @returns {int[]} padded data
  5282. """
  5283. if len(data) > length - 11:
  5284. raise ValueError('Input data too long for PKCS#1 padding')
  5285. pseudo_random = [random.randint(0, 254) for _ in range(length - len(data) - 3)]
  5286. return [0, 2] + pseudo_random + [0] + data
  5287. def encode_base_n(num, n, table=None):
  5288. FULL_TABLE = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
  5289. if not table:
  5290. table = FULL_TABLE[:n]
  5291. if n > len(table):
  5292. raise ValueError('base %d exceeds table length %d' % (n, len(table)))
  5293. if num == 0:
  5294. return table[0]
  5295. ret = ''
  5296. while num:
  5297. ret = table[num % n] + ret
  5298. num = num // n
  5299. return ret
  5300. def decode_packed_codes(code):
  5301. mobj = re.search(PACKED_CODES_RE, code)
  5302. obfuscated_code, base, count, symbols = mobj.groups()
  5303. base = int(base)
  5304. count = int(count)
  5305. symbols = symbols.split('|')
  5306. symbol_table = {}
  5307. while count:
  5308. count -= 1
  5309. base_n_count = encode_base_n(count, base)
  5310. symbol_table[base_n_count] = symbols[count] or base_n_count
  5311. return re.sub(
  5312. r'\b(\w+)\b', lambda mobj: symbol_table[mobj.group(0)],
  5313. obfuscated_code)
  5314. def caesar(s, alphabet, shift):
  5315. if shift == 0:
  5316. return s
  5317. l = len(alphabet)
  5318. return ''.join(
  5319. alphabet[(alphabet.index(c) + shift) % l] if c in alphabet else c
  5320. for c in s)
  5321. def rot47(s):
  5322. return caesar(s, r'''!"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~''', 47)
  5323. def parse_m3u8_attributes(attrib):
  5324. info = {}
  5325. for (key, val) in re.findall(r'(?P<key>[A-Z0-9-]+)=(?P<val>"[^"]+"|[^",]+)(?:,|$)', attrib):
  5326. if val.startswith('"'):
  5327. val = val[1:-1]
  5328. info[key] = val
  5329. return info
  5330. def urshift(val, n):
  5331. return val >> n if val >= 0 else (val + 0x100000000) >> n
  5332. # Based on png2str() written by @gdkchan and improved by @yokrysty
  5333. # Originally posted at https://github.com/ytdl-org/youtube-dl/issues/9706
  5334. def decode_png(png_data):
  5335. # Reference: https://www.w3.org/TR/PNG/
  5336. header = png_data[8:]
  5337. if png_data[:8] != b'\x89PNG\x0d\x0a\x1a\x0a' or header[4:8] != b'IHDR':
  5338. raise IOError('Not a valid PNG file.')
  5339. int_map = {1: '>B', 2: '>H', 4: '>I'}
  5340. unpack_integer = lambda x: compat_struct_unpack(int_map[len(x)], x)[0]
  5341. chunks = []
  5342. while header:
  5343. length = unpack_integer(header[:4])
  5344. header = header[4:]
  5345. chunk_type = header[:4]
  5346. header = header[4:]
  5347. chunk_data = header[:length]
  5348. header = header[length:]
  5349. header = header[4:] # Skip CRC
  5350. chunks.append({
  5351. 'type': chunk_type,
  5352. 'length': length,
  5353. 'data': chunk_data
  5354. })
  5355. ihdr = chunks[0]['data']
  5356. width = unpack_integer(ihdr[:4])
  5357. height = unpack_integer(ihdr[4:8])
  5358. idat = b''
  5359. for chunk in chunks:
  5360. if chunk['type'] == b'IDAT':
  5361. idat += chunk['data']
  5362. if not idat:
  5363. raise IOError('Unable to read PNG data.')
  5364. decompressed_data = bytearray(zlib.decompress(idat))
  5365. stride = width * 3
  5366. pixels = []
  5367. def _get_pixel(idx):
  5368. x = idx % stride
  5369. y = idx // stride
  5370. return pixels[y][x]
  5371. for y in range(height):
  5372. basePos = y * (1 + stride)
  5373. filter_type = decompressed_data[basePos]
  5374. current_row = []
  5375. pixels.append(current_row)
  5376. for x in range(stride):
  5377. color = decompressed_data[1 + basePos + x]
  5378. basex = y * stride + x
  5379. left = 0
  5380. up = 0
  5381. if x > 2:
  5382. left = _get_pixel(basex - 3)
  5383. if y > 0:
  5384. up = _get_pixel(basex - stride)
  5385. if filter_type == 1: # Sub
  5386. color = (color + left) & 0xff
  5387. elif filter_type == 2: # Up
  5388. color = (color + up) & 0xff
  5389. elif filter_type == 3: # Average
  5390. color = (color + ((left + up) >> 1)) & 0xff
  5391. elif filter_type == 4: # Paeth
  5392. a = left
  5393. b = up
  5394. c = 0
  5395. if x > 2 and y > 0:
  5396. c = _get_pixel(basex - stride - 3)
  5397. p = a + b - c
  5398. pa = abs(p - a)
  5399. pb = abs(p - b)
  5400. pc = abs(p - c)
  5401. if pa <= pb and pa <= pc:
  5402. color = (color + a) & 0xff
  5403. elif pb <= pc:
  5404. color = (color + b) & 0xff
  5405. else:
  5406. color = (color + c) & 0xff
  5407. current_row.append(color)
  5408. return width, height, pixels
  5409. def write_xattr(path, key, value):
  5410. # This mess below finds the best xattr tool for the job
  5411. try:
  5412. # try the pyxattr module...
  5413. import xattr
  5414. if hasattr(xattr, 'set'): # pyxattr
  5415. # Unicode arguments are not supported in python-pyxattr until
  5416. # version 0.5.0
  5417. # See https://github.com/ytdl-org/youtube-dl/issues/5498
  5418. pyxattr_required_version = '0.5.0'
  5419. if version_tuple(xattr.__version__) < version_tuple(pyxattr_required_version):
  5420. # TODO: fallback to CLI tools
  5421. raise XAttrUnavailableError(
  5422. 'python-pyxattr is detected but is too old. '
  5423. 'youtube-dl requires %s or above while your version is %s. '
  5424. 'Falling back to other xattr implementations' % (
  5425. pyxattr_required_version, xattr.__version__))
  5426. setxattr = xattr.set
  5427. else: # xattr
  5428. setxattr = xattr.setxattr
  5429. try:
  5430. setxattr(path, key, value)
  5431. except EnvironmentError as e:
  5432. raise XAttrMetadataError(e.errno, e.strerror)
  5433. except ImportError:
  5434. if compat_os_name == 'nt':
  5435. # Write xattrs to NTFS Alternate Data Streams:
  5436. # http://en.wikipedia.org/wiki/NTFS#Alternate_data_streams_.28ADS.29
  5437. assert ':' not in key
  5438. assert os.path.exists(path)
  5439. ads_fn = path + ':' + key
  5440. try:
  5441. with open(ads_fn, 'wb') as f:
  5442. f.write(value)
  5443. except EnvironmentError as e:
  5444. raise XAttrMetadataError(e.errno, e.strerror)
  5445. else:
  5446. user_has_setfattr = check_executable('setfattr', ['--version'])
  5447. user_has_xattr = check_executable('xattr', ['-h'])
  5448. if user_has_setfattr or user_has_xattr:
  5449. value = value.decode('utf-8')
  5450. if user_has_setfattr:
  5451. executable = 'setfattr'
  5452. opts = ['-n', key, '-v', value]
  5453. elif user_has_xattr:
  5454. executable = 'xattr'
  5455. opts = ['-w', key, value]
  5456. cmd = ([encodeFilename(executable, True)]
  5457. + [encodeArgument(o) for o in opts]
  5458. + [encodeFilename(path, True)])
  5459. try:
  5460. p = subprocess.Popen(
  5461. cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=subprocess.PIPE)
  5462. except EnvironmentError as e:
  5463. raise XAttrMetadataError(e.errno, e.strerror)
  5464. stdout, stderr = process_communicate_or_kill(p)
  5465. stderr = stderr.decode('utf-8', 'replace')
  5466. if p.returncode != 0:
  5467. raise XAttrMetadataError(p.returncode, stderr)
  5468. else:
  5469. # On Unix, and can't find pyxattr, setfattr, or xattr.
  5470. if sys.platform.startswith('linux'):
  5471. raise XAttrUnavailableError(
  5472. "Couldn't find a tool to set the xattrs. "
  5473. "Install either the python 'pyxattr' or 'xattr' "
  5474. "modules, or the GNU 'attr' package "
  5475. "(which contains the 'setfattr' tool).")
  5476. else:
  5477. raise XAttrUnavailableError(
  5478. "Couldn't find a tool to set the xattrs. "
  5479. "Install either the python 'xattr' module, "
  5480. "or the 'xattr' binary.")
  5481. def random_birthday(year_field, month_field, day_field):
  5482. start_date = datetime.date(1950, 1, 1)
  5483. end_date = datetime.date(1995, 12, 31)
  5484. offset = random.randint(0, (end_date - start_date).days)
  5485. random_date = start_date + datetime.timedelta(offset)
  5486. return {
  5487. year_field: str(random_date.year),
  5488. month_field: str(random_date.month),
  5489. day_field: str(random_date.day),
  5490. }
  5491. def clean_podcast_url(url):
  5492. return re.sub(r'''(?x)
  5493. (?:
  5494. (?:
  5495. chtbl\.com/track|
  5496. media\.blubrry\.com| # https://create.blubrry.com/resources/podcast-media-download-statistics/getting-started/
  5497. play\.podtrac\.com
  5498. )/[^/]+|
  5499. (?:dts|www)\.podtrac\.com/(?:pts/)?redirect\.[0-9a-z]{3,4}| # http://analytics.podtrac.com/how-to-measure
  5500. flex\.acast\.com|
  5501. pd(?:
  5502. cn\.co| # https://podcorn.com/analytics-prefix/
  5503. st\.fm # https://podsights.com/docs/
  5504. )/e
  5505. )/''', '', url)
  5506. if __debug__:
  5507. # Raise TypeError if args can't be bound
  5508. # needs compat owing to unstable inspect API, thanks PSF :-(
  5509. try:
  5510. inspect.signature
  5511. def _try_bind_args(fn, *args, **kwargs):
  5512. inspect.signature(fn).bind(*args, **kwargs)
  5513. except AttributeError:
  5514. # Py < 3.3
  5515. def _try_bind_args(fn, *args, **kwargs):
  5516. fn_args = inspect.getargspec(fn)
  5517. # Py2: ArgInfo(args, varargs, keywords, defaults)
  5518. # Py3: ArgSpec(args, varargs, keywords, defaults)
  5519. if not fn_args.keywords:
  5520. for k in kwargs:
  5521. if k not in (fn_args.args or []):
  5522. raise TypeError("got an unexpected keyword argument: '{0}'".format(k))
  5523. if not fn_args.varargs:
  5524. args_to_bind = len(args)
  5525. bindable = len(fn_args.args or [])
  5526. if args_to_bind > bindable:
  5527. raise TypeError('too many positional arguments')
  5528. bindable -= len(fn_args.defaults or [])
  5529. if args_to_bind < bindable:
  5530. if kwargs:
  5531. bindable -= len(set(fn_args.args or []) & set(kwargs))
  5532. if bindable > args_to_bind:
  5533. raise TypeError("missing a required argument: '{0}'".format(fn_args.args[args_to_bind]))
  5534. def traverse_obj(obj, *paths, **kwargs):
  5535. """
  5536. Safely traverse nested `dict`s and `Iterable`s
  5537. >>> obj = [{}, {"key": "value"}]
  5538. >>> traverse_obj(obj, (1, "key"))
  5539. "value"
  5540. Each of the provided `paths` is tested and the first producing a valid result will be returned.
  5541. The next path will also be tested if the path branched but no results could be found.
  5542. Supported values for traversal are `Mapping`, `Iterable` and `re.Match`.
  5543. Unhelpful values (`{}`, `None`) are treated as the absence of a value and discarded.
  5544. The paths will be wrapped in `variadic`, so that `'key'` is conveniently the same as `('key', )`.
  5545. The keys in the path can be one of:
  5546. - `None`: Return the current object.
  5547. - `set`: Requires the only item in the set to be a type or function,
  5548. like `{type}`/`{func}`. If a `type`, returns only values
  5549. of this type. If a function, returns `func(obj)`.
  5550. - `str`/`int`: Return `obj[key]`. For `re.Match`, return `obj.group(key)`.
  5551. - `slice`: Branch out and return all values in `obj[key]`.
  5552. - `Ellipsis`: Branch out and return a list of all values.
  5553. - `tuple`/`list`: Branch out and return a list of all matching values.
  5554. Read as: `[traverse_obj(obj, branch) for branch in branches]`.
  5555. - `function`: Branch out and return values filtered by the function.
  5556. Read as: `[value for key, value in obj if function(key, value)]`.
  5557. For `Sequence`s, `key` is the index of the value.
  5558. For `Iterable`s, `key` is the enumeration count of the value.
  5559. For `re.Match`es, `key` is the group number (0 = full match)
  5560. as well as additionally any group names, if given.
  5561. - `dict` Transform the current object and return a matching dict.
  5562. Read as: `{key: traverse_obj(obj, path) for key, path in dct.items()}`.
  5563. `tuple`, `list`, and `dict` all support nested paths and branches.
  5564. @params paths Paths which to traverse by.
  5565. Keyword arguments:
  5566. @param default Value to return if the paths do not match.
  5567. If the last key in the path is a `dict`, it will apply to each value inside
  5568. the dict instead, depth first. Try to avoid if using nested `dict` keys.
  5569. @param expected_type If a `type`, only accept final values of this type.
  5570. If any other callable, try to call the function on each result.
  5571. If the last key in the path is a `dict`, it will apply to each value inside
  5572. the dict instead, recursively. This does respect branching paths.
  5573. @param get_all If `False`, return the first matching result, otherwise all matching ones.
  5574. @param casesense If `False`, consider string dictionary keys as case insensitive.
  5575. The following are only meant to be used by YoutubeDL.prepare_outtmpl and are not part of the API
  5576. @param _is_user_input Whether the keys are generated from user input.
  5577. If `True` strings get converted to `int`/`slice` if needed.
  5578. @param _traverse_string Whether to traverse into objects as strings.
  5579. If `True`, any non-compatible object will first be
  5580. converted into a string and then traversed into.
  5581. The return value of that path will be a string instead,
  5582. not respecting any further branching.
  5583. @returns The result of the object traversal.
  5584. If successful, `get_all=True`, and the path branches at least once,
  5585. then a list of results is returned instead.
  5586. A list is always returned if the last path branches and no `default` is given.
  5587. If a path ends on a `dict` that result will always be a `dict`.
  5588. """
  5589. # parameter defaults
  5590. default = kwargs.get('default', NO_DEFAULT)
  5591. expected_type = kwargs.get('expected_type')
  5592. get_all = kwargs.get('get_all', True)
  5593. casesense = kwargs.get('casesense', True)
  5594. _is_user_input = kwargs.get('_is_user_input', False)
  5595. _traverse_string = kwargs.get('_traverse_string', False)
  5596. # instant compat
  5597. str = compat_str
  5598. casefold = lambda k: compat_casefold(k) if isinstance(k, str) else k
  5599. if isinstance(expected_type, type):
  5600. type_test = lambda val: val if isinstance(val, expected_type) else None
  5601. else:
  5602. type_test = lambda val: try_call(expected_type or IDENTITY, args=(val,))
  5603. def lookup_or_none(v, k, getter=None):
  5604. try:
  5605. return getter(v, k) if getter else v[k]
  5606. except IndexError:
  5607. return None
  5608. def from_iterable(iterables):
  5609. # chain.from_iterable(['ABC', 'DEF']) --> A B C D E F
  5610. for it in iterables:
  5611. for item in it:
  5612. yield item
  5613. def apply_key(key, obj, is_last):
  5614. branching = False
  5615. if obj is None and _traverse_string:
  5616. if key is Ellipsis or callable(key) or isinstance(key, slice):
  5617. branching = True
  5618. result = ()
  5619. else:
  5620. result = None
  5621. elif key is None:
  5622. result = obj
  5623. elif isinstance(key, set):
  5624. assert len(key) == 1, 'Set should only be used to wrap a single item'
  5625. item = next(iter(key))
  5626. if isinstance(item, type):
  5627. result = obj if isinstance(obj, item) else None
  5628. else:
  5629. result = try_call(item, args=(obj,))
  5630. elif isinstance(key, (list, tuple)):
  5631. branching = True
  5632. result = from_iterable(
  5633. apply_path(obj, branch, is_last)[0] for branch in key)
  5634. elif key is Ellipsis:
  5635. branching = True
  5636. if isinstance(obj, compat_collections_abc.Mapping):
  5637. result = obj.values()
  5638. elif is_iterable_like(obj):
  5639. result = obj
  5640. elif isinstance(obj, compat_re_Match):
  5641. result = obj.groups()
  5642. elif _traverse_string:
  5643. branching = False
  5644. result = str(obj)
  5645. else:
  5646. result = ()
  5647. elif callable(key):
  5648. branching = True
  5649. if isinstance(obj, compat_collections_abc.Mapping):
  5650. iter_obj = obj.items()
  5651. elif is_iterable_like(obj):
  5652. iter_obj = enumerate(obj)
  5653. elif isinstance(obj, compat_re_Match):
  5654. iter_obj = itertools.chain(
  5655. enumerate(itertools.chain((obj.group(),), obj.groups())),
  5656. obj.groupdict().items())
  5657. elif _traverse_string:
  5658. branching = False
  5659. iter_obj = enumerate(str(obj))
  5660. else:
  5661. iter_obj = ()
  5662. result = (v for k, v in iter_obj if try_call(key, args=(k, v)))
  5663. if not branching: # string traversal
  5664. result = ''.join(result)
  5665. elif isinstance(key, dict):
  5666. iter_obj = ((k, _traverse_obj(obj, v, False, is_last)) for k, v in key.items())
  5667. result = dict((k, v if v is not None else default) for k, v in iter_obj
  5668. if v is not None or default is not NO_DEFAULT) or None
  5669. elif isinstance(obj, compat_collections_abc.Mapping):
  5670. result = (try_call(obj.get, args=(key,))
  5671. if casesense or try_call(obj.__contains__, args=(key,))
  5672. else next((v for k, v in obj.items() if casefold(k) == key), None))
  5673. elif isinstance(obj, compat_re_Match):
  5674. result = None
  5675. if isinstance(key, int) or casesense:
  5676. # Py 2.6 doesn't have methods in the Match class/type
  5677. result = lookup_or_none(obj, key, getter=lambda _, k: obj.group(k))
  5678. elif isinstance(key, str):
  5679. result = next((v for k, v in obj.groupdict().items()
  5680. if casefold(k) == key), None)
  5681. else:
  5682. result = None
  5683. if isinstance(key, (int, slice)):
  5684. if is_iterable_like(obj, compat_collections_abc.Sequence):
  5685. branching = isinstance(key, slice)
  5686. result = lookup_or_none(obj, key)
  5687. elif _traverse_string:
  5688. result = lookup_or_none(str(obj), key)
  5689. return branching, result if branching else (result,)
  5690. def lazy_last(iterable):
  5691. iterator = iter(iterable)
  5692. prev = next(iterator, NO_DEFAULT)
  5693. if prev is NO_DEFAULT:
  5694. return
  5695. for item in iterator:
  5696. yield False, prev
  5697. prev = item
  5698. yield True, prev
  5699. def apply_path(start_obj, path, test_type):
  5700. objs = (start_obj,)
  5701. has_branched = False
  5702. key = None
  5703. for last, key in lazy_last(variadic(path, (str, bytes, dict, set))):
  5704. if _is_user_input and isinstance(key, str):
  5705. if key == ':':
  5706. key = Ellipsis
  5707. elif ':' in key:
  5708. key = slice(*map(int_or_none, key.split(':')))
  5709. elif int_or_none(key) is not None:
  5710. key = int(key)
  5711. if not casesense and isinstance(key, str):
  5712. key = compat_casefold(key)
  5713. if __debug__ and callable(key):
  5714. # Verify function signature
  5715. _try_bind_args(key, None, None)
  5716. new_objs = []
  5717. for obj in objs:
  5718. branching, results = apply_key(key, obj, last)
  5719. has_branched |= branching
  5720. new_objs.append(results)
  5721. objs = from_iterable(new_objs)
  5722. if test_type and not isinstance(key, (dict, list, tuple)):
  5723. objs = map(type_test, objs)
  5724. return objs, has_branched, isinstance(key, dict)
  5725. def _traverse_obj(obj, path, allow_empty, test_type):
  5726. results, has_branched, is_dict = apply_path(obj, path, test_type)
  5727. results = LazyList(x for x in results if x not in (None, {}))
  5728. if get_all and has_branched:
  5729. if results:
  5730. return results.exhaust()
  5731. if allow_empty:
  5732. return [] if default is NO_DEFAULT else default
  5733. return None
  5734. return results[0] if results else {} if allow_empty and is_dict else None
  5735. for index, path in enumerate(paths, 1):
  5736. result = _traverse_obj(obj, path, index == len(paths), True)
  5737. if result is not None:
  5738. return result
  5739. return None if default is NO_DEFAULT else default
  5740. def T(x):
  5741. """ For use in yt-dl instead of {type} or set((type,)) """
  5742. return set((x,))
  5743. def get_first(obj, keys, **kwargs):
  5744. return traverse_obj(obj, (Ellipsis,) + tuple(variadic(keys)), get_all=False, **kwargs)
  5745. def join_nonempty(*values, **kwargs):
  5746. # parameter defaults
  5747. delim = kwargs.get('delim', '-')
  5748. from_dict = kwargs.get('from_dict')
  5749. if from_dict is not None:
  5750. values = (traverse_obj(from_dict, variadic(v)) for v in values)
  5751. return delim.join(map(compat_str, filter(None, values)))