pornhub-api
pornhub-api copied to clipboard
@@ -0,0 +1,11 @@ +# -*- coding: utf-8 -*- + +from scrapy import Item, Field +class PornVideoItem(Item): + video_title = Field() + image_url = Field() + video_duration = Field() + quality_480p = Field() + video_views = Field() + video_rating = Field() + link_url = Field() \ No newline at end of file
https://github.com/fjibj/WebHubBot/blob/master/WebHub/WebHub/items.py
What is this exactly?