17 lines
323 B
Python
17 lines
323 B
Python
|
# -*- 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
|
||
|
|
||
|
|
||
|
class FileItem(scrapy.Item):
|
||
|
url = scrapy.Field()
|
||
|
url2 = scrapy.Field()
|
||
|
post_url = scrapy.Field()
|
||
|
title = scrapy.Field()
|
||
|
path = scrapy.Field()
|
||
|
|