python
import requests
from bs4 import BeautifulSoup
url = 'https://xxx'
r = requests.get(url)
soup = BeautifulSoup(r.text, 'html.parser')
#Zeigen Sie den Text des p-Tags an
tag_p = soup.find_all('p')
for p in tag_p:
print(p.text)
#---Folgendes ist find_Beispiel aller Methoden(Gleiches gilt für die Suchmethode) ---
#Attributspezifikation
ids = soup.find_all(id='sample')
#Attributspezifikation(class)
clss = soup.find_all(class_='sample')
#Geben Sie den Tag-Namen und die Attribute an
divs = soup.find_all('div', class_='sample')
#Mehrere Tags
tags = soup.find_all(['a', 'b', 'c'])
from glob import glob
from bs4 import BeautifulSoup
#Beim Targeting von HTML-Dateien im selben Verzeichnis
files = glob('*.htm')
for file in files:
ff = open( file, 'r' ,encoding='utf-8' ).read()
soup = BeautifulSoup( ff ,'html.parser')
#Zeigen Sie den Text des p-Tags an
tag_p = soup.find_all('p')
for p in tag_p:
print(p.text)
Recommended Posts