Sunday 10 January 2016

Web Scraping https://www.dmoz.org/ with SCRAPY in Python -2 [ items.py ]

In [ ]:
from scrapy.item import Item, Field
In [ ]:
class Website(Item):

    name = Field()
    description = Field()
    url = Field()

No comments:

Post a Comment