так не подойдет
from requests_html import HTMLSession
session = HTMLSession()
r = session.get('https://pm.by/live.html')
print(r.encoding)
r.html.encoding = 'cp1251'
print(r.html.xpath('//title/text()'))
In [42]:
WINDOWS-1251
['Ставки Live – ставки во время игры (по ходу матча): БК Париматч']
r.html.encoding = 'cp1251'
In [41]:
WINDOWS-1251
['������ Live � ������ �� ����� ���� (�� ���� �����): �� ��������']
list1 = [1, 2, 3, 6]
list2 = [1, 2, 4]
list3 = [True if item1 in list2 else False for item1 in list1]
print(list3)
[True, True, False, False]
Читай ошибку - Failed to authenticate