這裏是我用於爬取網頁的代碼。我想抓取的網站圖片延遲加載啓用,所以scrapy只能抓取100張圖片中的10張,其餘都是placeholder.jpg。在Scrapy中處理延遲加載圖像的最佳方式是什麼?如何使用python Scrapy惰性加載圖像
謝謝!
class MasseffectSpider(scrapy.Spider):
name = "massEffect"
allowed_domains = ["amazon.com"]
start_urls = [
'file://127.0.0.1/home/ec2-user/scrapy/amazon/amazon.html',
]
def parse(self, response):
for item in items:
listing = Item()
listing['image'] = item.css('div.product img::attr(src)').extract()
listing['url'] = item.css('div.item-name a::attr(href)').extract()
listings.append(listing)
看來像CasperJS這樣的其他工具有加載圖像的視口。
casper.start('http://m.facebook.com', function() {
// The pretty HUGE viewport allows for roughly 1200 images.
// If you need more you can either resize the viewport or scroll down the viewport to load more DOM (probably the best approach).
this.viewport(2048,4096);
this.fill('form#login_form', {
'email': login_username,
'pass': login_password
}, true);
});
你能分享你正在爬行的網站嗎?在一個pastebin將工作。 – eLRuLL