123456789101112131415161718192021222324 |
- # -*- coding: utf-8 -*-
- # Define here the models for your scraped items
- #
- # See documentation in:
- # http://doc.scrapy.org/en/latest/topics/items.html
- import scrapy
- from astropy.io.votable.tree import Field
- class ShlibItem(scrapy.Item):
- # define the fields for your item here like:
- # name = scrapy.Field()
- #书名
- book_id=Field()
- bookname=Field()
- url=Field()
- desc=Field()
- address=Field()
- booknum=Field()
- status=Field()
- type=Field()
- barcode=Field()
|