Загрузка данных
import requests url = "https://httpbin.org/html" html = requests.get(url).text pos = html.find("<h1>") print(pos)