应用过滤器后刮擦表数据

时间:2018-04-12 08:50:06

标签: python web-scraping beautifulsoup

我正试图从这个网站抓取数据:http://nepalstock.com/indices。在更改' 选择指数或子指数'的值后,我无法抓取表格数据。 https://i.stack.imgur.com/J0WMn.png

由于网址没有变化,我不知道如何处理。

到目前为止,这是我的代码:

import requests
import pandas
from bs4 import BeautifulSoup
html=requests.get("http://nepalstock.com/indices")
soup=BeautifulSoup(html.content,"html.parser")
lst=[]
for row in soup.find_all("tr"):
    l=[]
    for td in row.find_all("td"):
        l.append(td.get_text())
    lst.append(l)
df=pandas.DataFrame(lst[1:])
df.head()

0 个答案:

没有答案