#python #web-scraping #beautifulsoup #web-scraping-language
Вопрос:
from bs4 import BeautifulSoup import requests headers = {"User-Agent":"***********************"} urls = "https://www.website.com/en" respond = requests.get(urls, headers=headers) assert respond.status_code==200 simple_data = BeautifulSoup(respond.content, "html.parser") def find_item_body(): locator = 'body' body_items = simple_data.select_one(locator) print(body_items) if __name__ == '__main__': find_item_body()
Я получил следующую ошибку:
UnicodeEncodeError: 'charmap' codec can't encode character 'u011b' in position 69412: character maps to lt;undefinedgt;
PS: я уже пробовал использовать encode = «utf-8», а также «windows-1252», и я всегда получал одну и ту же ошибку