所以我想用美麗的湯來得到this page的內容。我想創建一個包含所有CSS顏色名稱的字典,這看起來像是一種快速簡單的方法來訪問它。所以很自然,我做了快速的基礎:Beautifulsoup url加載錯誤
from bs4 import BeautifulSoup as bs
url = 'http://www.w3schools.com/cssref/css_colornames.asp'
soup = bs(url)
由於某種原因,我只得到URL在體內的p
標籤,就是這樣:
>>> print soup.prettify()
<html>
<body>
<p>
http://www.w3schools.com/cssref/css_colornames.asp
</p>
</body>
</html>
爲什麼不會BeautifulSoup給我訪問我需要的信息?
沒有,beautifulsoup工作就好 – Stephan