код может выполняться и отлаживаться, но он показывает «нерешенный импорт» Python (unresolved-import) »есть ли другие настройки, которые я пропустил?
import requests
import os
url = 'https://www.google.com'
response = requests.get(url)
response.encoding = 'utf-8'
html = response.text
path = os.path.abspath(os.path.dirname(__file__))+'\\test.txt'
with open(path, 'w', encoding = 'gbk') as f:
f.write(html)