python3.4.3 安裝BeautifulSoup4:
使用pip install 安裝:
在命令行cmd之后輸入,pip install BeautifulSoup4
BeautifulSoup4的使用:
問題:
1. 文檔中這樣寫的 soup.select("p nth-of-type(3)"),在嘗試時遇到錯誤'Unsupported or invalid CSS selector: "%s"' % token?
原因是不支持這樣語法,改為這樣soup.select("p:nth-of-type(3)")就好了。