-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathitems.py
More file actions
29 lines (25 loc) · 702 Bytes
/
Copy pathitems.py
File metadata and controls
29 lines (25 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# -*- 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 RedfinTestItem(scrapy.Item):
# define the fields for your item here like:
search_date = scrapy.Field()
street = scrapy.Field()
citystatezip = scrapy.Field()
price = scrapy.Field()
HOA = scrapy.Field()
year_built = scrapy.Field()
SQFT = scrapy.Field()
Beds = scrapy.Field()
Baths = scrapy.Field()
zipcode = scrapy.Field()
rent = scrapy.Field()
price_estimate = scrapy.Field()
mortgage_pmt = scrapy.Field()
insurance = scrapy.Field()
tax = scrapy.Field()
cashflow = scrapy.Field()
total_pmt = scrapy.Field()