TODOs
This commit is contained in:
parent
993ec57cf1
commit
f6a9702b3a
@ -35,4 +35,7 @@ class FinaSpider(CrawlSpider):
|
||||
item['title'] = response.xpath('//*[@id="block-fnfilm-fnfilm"]/div/div[1]/div/div/span/text()').get()
|
||||
item['mp4'] = getMp4(response.xpath('//*[@id="block-fnfilm-fnfilm"]/div/div[2]/div/script/text()').get())
|
||||
item['url'] = response.url
|
||||
#TODO
|
||||
#description:
|
||||
|
||||
return item
|
||||
|
@ -3,4 +3,5 @@ from scrapy.item import Item, Field
|
||||
class MovieItem(Item):
|
||||
url = Field()
|
||||
title = Field()
|
||||
mp4 = Field()
|
||||
mp4 = Field()
|
||||
#description = Field()
|
||||
|
Loading…
Reference in New Issue
Block a user