所以我試圖做一個程序,告訴用戶多遠,旅行者1號是從地球上,美國航空航天局有這方面的信息在他們的網站http://voyager.jpl.nasa.gov/where/index.html ... 我似乎無法管理在專區內獲得的信息,這裏的DIV:<div id="voy1_km">Distance goes here</div>
使用BeautifulSoup的HTML抓取
我現在的程序如下:`
import requests
from BeautifulSoup import BeautifulSoup
url = "http://voyager.jpl.nasa.gov/where/index.html"
response = requests.get(url)
html = response.content
soup = BeautifulSoup(html)
test = soup.find('div', {'id' : 'voy1_km'})
print test
所以長話短說,我如何獲得的股利內容?
什麼是輸出?嘗試打印迴應HTML和湯,檢查它是否破的任何地方 – MohitC
它只是輸出
檢查來源,
什麼也沒有。改變的價值由JS – MohitC