/
ilya.petrash
/
SimplePyScripts
Обзор
Документация
Войти
/
ilya.petrash
/
SimplePyScripts
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
html_parsing/http_v2.0__maxmaster_ru__hyper_example.py
19 строк
440 B
gil9red
Refactoring. Using black code style
23 май 2023, 16:27
23 май 2023, 16:27
6090f94
Код
Авторство
О чём код?
#!/usr/bin/env python3 # -*- coding: utf-8 -*- __author__ = "ipetrash" from bs4 import BeautifulSoup from hyper import HTTPConnection conn = HTTPConnection("maxmaster.ru:443") conn.request("GET", "/") resp = conn.get_response() print(resp.status) # 200 root = BeautifulSoup(resp.read(), "html.parser") print(root.select_one("head > title").text) # MAXMASTER - интернет-магазин электроинструмента, ...