You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
578 B
Python
23 lines
578 B
Python
# Define here the models for your scraped items
|
|
#
|
|
# See documentation in:
|
|
# https://docs.scrapy.org/en/latest/topics/items.html
|
|
|
|
import scrapy
|
|
|
|
|
|
class HighlyCitedScholarsItem(scrapy.Item):
|
|
# define the fields for your item here like:
|
|
person_id = scrapy.Field()
|
|
sno = scrapy.Field()
|
|
scholar_name = scrapy.Field()
|
|
scholar_link = scrapy.Field()
|
|
organization = scrapy.Field()
|
|
subject = scrapy.Field()
|
|
|
|
|
|
class CNKIHighlyCitedScholarItem(HighlyCitedScholarsItem):
|
|
certified_tag = scrapy.Field()
|
|
hc_type = scrapy.Field()
|
|
source = scrapy.Field()
|