rightlag / trulia-sdk-python

:house_with_garden:

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status

A Python SDK to interface with the Trulia HTTP/2 API

Quickstart

from trulia import build


def main():
    service = build('TruliaStats', '<YOUR_TRULIA_API_KEY>')
    res = service.get_city_stats(city='New York', state='NY')
    print res.location
    for traffic_stat in res.traffic_stats:
        print traffic_stat.percent_state_traffic

if __name__ == '__main__':
    main()

Libraries

TruliaStats

Method Description Documentation
get_city_stats(**kwargs) Retrieves all statistics for a city within the given date range. View
get_county_stats(**kwargs) Retrieves all statistics for a county within the given date range. View
get_neighborhood_stats(**kwargs) Retrieves all statistics for a county within the given date range. View
get_state_stats(**kwargs) Retrieves all statistics for a state within the given date range. View
get_zip_code_stats(**kwargs) Retrieves all statistics for a ZIP code within the given date range. View

LocationInfo

Method Description Documentation
get_cities_in_state(**kwargs) Retrieves all cities in a state, as well as the longitude and latitude of the center point of each city. View
get_counties_in_state(**kwargs) Retrieves all counties in a state along with the longitude and latitude of the center point of each county. View
get_neighborhoods_in_city(**kwargs) Retrieves all Neighborhoods in a city. View
get_states(**kwargs) Retrieves all 50 states, along with the longitude and latitude of the center point of each state. View
get_zip_codes_in_state(**kwargs) Retrieves all ZIP codes in a state, as well as the longitude and latitude of the center point of each ZIP code. View

About

:house_with_garden:


Languages

Language:Python 100.0%