fix
This commit is contained in:
parent
fe8699cc12
commit
5884f1e92c
@ -30,3 +30,23 @@ class ImageItem(scrapy.Item):
|
||||
image_name = scrapy.Field()
|
||||
image_url = scrapy.Field()
|
||||
image_path = scrapy.Field()
|
||||
|
||||
class ComicInfoItem(scrapy.Item):
|
||||
Title= scrapy.Field()#"章节名",True]
|
||||
Series = scrapy.Field()# ","漫画名",True]
|
||||
Number = scrapy.Field()# ","编号",True]
|
||||
SeriesGroup = scrapy.Field()# ","别名",False]
|
||||
Summary = scrapy.Field()# ","概述",True]
|
||||
Year = scrapy.Field()# ","年",False]
|
||||
Month = scrapy.Field()# ","月",False]
|
||||
Day = scrapy.Field()# ","日",False]
|
||||
Writer = scrapy.Field()# "作者",True]
|
||||
Publisher = scrapy.Field()# ","出版社",False]
|
||||
Genre = scrapy.Field()# ","流派",True]
|
||||
Tags = scrapy.Field()# ","标签",True]
|
||||
Web = scrapy.Field()# ","主页",False]
|
||||
PageCount = scrapy.Field()# ","总页数",True]
|
||||
LanguageISO = scrapy.Field()#","语言",True]
|
||||
AgeRating = scrapy.Field()#","年龄分级",False]
|
||||
Pages = scrapy.Field()#","页码",True]
|
||||
# ComicInfo.xml and ComicChapter.json end
|
||||
Loading…
Reference in New Issue
Block a user