您现在的位置是:课程教程文章

python scrapy如何建模

2023-12-14 20:14课程教程文章 人已围观

说明

1、定义从items.py文件中提取的字段。

2、scrapy.Item可以理解为更高级的字典,可以限制和验证键名。但是记住它不是字典。如果需要操作字典,可以使用dict()强制转换scrapy.Item。

实例

importscrapy

classMyspiderItem(scrapy.Item):
#definethefieldsforyouritemherelike:
name=scrapy.Field()#讲师的名字
title=scrapy.Field()#讲师的职称
desc=scrapy.Field()#讲师的介绍

#if__name__=='__main__':
#item=MyspiderItem()
#item['name']='lqr'#ok
#item['nama']='lqr'#KeyError:'MyspiderItemdoesnotsupportfield:nama'

以上就是python scrapy建模的方法,希望对大家有所帮助。更多Python学习指路:python基础教程

本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

课程教程:python scrapy如何建模

上一篇:python scrapy处理翻页的方法

下一篇:没有了

站点信息

  • 文章统计篇文章