如何使用scrapy库废弃动态数据

时间:2017-09-06 04:29:41

标签: python-3.x scrapy-spider

在下面的链接中,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(),
            }

0 个答案:

没有答案