20 lines
410 B
Python
20 lines
410 B
Python
# -*- 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
|
|
|
|
|
|
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()
|
|
pass
|