我想從網站中提取一些數據。我將其保存爲「網頁,僅限HTML」,放在桌面上名爲soccerway.html的文件中。使用BeautifulSoup時出錯
後來我寫了使用IPython的筆記本電腦下面的命令:
from bs4 import BeautifulSoup
soup=BeautifulSoup(open("soccerway.html"))
我得到以下錯誤:
IOError: [Errno 2] No such file or directory: 'soccerway.html'
我該如何解決這個問題?
這有什麼好做BeautifulSoup,當然。 open()調用不會以任何方式工作。 –
您需要使用絕對路徑;您的腳本的當前工作目錄不是桌面文件夾。 –
更好的是,使用* Python *替代下載頁面。 –