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.

14 lines
304 B
Python

# Define here the models for your scraped items
#
# See documentation in:
# http://doc.scrapy.org/topics/items.html
from scrapy.item import Item, Field
class PyGSItem(Item):
# define the fields for your item here like:
# name = Field()
title = Field()
link = Field()
desc = Field()