codecamp

scrapy 2.3 项目对象

Item 提供了一个 dict -像API加上其他功能,使其成为功能最齐全的项目类型:

classscrapy.item.Item([arg])

Item​ 对象复制标准 ​dict​ API,包括其 __init__ 方法。

Item​ 允许定义字段名,以便:

  • KeyError​ 在使用未定义的字段名时引发(即防止打字错误被忽略)

  • Item exporters 默认情况下可以导出所有字段,即使第一个刮取的对象没有所有字段的值

Item​ 还允许定义字段元数据,可用于 customize serialization .

trackref 轨道 ​Item​ 对象来帮助查找内存泄漏(请参见 使用调试内存泄漏 trackref )

Item​ 对象还提供以下附加API成员:

copy()
deepcopy()

返回A ​deepcopy()​ 这个项目的。

fields

包含 所有已声明的字段 对于这个项目,不仅仅是那些填充的。键是字段名,值是 ​Field​ 中使用的对象 Item declaration .

例子::

from scrapy.item import Item, Field

class CustomItem(Item):
    one_field = Field()
    another_field = Field()
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; }