“Python Beautifulsoup Xpath” Ответ

xpath beautifulsoup

from bs4 import BeautifulSoup
from lxml import etree
import requests

# Test url and xpath
URL = "https://en.wikipedia.org/wiki/Nike,_Inc."
xpath_address = """//*[@id="firstHeading"]"""

response = requests.get(URL)
soup = BeautifulSoup(response.content, "html.parser")
dom = etree.HTML(str(soup))
print(dom.xpath(xpath_address)[0].text)
Thebetta

Python Beautifulsoup Xpath

try:
    # Python 2
    from urllib2 import urlopen
except ImportError:
    from urllib.request import urlopen
from lxml import etree

url =  "http://www.example.com/servlet/av/ResultTemplate=AVResult.html"
response = urlopen(url)
htmlparser = etree.HTMLParser()
tree = etree.parse(response, htmlparser)
tree.xpath(xpathselector)
dEN5

Ответы похожие на “Python Beautifulsoup Xpath”

Вопросы похожие на “Python Beautifulsoup Xpath”

Больше похожих ответов на “Python Beautifulsoup Xpath” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования