2018-05-10 17:31:59 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
|
|
# Define here the models for your scraped items
|
|
|
|
|
#
|
|
|
|
|
# See documentation in:
|
|
|
|
|
# https://doc.scrapy.org/en/latest/topics/items.html
|
|
|
|
|
|
|
|
|
|
import scrapy
|
|
|
|
|
|
|
|
|
|
|
2018-05-11 22:46:01 +00:00
|
|
|
class video(scrapy.Item):
|
|
|
|
|
titre = scrapy.Field()
|
|
|
|
|
sousTitre = scrapy.Field()
|
|
|
|
|
description = scrapy.Field()
|
|
|
|
|
urlVideo = scrapy.Field()
|
|
|
|
|
urlCF = scrapy.Field()
|
|
|
|
|
dateUpload = scrapy.Field()
|
|
|
|
|
tags = scrapy.Field()
|
2018-05-10 17:31:59 +00:00
|
|
|
pass
|