codecamp

scrapy 2.3 使用图像管道

使用 ​ImagesPipeline​ 很像使用 ​FilesPipeline​ ,但使用的默认字段名不同:您使用 ​image_urls​ 对于项目的图像URL,它将填充 ​images​ 有关下载图像的信息字段。

使用 ImagesPipeline 对于图像文件,您可以配置一些额外的功能,如生成缩略图和根据图像大小过滤图像。

图像管道使用 Pillow 对于缩略图和将图像规范化为jpeg/rgb格式,因此需要安装此库才能使用它。 Python Imaging Library (PIL)在大多数情况下也应该有效,但它在某些设置中会引起问题,因此我们建议使用  Pillow 而不是皮尔。

scrapy 2.3 使用文件管道
scrapy 2.3 启用媒体管道
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

scrapy 2.3 链接提取器

scrapy 2.3 统计数据集合

scrapy 2.3 发送电子邮件

scrapy 2.3 蜘蛛合约

scrapy 2.3 如何部署蜘蛛

scrapy 2.3 AutoThrottle扩展

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }