“Xpath Beautifulsoup” Kod odpowiedzi

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

Odpowiedzi podobne do “Xpath Beautifulsoup”

Pytania podobne do “Xpath Beautifulsoup”

Więcej pokrewnych odpowiedzi na “Xpath Beautifulsoup” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu