“Jak wyodrębnić dane ze strony internetowej za pomocą BeautifulSoup” Kod odpowiedzi

Jak wyodrębnić dane ze strony internetowej za pomocą BeautifulSoup

from bs4 import BeautifulSoup
import requests
url="URL_HERE"
response=requests.get(url)
soup=BeautifulSoup(response.content)
spans=soup.find_all('span',"_class_here")
for span in spans:
  print(span.text)
Vitalik-Hakim

Piękna grupa otrzymuje dane ze strony internetowej

from bs4 import BeautifulSoup
soup = BeautifulSoup(html_doc, 'html.parser')

print(soup.prettify())
# <html>
#  <head>
#   <title>
#    The Dormouse's story
#   </title>
#  </head>
#  <body>
#   <p class="title">
#    <b>
#     The Dormouse's story
#    </b>
#   </p>
#   <p class="story">
#    Once upon a time there were three little sisters; and their names were
#    <a class="sister" href="http://example.com/elsie" id="link1">
#     Elsie
#    </a>
#    ,
#    <a class="sister" href="http://example.com/lacie" id="link2">
#     Lacie
#    </a>
#    and
#    <a class="sister" href="http://example.com/tillie" id="link3">
#     Tillie
#    </a>
#    ; and they lived at the bottom of a well.
#   </p>
#   <p class="story">
#    ...
#   </p>
#  </body>
# </html>
Obedient Orangutan

Odpowiedzi podobne do “Jak wyodrębnić dane ze strony internetowej za pomocą BeautifulSoup”

Pytania podobne do “Jak wyodrębnić dane ze strony internetowej za pomocą BeautifulSoup”

Więcej pokrewnych odpowiedzi na “Jak wyodrębnić dane ze strony internetowej za pomocą BeautifulSoup” w Python

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

Przeglądaj inne języki kodu