在下面的链接中,remitmoney外国汇率正在动态。我无法废弃数据。我需要知道如何使用动态数据。 进口scrapy
class MyRemitSpyder(scrapy.Spider):
name = "toscrap-remit"
start_urls = ["https://www.remitmoney.com/send-money-UK-to-India"]
def parse(self,response):
for reviews in response.xpath("//div[@class='exchangeratebox']"):
yield{
'text':reviews.xpath(".//div[@class='change-lable exchange-send-wrap']//label/text()").extract_first(),
'currency':reviews.xpath(".//div[@class='change-lable money-fixed']//label/text()").extract_first(),
}