0
我是Beautifulsoup的新手,似乎遇到了問題。我寫的代碼對我而言是正確的,但輸出是空的。它沒有顯示任何價值。BeautifulSoup不返回任何值
import requests
from bs4 import BeautifulSoup
url = requests.get("https://www.nseindia.com/")
soup = BeautifulSoup(url.content, "html.parser")
nifty = soup.find_all("span", {"id": "lastPriceNIFTY"})
for x in nifty:
print x.text
我不能安裝dryscrape。每當我嘗試通過點對點安裝時,它都會給我帶來錯誤。你能幫我嗎? 'qmake'不被識別爲內部或外部命令, 可操作程序或批處理文件。 錯誤:[Errno 2]沒有這樣的文件或目錄:'src/webkit_server' – Himakar
@Himakar你是windows還是linux? – MYGz
我在Windows 10上。 – Himakar