0
展望挑選出從網站如價格,公司信息等具體數據中提取特定註釋節點之間的數據幸運的是,網站設計師已經把大量的標記,如Python的 - 與BeautifulSoup 4
<!-- Begin Services Table -->
' desired data
<!-- End Services Table -->
我需要什麼樣的代碼才能使BS4在給定標籤之間返回字符串?
import requests
from bs4 import BeautifulSoup
url = "http://www.100ll.com/searchresults.phpclear_previous=true&searchfor="+'KPLN'+"&submit.x=0&submit.y=0"
response = requests.get(url)
soup = BeautifulSoup(response.content, "lxml")
text_list = soup.find(id="framediv").find_all(text=True)
start_index = text_list.index(' Begin Fuel Information Table ') + 1
end_index = text_list.index(' End Fuel Information Table ')
for item in text_list[start_index:end_index]:
print(item)
這裏是有問題的網站:
http://www.100ll.com/showfbo.php?HashID=cf5f18404c062da6fa11e3af41358873
等都不是免費的編碼服務。你必須嘗試自己解決問題。如果無法正常工作,請發佈您嘗試的內容,我們會幫助您解決問題。 – Barmar
對不起@Barmar我忘了發佈我的原始代碼! –