resp1 = await session.get(url=href, headers=header)
soup1 = BeautifulSoup(await resp1.text(), 'lxml', from_encoding='UTF-8')
>>> from bs4 import BeautifulSoup
>>> html = '<a href="http://example.com/">\nI linked to <i>example.com</i>\n</a>'
>>> root = BeautifulSoup(html, 'html.parser')
>>> root.get_text()
# '\nI linked to example.com\n'
>>> root.i.get_text()
# 'example.com'