from requests_html import HTMLSession
session = HTMLSession()
resp = session.get('https://example.com/blog/508180/')
description = str(resp.html.xpath('//meta[@name="description"]/@content')).replace('\r\n','')
print(description)
при выполнении кода выдает:
'\r\n\r\nblhablha, blhablha, blhablha, blhablha, blhablha,'
Хочу убрать в начале символы перевода строки \r\n\r\
Пробовал:
description = str(resp.html.xpath('//meta[@name="description"]/@content')).replace('\r\n' , '')
description = str(resp.html.xpath('//meta[@name="description"]/@content')).lstrip()
description = str(resp.html.xpath('//meta[@name="description"]/@content')).strip()
Все равно выводит
'\r\n\r\nblhablha, blhablha, blhablha, blhablha, blhablha,'