Suppose I want to download data here: http://www.dce.com.cn/publicweb/quotesdata/memberDealPosiQuotes.html
When click the button shown below, I got a .csv
file:
I want to do this automatically using python where I can specify the date etc.
I find here that one can use pandas pd.read_csv
to read data from webpage, but first one need to get the right url. However in my case I don't know what the url is.
Besides, I also want to specify the date and the contract etc. myself.
Before asking, I actually tried to the dev tool, I still can't see the url, and I don't know how to make it programatic.