freedomfromfiat / redfin

A Python wrapper around redfin's unofficial API.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Python-Redfin

A wrapper around redfin's unofficial API. Anything on the redfin site can be accessed through this module without screen scraping.

Installation

$ python3 -m pip install redfin

Usage

from redfin import Redfin

client = Redfin()

address = '4544 Radnor St, Detroit Michigan'

response = client.search(address)
url = response['payload']['exactMatch']['url']
initial_info = client.initial_info(url)

property_id = initial_info['payload']['propertyId']
listing_id = initial_info['payload']['listingId']

mls_data = client.below_the_fold(property_id, listing_id)

Documentation

See the file for all functions, pop open requests on redfin to see which one you want.

About

A Python wrapper around redfin's unofficial API.

License:MIT License


Languages

Language:Python 100.0%