1# -*- coding: utf-8 -*- 2 3# Define here the models for your scraped items 4# 5# See documentation in: 6# https://doc.scrapy.org/en/latest/topics/items.html 7 8from scrapy import Field, Item 9 10 11class OpentableItem(Item): 12 name = Field() 13 price = Field() 14 bookings = Field() 15 cuisine = Field() 16 location = Field() 17 reviews = Field() 18 rating = Field() 19 20