首先,我试图从“ http://www.prudential.com.hk/PruServlet?module=fund& purpose=searchHistFund&fundCd=MMFU_U ”中获取资金代码,例如 MGB_U、JAS_U
然后,从以下示例中提取每个基金的价格:
" http://www.prudential.com.hk/PruServlet?module=fund& purpose=searchHistFund&fundCd= "+"MGB_U"
" http://www.prudential.com.hk/PruServlet?module=fund& purpose=searchHistFund&fundCd= "+"JAS_U"
我的代码有:
raise NotImplementedError
但我仍然不知道如何解决它。
from scrapy.spider import BaseSpider
from scrapy.selector import HtmlXPathSelector
from fundPrice.items import FundPriceItem
class PruSpider(BaseSpider):
name = "prufunds"
allowed_domains = ["prudential.com.hk"]
start_urls = ["http://www.prudential.com.hk/PruServlet?module=fund&purpose=searchHistFund&fundCd=MMFU_U"]
def parse(self, response):
hxs = HtmlXPathSelector(response)
funds_U = hxs.select('//table//table//table//table//select[@class="fundDropdown"]//option//@value').extract()
funds_U = [x for x in funds_U if x != (u"#" and u"MMFU_U")]
items = []
for fund_U in funds_U:
url = "http://www.prudential.com.hk/PruServlet?module=fund&purpose=searchHistFund&fundCd=" + fund_U
item = FundPriceItem()
item['fund'] = fund_U
item['data'] = hxs.select('//table//table//table//table//td[@class="fundPriceCell1" or @class="fundPriceCell2"]//text()').extract()
items.append(item)
return items