Win 10
—————————–
Нужно найти строку в странице: https://zen.yandex.ru/video/watch/62795871aef4a05c45c72ced?t=39
Строка выглядит так:
"https://strm.yandex.ru/vod/zen-vod/vod-content/d65a83bba89b63e61300f9e26da19b2b/a83029a6-d4f73007-dcba481d-d58c2c8f/kaltura/desc_64ff1ce872df6aae37aedc9d2869df09/86534225505746213/ysign1=6d490380c56ba635871b7e42bed944066499bbadc5a2bfa98e61c06c6a5a3925,abcID=967,from=zen,pfx,sfx,ts=628b1555/master.m3u8
import re from urllib.request import urlopen html = urlopen ("https://zen.yandex.ru/video/watch/62795871aef4a05c45c72ced?t=39").read().decode("utf-8") m = ['a-z'] a = re.findall((r'https', '/master.m3u8'), html) print(a)
Выдаёт ошибку:
Traceback (most recent call last):
File “C:\Users\Пк\Desktop\Как найти ссылку в html python\1.py”, line 6, in <module>
a = re.findall((r'https', ‘/master.m3u8’), html)
File “C:\Python\lib\re.py”, line 240, in findall
return _compile(pattern, flags).findall(string)
File “C:\Python\lib\re.py”, line 302, in _compile
raise TypeError(“first argument must be string or compiled pattern”)
TypeError: first argument must be string or compiled pattern
Что-то сделал не так. Подскажите как исправить ?