/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
PhysicsTools/PythonAnalysis/test/test_bs4.py
12 строк
299 B
Shahzad Malik Muzaffar
added BeautifulSoup unit test
26 окт 2021, 18:11
26 окт 2021, 18:11
c58a0fe
Код
Авторство
О чём код?
#!/usr/bin/env python3 import pycurl from bs4 import BeautifulSoup from io import BytesIO buf = BytesIO() c = pycurl.Curl() c.setopt(c.URL, 'https://cmssdt.cern.ch/SDT/') c.setopt(c.WRITEDATA, buf) c.perform() c.close() html = BeautifulSoup(buf.getvalue(), 'html.parser') print(html.find('script'))