diff options
author | Sergey M․ <dstftw@gmail.com> | 2018-07-09 23:43:05 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2018-07-09 23:43:05 +0700 |
commit | 0685d9727b9657fc8a31c96cb52c4155de29fcfc (patch) | |
tree | 8c6ee19df1b272ac6cb156919a5c4a17422f8391 /youtube_dl/utils.py | |
parent | e06632e3fe25036b804a62469bb18fa4c37e3368 (diff) |
[utils] Share JSON-LD regex
Diffstat (limited to 'youtube_dl/utils.py')
-rw-r--r-- | youtube_dl/utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 6a3199fb9..8c45166d7 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -184,6 +184,7 @@ DATE_FORMATS_MONTH_FIRST.extend([ ]) PACKED_CODES_RE = r"}\('(.+)',(\d+),(\d+),'([^']+)'\.split\('\|'\)" +JSON_LD_RE = r'(?is)<script[^>]+type=(["\'])application/ld\+json\1[^>]*>(?P<json_ld>.+?)</script>' def preferredencoding(): |