我想從這個網站得到一個項目的價格抽取數據:https://paytm.com/shop/p/demonio-SUNDEMONIOS-R-193973BC69538C?tracker=%7C%7C%7C%7C%2Fh%2Fbrand-store%2Ffashion-sale-Best-Selling%20Products%7C1無法從網站
價格位於以下標籤:
<span ng-if="!product.product.isOnlyCarCategory">Buy for Rs 79</span>
我使用下面的代碼,但它返回一個空列表。
import requests
from bs4 import BeautifulSoup
s=str(raw_input())
r=requests.get(s)
soup=BeautifulSoup(r.content)
item_name=soup.find_all("span",{"ng-if":"!product.product.isOnlyCarCategory"})
print item_name