12 lines
267 B
Python
12 lines
267 B
Python
# Define here the models for your scraped items
|
|
#
|
|
# See documentation in:
|
|
# http://doc.scrapy.org/en/latest/topics/items.html
|
|
|
|
from scrapy.item import Item, Field
|
|
|
|
class FourmiItem(Item):
|
|
# define the fields for your item here like:
|
|
# name = Field()
|
|
pass
|