{ "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": true }, "outputs": [], "source": [ "import requests\n", "from bs4 import BeautifulSoup\n", "from xml.etree import ElementTree\n", "import pandas as pd\n", "import time\n", "import numpy as np\n", "import json\n", "import geocoder" ] }, { "cell_type": "markdown", "metadata": { "collapsed": true }, "source": [ "### get data from the Zillow" ] }, { "cell_type": "code", "execution_count": 20, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "1\n" ] } ], "source": [ "def GetDataFromWeb(num):\n", " count = 0\n", " listingsFromWeb = []\n", " for i in range(1,num): # 21\n", " page_url = \"http://www.zillow.com/homes/for_sale/Boston-MA/44269_rid/any_days/42.4379,-70.629044,42.191135,-71.310883_rect/10_zm/%d_p/\" %i\n", " page = requests.get(page_url).text\n", " page_soup = BeautifulSoup(page, 'html.parser')\n", " item = page_soup.find(\"div\", {\"id\": 'search-results' }).find_all(\"div\", {\"class\": \"zsg-photo-card-caption\"})\n", " if not len(item) == 26:\n", " print i, len(item)\n", " else:\n", " listingsFromWeb += (item)\n", " time.sleep(2)\n", " count += 1\n", " print i\n", " return listingsFromWeb\n", "\n", "listingsFromWeb = GetDataFromWeb(28)" ] }, { "cell_type": "code", "execution_count": 21, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "26\n", "4\n", "

House For Sale

$899,0005 bds · 2 ba · 2,423 sqft

8 days on Zillow·54 Grampian Way, Dorchester, MA

Gibson Sotheby's International Realty

\n", "

Condo For Sale

$529,0003 bds · 2 ba · 1,260 sqft

$20,000 (Nov 1)·7-9 Herbertson # 2, Jamaica Plain, MA

\n", "

Condo For Sale

$849,0004 bds · 3 ba · 2,400 sqft

Open: Fri. 6-7pm·321 Dorchester St # 1, Boston, MA

\n" ] } ], "source": [ "print len(listingsFromWeb)\n", "print len(listingsFromWeb[0])\n", "\n", "print listingsFromWeb[0]\n", "print listingsFromWeb[1]\n", "print listingsFromWeb[2]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### dictionary from the data for future data manipulation" ] }, { "cell_type": "code", "execution_count": 22, "metadata": { "collapsed": false }, "outputs": [], "source": [ "data = []\n", "# print BeautifulSoup(listings2)\n", "# soup = BeautifulSoup(listings2[0])\n", "for i in range(len(listingsFromWeb)):#http://localhost:8888/notebooks/hosingPrice/scraping_property_price.ipynb#\n", " theDict = {}\n", "# theDict['price'] = listingsFromWeb[i].find(\"zsg-photo-card-price\")\n", " theDict['status'] = listingsFromWeb[i].find(\"span\", { \"class\" : \"zsg-photo-card-status\" }).text\n", " theDict['address'] = listingsFromWeb[i].find(\"span\", { \"class\" : \"zsg-photo-card-address\" }).text\n", " # print listings2[0].find(\"span\", { \"class\" : \"zsg-photo-card-broker-name\" }).text\n", " try:\n", " theDict['prices'] = listingsFromWeb[i].find(\"span\", { \"class\" : \"zsg-photo-card-price\" }).text.split(\"$\")[1]\n", " except:\n", " theDict['prices'] = -1;\n", " try:\n", " theJson = json.loads(listingsFromWeb[i].find(\"script\", { \"type\" : \"application/ld+json\" }).text)\n", " theDict['lat'] = theJson[\"location\"][\"geo\"][\"latitude\"]\n", " theDict['long'] = theJson[\"location\"][\"geo\"][\"longitude\"]\n", " except:\n", " theDict['lat'] = -1\n", " theDict['long'] = -1\n", " data.append(theDict)\n", "\n" ] }, { "cell_type": "code", "execution_count": 23, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "26\n", "{'status': u'House For Sale', 'prices': u'899,000', 'lat': -1, 'long': -1, 'address': u'54 Grampian Way, Dorchester, MA'}\n", "{'status': u'Condo For Sale', 'prices': u'529,000', 'lat': -1, 'long': -1, 'address': u'7-9 Herbertson # 2, Jamaica Plain, MA'}\n", "{'status': u'Condo For Sale', 'prices': u'849,000', 'lat': 42.33145, 'long': -71.05343, 'address': u'321 Dorchester St # 1, Boston, MA'}\n", "{'status': u'House For Sale', 'prices': u'739,900', 'lat': -1, 'long': -1, 'address': u'31 Maple St, Boston, MA'}\n", "{'status': u'House For Sale', 'prices': u'849,000', 'lat': 42.277522, 'long': -71.171084, 'address': u'129 Gardner St, Boston, MA'}\n", "{'status': u'Condo For Sale', 'prices': u'345,000', 'lat': -1, 'long': -1, 'address': u'53 Torrey St # 3, Boston, MA'}\n", "{'status': u'Condo For Sale', 'prices': u'675,000', 'lat': -1, 'long': -1, 'address': u'255 Northampton St UNIT 501, Boston, MA'}\n", "{'status': u'House For Sale', 'prices': u'284,999', 'lat': -1, 'long': -1, 'address': u'10 Arbutus St, Dorchester Center, MA'}\n", "{'status': u'Condo For Sale', 'prices': u'339,000', 'lat': 42.287284, 'long': -71.073818, 'address': u'53 Torrey St # 2, Boston, MA'}\n", "{'status': u'House For Sale', 'prices': u'399,000', 'lat': -1, 'long': -1, 'address': u'181 Glenway St, Dorchester, MA'}\n", "{'status': u'Condo For Sale', 'prices': u'2,495,000', 'lat': -1, 'long': -1, 'address': u'242 Beacon St APT 6, Boston, MA'}\n", "{'status': u'Condo For Sale', 'prices': u'549,500', 'lat': -1, 'long': -1, 'address': u'12 Mosgrove Ave, Boston, MA'}\n", "{'status': u'House For Sale', 'prices': u'599,000', 'lat': -1, 'long': -1, 'address': u'100 Maple St, Boston, MA'}\n", "{'status': u'Condo For Sale', 'prices': u'399,900', 'lat': 42.256671, 'long': -71.158866, 'address': u'23 Goethe St # 2, Boston, MA'}\n", "{'status': u'Condo For Sale', 'prices': u'479,000', 'lat': -1, 'long': -1, 'address': u'29 Houghton St # 1, Boston, MA'}\n", "{'status': u'Condo For Sale', 'prices': u'669,000', 'lat': 42.30924, 'long': -71.1166, 'address': u'801 Centre St # 3C, Boston, MA'}\n", "{'status': u'Condo For Sale', 'prices': u'1,300,000', 'lat': -1, 'long': -1, 'address': u'1 Franklin St # 1601, Boston, MA'}\n", "{'status': u'Condo For Sale', 'prices': u'875,000', 'lat': -1, 'long': -1, 'address': u'28 Woodward St # 1, Boston, MA'}\n", "{'status': u'Condo For Sale', 'prices': u'479,000', 'lat': -1, 'long': -1, 'address': u'31 Houghton St # 2, Boston, MA'}\n", "{'status': u'Condo For Sale', 'prices': u'389,000', 'lat': -1, 'long': -1, 'address': u'16 Chelmsford St UNIT 2, Dorchester, MA'}\n", "{'status': u'Condo For Sale', 'prices': u'339,900', 'lat': -1, 'long': -1, 'address': u'43 Parkvale Ave APT 5, Boston, MA'}\n", "{'status': u'Condo For Sale', 'prices': u'399,500', 'lat': -1, 'long': -1, 'address': u'1391 Hyde Park Ave STE G, Boston, MA'}\n", "{'status': u'For Sale by Owner', 'prices': u'549,000', 'lat': -1, 'long': -1, 'address': u'29 Brainerd Rd, Boston, MA'}\n", "{'status': u'Condo For Sale', 'prices': u'769,000', 'lat': 42.299416, 'long': -71.044724, 'address': u'235 Victory Rd UNIT 235, Quincy, MA'}\n", "{'status': u'Condo For Sale', 'prices': u'799,000', 'lat': 42.351279, 'long': -71.081336, 'address': u'209 Commonwealth Ave # PD, Boston, MA'}\n", "{'status': u'Apartment For Sale', 'prices': u'479,900', 'lat': -1, 'long': -1, 'address': u'198-260 American Legion, Boston, MA'}\n" ] } ], "source": [ "print len(data)\n", "for i in data:\n", " print i" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### update zip and geo position\n", "this is very important section becaues the first data from the web has no geo position meaning that we cannot use the data with other features. Thus, we use geocoder lib in python and we are able to fill out the lat and long data for each row." ] }, { "cell_type": "code", "execution_count": 24, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "------\n", "3.84615384615 % ...\n", "------\n", "7.69230769231 % ...\n", "------\n", "11.5384615385 % ...\n", "------\n", "15.3846153846 % ...\n", "------\n", "19.2307692308 % ...\n", "------\n", "23.0769230769 % ...\n", "------\n", "26.9230769231 % ...\n", "------\n", "30.7692307692 % ...\n", "------\n", "34.6153846154 % ...\n", "------\n", "38.4615384615 % ...\n", "------\n", "42.3076923077 % ...\n", "------\n", "46.1538461538 % ...\n", "------\n", "50.0 % ...\n", "------\n", "53.8461538462 % ...\n", "------\n", "57.6923076923 % ...\n", "------\n", "61.5384615385 % ...\n", "------\n", "65.3846153846 % ...\n", "------\n", "69.2307692308 % ...\n", "------\n", "73.0769230769 % ...\n", "------\n", "76.9230769231 % ...\n", "------\n", "80.7692307692 % ...\n", "------\n", "84.6153846154 % ...\n", "------\n", "88.4615384615 % ...\n", "------\n", "92.3076923077 % ...\n", "------\n", "96.1538461538 % ...\n", "------\n", "100.0 % ...\n", "done!\n" ] } ], "source": [ "import geocoder\n", "\n", "def UpdateZipGeoPos(d):\n", " total = len(d)\n", " count = 1.0;\n", " for i in range(len(d)):\n", " try:\n", " address = d[i]['address'] \n", " g = geocoder.google(address)\n", " d[i]['zip'] = g.postal\n", " if( d[i]['long'] == -1 and d[i]['lat'] == -1):\n", " d[i]['long'] = g.latlng[1]\n", " d[i]['lat'] = g.latlng[0]\n", " except:\n", " pass\n", " print \"------\"\n", " print (count / total) * 100.0 , \" % ...\"\n", " count+=1.0;\n", " print \"done!\"\n", " return d\n", "d = UpdateZipGeoPos(data)\n", "\n", "\n" ] }, { "cell_type": "code", "execution_count": 25, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[{'status': u'House For Sale', 'zip': u'02125', 'long': -71.049533, 'lat': 42.312072, 'address': u'54 Grampian Way, Dorchester, MA', 'prices': u'899,000'}, {'status': u'Condo For Sale', 'zip': u'02130', 'long': -71.1162116, 'lat': 42.2920089, 'address': u'7-9 Herbertson # 2, Jamaica Plain, MA', 'prices': u'529,000'}, {'status': u'Condo For Sale', 'zip': u'02127', 'long': -71.05343, 'lat': 42.33145, 'address': u'321 Dorchester St # 1, Boston, MA', 'prices': u'849,000'}, {'status': u'House For Sale', 'zip': u'02132', 'long': -71.1544114, 'lat': 42.287886, 'address': u'31 Maple St, Boston, MA', 'prices': u'739,900'}, {'status': u'House For Sale', 'zip': u'02132', 'long': -71.171084, 'lat': 42.277522, 'address': u'129 Gardner St, Boston, MA', 'prices': u'849,000'}, {'status': u'Condo For Sale', 'zip': u'02124', 'long': -71.073962, 'lat': 42.287372, 'address': u'53 Torrey St # 3, Boston, MA', 'prices': u'345,000'}, {'status': u'Condo For Sale', 'zip': u'02118', 'long': -71.0814012, 'lat': 42.3394238, 'address': u'255 Northampton St UNIT 501, Boston, MA', 'prices': u'675,000'}, {'status': u'House For Sale', 'zip': u'02124', 'long': -71.089551, 'lat': 42.2879239, 'address': u'10 Arbutus St, Dorchester Center, MA', 'prices': u'284,999'}, {'status': u'Condo For Sale', 'zip': u'02124', 'long': -71.073818, 'lat': 42.287284, 'address': u'53 Torrey St # 2, Boston, MA', 'prices': u'339,000'}, {'status': u'House For Sale', 'zip': u'02121', 'long': -71.080952, 'lat': 42.296947, 'address': u'181 Glenway St, Dorchester, MA', 'prices': u'399,000'}, {'status': u'Condo For Sale', 'zip': u'02116', 'long': -71.0795012, 'lat': 42.3536559, 'address': u'242 Beacon St APT 6, Boston, MA', 'prices': u'2,495,000'}, {'status': u'Condo For Sale', 'zip': u'02131', 'long': -71.1230212, 'lat': 42.2919334, 'address': u'12 Mosgrove Ave, Boston, MA', 'prices': u'549,500'}, {'status': u'House For Sale', 'zip': u'02121', 'long': -71.08661099999999, 'lat': 42.3075847, 'address': u'100 Maple St, Boston, MA', 'prices': u'599,000'}, {'status': u'Condo For Sale', 'zip': u'02132', 'long': -71.158866, 'lat': 42.256671, 'address': u'23 Goethe St # 2, Boston, MA', 'prices': u'399,900'}, {'status': u'Condo For Sale', 'zip': u'02122', 'long': -71.0522963, 'lat': 42.295264, 'address': u'29 Houghton St # 1, Boston, MA', 'prices': u'479,000'}, {'status': u'Condo For Sale', 'zip': u'02130', 'long': -71.1166, 'lat': 42.30924, 'address': u'801 Centre St # 3C, Boston, MA', 'prices': u'669,000'}, {'status': u'Condo For Sale', 'zip': u'02108', 'long': -71.05945, 'lat': 42.35631, 'address': u'1 Franklin St # 1601, Boston, MA', 'prices': u'1,300,000'}, {'status': u'Condo For Sale', 'zip': u'02127', 'long': -71.0559853, 'lat': 42.3314431, 'address': u'28 Woodward St # 1, Boston, MA', 'prices': u'875,000'}, {'status': u'Condo For Sale', 'zip': u'02122', 'long': -71.0522682, 'lat': 42.2952453, 'address': u'31 Houghton St # 2, Boston, MA', 'prices': u'479,000'}, {'status': u'Condo For Sale', 'zip': u'02122', 'long': -71.0540671, 'lat': 42.284953, 'address': u'16 Chelmsford St UNIT 2, Dorchester, MA', 'prices': u'389,000'}, {'status': u'Condo For Sale', 'zip': u'02134', 'long': -71.1329925, 'lat': 42.3523208, 'address': u'43 Parkvale Ave APT 5, Boston, MA', 'prices': u'339,900'}, {'status': u'Condo For Sale', 'zip': u'02136', 'long': -71.12602799999999, 'lat': 42.2511409, 'address': u'1391 Hyde Park Ave STE G, Boston, MA', 'prices': u'399,500'}, {'status': u'For Sale by Owner', 'zip': u'02134', 'long': -71.131332, 'lat': 42.3486087, 'address': u'29 Brainerd Rd, Boston, MA', 'prices': u'549,000'}, {'status': u'Condo For Sale', 'zip': u'02122', 'long': -71.044724, 'lat': 42.299416, 'address': u'235 Victory Rd UNIT 235, Quincy, MA', 'prices': u'769,000'}, {'status': u'Condo For Sale', 'zip': None, 'long': -71.081336, 'lat': 42.351279, 'address': u'209 Commonwealth Ave # PD, Boston, MA', 'prices': u'799,000'}, {'status': u'Apartment For Sale', 'zip': u'02124', 'long': -71.0932254, 'lat': 42.2945011, 'address': u'198-260 American Legion, Boston, MA', 'prices': u'479,900'}]\n" ] } ], "source": [ "print d" ] }, { "cell_type": "code", "execution_count": 26, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "{'status': u'House For Sale', 'zip': u'02125', 'long': -71.049533, 'lat': 42.312072, 'address': u'54 Grampian Way, Dorchester, MA', 'prices': u'899,000'}\n", "02125\n", "-71.049533 42.312072\n" ] } ], "source": [ "print data[0]\n", "for i in d:\n", " print i['zip']\n", " print i['long'], i['lat']\n", " break\n" ] }, { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "Now, we are able to get deep feature provieded by Zillow with the zip and adress data. " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### data Parsing From Zillow with the zip and address data" ] }, { "cell_type": "code", "execution_count": 57, "metadata": { "collapsed": false }, "outputs": [], "source": [ "from pyzillow.pyzillow import ZillowWrapper, GetDeepSearchResults, GetUpdatedPropertyDetails \n", "\n", "def GetresultProperty_UpdatedPropertyDetails(YOUR_ZILLOW_ID, address, zipcode):\n", " YOUR_ZILLOW_API_KEY = 'X1-ZWz1fijun6che3_9ljvt'\n", " try:\n", " zillow_id = YOUR_ZILLOW_ID\n", " zillow_data = ZillowWrapper(YOUR_ZILLOW_API_KEY) \n", " updated_property_details_response = zillow_data.get_updated_property_details(zillow_id) \n", " result = GetUpdatedPropertyDetails(updated_property_details_response) \n", " resultProperty = {}\n", " resultProperty['zillow_id'] = result.zillow_id\n", " resultProperty['home_type'] = result.home_type\n", " resultProperty['home_detail_link'] = result.home_detail_link\n", " resultProperty['photo_gallery'] = result.photo_gallery\n", " resultProperty['latitude'] = result.latitude\n", " resultProperty['latitude'] = result.latitude\n", " resultProperty['year_built'] = result.year_built\n", " resultProperty['property_size'] = result.property_size\n", " resultProperty['home_size'] = result.home_size\n", " resultProperty['bathrooms'] = result.bathrooms\n", " resultProperty['bedrooms'] = result.bedrooms\n", " resultProperty['home_info'] = result.home_info\n", " resultProperty['year_updated'] = result.year_updated\n", " resultProperty['floor_material'] = result.floor_material\n", " resultProperty['num_floors'] = result.num_floors\n", " resultProperty['basement'] = result.basement\n", " resultProperty['roof'] = result.roof\n", " resultProperty['view'] = result.view\n", " resultProperty['parking_type'] = result.parking_type\n", " resultProperty['heating_sources'] = result.heating_sources\n", " resultProperty['heating_system'] = result.heating_system\n", " resultProperty['rooms'] = result.rooms\n", " resultProperty['home_description'] = result.home_description\n", " resultProperty['neighborhood'] = result.neighborhood\n", " resultProperty['school_district'] = result.school_district\n", " except:\n", " pass\n", " return resultProperty\n", "\n", "def ParsingFromZillow(d):\n", " YOUR_ZILLOW_API_KEY = 'X1-ZWz1fijun6che3_9ljvt'\n", " total = len(d)\n", " count = 0;\n", " for i in range(len(d)):\n", "\n", " try:\n", " address = d[i]['address']\n", " zipcode = d[i]['zip']\n", "\n", " zillow_data = ZillowWrapper(YOUR_ZILLOW_API_KEY)\n", " deep_search_response = zillow_data.get_deep_search_results(address, zipcode)\n", " \n", " #resultProperty = GetUpdatedPropertyDetails(deep_search_response)\n", " result = GetDeepSearchResults(deep_search_response)\n", "\n", " zillow = {}\n", " zillow['zillow_id'] = result.zillow_id\n", " zillow['home_type'] = result.home_type\n", " zillow['home_detail_link'] = result.home_detail_link\n", " zillow['graph_data_link'] = result.graph_data_link\n", " zillow['map_this_home_link'] = result.map_this_home_link\n", " zillow['latitude'] = result.latitude\n", " zillow['longitude'] = result.longitude\n", "\n", " zillow['tax_year'] = result.tax_year\n", " zillow['tax_value'] = result.tax_value\n", " zillow['year_built'] = result.year_built\n", " zillow['property_size'] = result.property_size\n", " zillow['home_size'] = result.home_size\n", " zillow['bathrooms'] = result.bathrooms\n", " zillow['bedrooms'] = result.bedrooms\n", " zillow['last_sold_date'] = result.last_sold_date\n", "\n", " zillow['last_sold_price'] = result.last_sold_price\n", " zillow['zestimate_amount'] = result.zestimate_amount\n", " zillow['zestimate_last_updated'] = result.zestimate_last_updated\n", " zillow['zestimate_value_change'] = result.zestimate_value_change\n", " zillow['zestimate_valuation_range_high'] = result.zestimate_valuation_range_high\n", " zillow['zestimate_valuationRange_low'] = result.zestimate_valuationRange_low\n", " zillow['zestimate_percentile'] = result.zestimate_percentile\n", " d[i]['DeepSearch'] = zillow\n", " d[i][\"property\"] = GetresultProperty_UpdatedPropertyDetails(zillow['zillow_id'] , address, zipcode)\n", " print i , + \"works\" \n", " except:\n", " print i , \"pass....\" \n", " print (count / total) * 100.0 , \" % ...\"\n", " count+=1.0;\n", " print \"done\"\n", " return d\n" ] }, { "cell_type": "code", "execution_count": 29, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "[{'address': u'54 Grampian Way, Dorchester, MA',\n", " 'lat': 42.312072,\n", " 'long': -71.049533,\n", " 'prices': u'899,000',\n", " 'status': u'House For Sale',\n", " 'zillow': {'bathrooms': '2.0',\n", " 'bedrooms': '5',\n", " 'graph_data_link': 'http://www.zillow.com/homedetails/54-Grampian-Way-Dorchester-MA-02125/59113320_zpid/#charts-and-data',\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/54-Grampian-Way-Dorchester-MA-02125/59113320_zpid/',\n", " 'home_size': '2423',\n", " 'home_type': 'SingleFamily',\n", " 'last_sold_date': '12/11/1998',\n", " 'last_sold_price': '197000',\n", " 'latitude': '42.312059',\n", " 'longitude': '-71.049545',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/59113320_zpid/',\n", " 'property_size': '6534',\n", " 'tax_value': '499300.0',\n", " 'tax_year': '2015',\n", " 'year_built': '1885',\n", " 'zestimate_amount': '769371',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '700128',\n", " 'zestimate_valuation_range_high': '854002',\n", " 'zestimate_value_change': '-23220',\n", " 'zillow_id': '59113320'},\n", " 'zip': u'02125'},\n", " {'address': u'7-9 Herbertson # 2, Jamaica Plain, MA',\n", " 'lat': 42.2920089,\n", " 'long': -71.1162116,\n", " 'prices': u'529,000',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '2.0',\n", " 'bedrooms': '3',\n", " 'graph_data_link': None,\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/7-9-Herbertson-2-Jamaica-Plain-MA-02130/2096675064_zpid/',\n", " 'home_size': '1260',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': None,\n", " 'last_sold_price': None,\n", " 'latitude': '42.292142',\n", " 'longitude': '-71.116361',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/2096675064_zpid/',\n", " 'property_size': '9999',\n", " 'tax_value': None,\n", " 'tax_year': None,\n", " 'year_built': '1925',\n", " 'zestimate_amount': '592944',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '474355',\n", " 'zestimate_valuation_range_high': '794545',\n", " 'zestimate_value_change': None,\n", " 'zillow_id': '2096675064'},\n", " 'zip': u'02130'},\n", " {'address': u'321 Dorchester St # 1, Boston, MA',\n", " 'lat': 42.33145,\n", " 'long': -71.05343,\n", " 'prices': u'849,000',\n", " 'property': {'basement': None,\n", " 'bathrooms': '2.0',\n", " 'bedrooms': '4',\n", " 'floor_material': None,\n", " 'heating_sources': None,\n", " 'heating_system': None,\n", " 'home_description': '321 Dorchester Street is a boutique luxury development in the heart of South Boston. These floor-through condominiums feature high end kitchens with Carrera marble tops, Samsung appliances and ample storage. Each residence offers 4 bedrooms, 2 bathrooms and access to the common roof deck with a panoramic Boston skyline views.',\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497652_zpid/',\n", " 'home_info': 'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497652_zpid/',\n", " 'home_size': '1400',\n", " 'home_type': 'Condominium',\n", " 'latitude': '42.33145',\n", " 'neighborhood': None,\n", " 'num_floors': None,\n", " 'parking_type': None,\n", " 'photo_gallery': 'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497652_zpid/#image=lightbox%3Dtrue',\n", " 'property_size': None,\n", " 'roof': None,\n", " 'rooms': None,\n", " 'school_district': None,\n", " 'view': None,\n", " 'year_built': None,\n", " 'year_updated': None,\n", " 'zillow_id': '2096497652'},\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '2.0',\n", " 'bedrooms': '4',\n", " 'graph_data_link': None,\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497652_zpid/',\n", " 'home_size': '1400',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': None,\n", " 'last_sold_price': None,\n", " 'latitude': '42.33145',\n", " 'longitude': '-71.05343',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/2096497652_zpid/',\n", " 'property_size': None,\n", " 'tax_value': None,\n", " 'tax_year': None,\n", " 'year_built': None,\n", " 'zestimate_amount': '766052',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '727749',\n", " 'zestimate_valuation_range_high': '804355',\n", " 'zestimate_value_change': None,\n", " 'zillow_id': '2096497652'},\n", " 'zip': u'02127'},\n", " {'address': u'31 Maple St, Boston, MA',\n", " 'lat': 42.287886,\n", " 'long': -71.1544114,\n", " 'prices': u'739,900',\n", " 'status': u'House For Sale',\n", " 'zillow': {'bathrooms': '2.0',\n", " 'bedrooms': '3',\n", " 'graph_data_link': 'http://www.zillow.com/homedetails/31-Maple-St-Boston-MA-02132/59155302_zpid/#charts-and-data',\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/31-Maple-St-Boston-MA-02132/59155302_zpid/',\n", " 'home_size': '1847',\n", " 'home_type': 'SingleFamily',\n", " 'last_sold_date': None,\n", " 'last_sold_price': None,\n", " 'latitude': '42.287908',\n", " 'longitude': '-71.154418',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/59155302_zpid/',\n", " 'property_size': '4356',\n", " 'tax_value': '448800.0',\n", " 'tax_year': '2014',\n", " 'year_built': '1900',\n", " 'zestimate_amount': '715741',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '672797',\n", " 'zestimate_valuation_range_high': '765843',\n", " 'zestimate_value_change': '2143',\n", " 'zillow_id': '59155302'},\n", " 'zip': u'02132'},\n", " {'address': u'129 Gardner St, Boston, MA',\n", " 'lat': 42.277522,\n", " 'long': -71.171084,\n", " 'prices': u'849,000',\n", " 'status': u'House For Sale',\n", " 'zillow': {'bathrooms': '3.0',\n", " 'bedrooms': '4',\n", " 'graph_data_link': None,\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/129-Gardner-St-Boston-MA-02132/2096677074_zpid/',\n", " 'home_size': '2800',\n", " 'home_type': 'SingleFamily',\n", " 'last_sold_date': None,\n", " 'last_sold_price': None,\n", " 'latitude': '42.277522',\n", " 'longitude': '-71.171084',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/2096677074_zpid/',\n", " 'property_size': '6969',\n", " 'tax_value': None,\n", " 'tax_year': None,\n", " 'year_built': '2016',\n", " 'zestimate_amount': '856856',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '728328',\n", " 'zestimate_valuation_range_high': '1036796',\n", " 'zestimate_value_change': None,\n", " 'zillow_id': '2096677074'},\n", " 'zip': u'02132'},\n", " {'address': u'53 Torrey St # 3, Boston, MA',\n", " 'lat': 42.287372,\n", " 'long': -71.073962,\n", " 'prices': u'345,000',\n", " 'property': {'basement': None,\n", " 'bathrooms': '1.0',\n", " 'bedrooms': '2',\n", " 'floor_material': None,\n", " 'heating_sources': None,\n", " 'heating_system': None,\n", " 'home_description': 'New renovation an easy walk to both the Ashmont and Shawmut stops on the red line. This penthouse unit features an open floor plan with oak floors, granite countertops, breakfast bar and stainless steel appliances. Central air and washer dryer hookups as well as storage are included. Private front and back decks as well as a common driveway and large fenced yard all add to the charm. New windows all around a newly renovated exterior, a good deal of new plumbing and wiring with a newer roof make this property an excellent value and an ideal starter home.',\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/',\n", " 'home_info': 'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/',\n", " 'home_size': '1000',\n", " 'home_type': 'Condominium',\n", " 'latitude': '42.287282',\n", " 'neighborhood': None,\n", " 'num_floors': None,\n", " 'parking_type': None,\n", " 'photo_gallery': 'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/#image=lightbox%3Dtrue',\n", " 'property_size': None,\n", " 'roof': None,\n", " 'rooms': None,\n", " 'school_district': None,\n", " 'view': None,\n", " 'year_built': '1920',\n", " 'year_updated': '2016',\n", " 'zillow_id': '2096896512'},\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '1.0',\n", " 'bedrooms': '2',\n", " 'graph_data_link': None,\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/',\n", " 'home_size': '1000',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': None,\n", " 'last_sold_price': None,\n", " 'latitude': '42.287282',\n", " 'longitude': '-71.073797',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/2096896512_zpid/',\n", " 'property_size': None,\n", " 'tax_value': None,\n", " 'tax_year': None,\n", " 'year_built': '1920',\n", " 'zestimate_amount': '386288',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '251087',\n", " 'zestimate_valuation_range_high': '533077',\n", " 'zestimate_value_change': None,\n", " 'zillow_id': '2096896512'},\n", " 'zip': u'02124'},\n", " {'address': u'255 Northampton St UNIT 501, Boston, MA',\n", " 'lat': 42.3394238,\n", " 'long': -71.0814012,\n", " 'prices': u'675,000',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '1.0',\n", " 'bedrooms': '2',\n", " 'graph_data_link': 'http://www.zillow.com/homedetails/255-Northampton-St-UNIT-501-Boston-MA-02118/87796106_zpid/#charts-and-data',\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/255-Northampton-St-UNIT-501-Boston-MA-02118/87796106_zpid/',\n", " 'home_size': '1057',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': '09/03/2010',\n", " 'last_sold_price': '475000',\n", " 'latitude': '42.339385',\n", " 'longitude': '-71.081382',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/87796106_zpid/',\n", " 'property_size': '1057',\n", " 'tax_value': '509100.0',\n", " 'tax_year': '2014',\n", " 'year_built': '2006',\n", " 'zestimate_amount': '779038',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '732296',\n", " 'zestimate_valuation_range_high': '825780',\n", " 'zestimate_value_change': '-34811',\n", " 'zillow_id': '87796106'},\n", " 'zip': u'02118'},\n", " {'address': u'10 Arbutus St, Dorchester Center, MA',\n", " 'lat': 42.2879239,\n", " 'long': -71.089551,\n", " 'prices': u'284,999',\n", " 'status': u'House For Sale',\n", " 'zillow': {'bathrooms': '2.0',\n", " 'bedrooms': '3',\n", " 'graph_data_link': 'http://www.zillow.com/homedetails/10-Arbutus-St-Dorchester-Center-MA-02124/59102139_zpid/#charts-and-data',\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/10-Arbutus-St-Dorchester-Center-MA-02124/59102139_zpid/',\n", " 'home_size': '1520',\n", " 'home_type': 'SingleFamily',\n", " 'last_sold_date': '09/19/2005',\n", " 'last_sold_price': '192079',\n", " 'latitude': '42.287927',\n", " 'longitude': '-71.089552',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/59102139_zpid/',\n", " 'property_size': '2613',\n", " 'tax_value': '156300.0',\n", " 'tax_year': '2014',\n", " 'year_built': '1991',\n", " 'zestimate_amount': '279545',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '251591',\n", " 'zestimate_valuation_range_high': '299113',\n", " 'zestimate_value_change': '2565',\n", " 'zillow_id': '59102139'},\n", " 'zip': u'02124'},\n", " {'address': u'53 Torrey St # 2, Boston, MA',\n", " 'lat': 42.287284,\n", " 'long': -71.073818,\n", " 'prices': u'339,000',\n", " 'property': {'basement': None,\n", " 'bathrooms': '1.0',\n", " 'bedrooms': '2',\n", " 'floor_material': None,\n", " 'heating_sources': None,\n", " 'heating_system': None,\n", " 'home_description': 'New renovation an easy walk to both the Ashmont and Shawmut stops on the red line. This penthouse unit features an open floor plan with oak floors, granite countertops, breakfast bar and stainless steel appliances. Central air and washer dryer hookups as well as storage are included. Private front and back decks as well as a common driveway and large fenced yard all add to the charm. New windows all around a newly renovated exterior, a good deal of new plumbing and wiring with a newer roof make this property an excellent value and an ideal starter home.\\n\\nFirst open house this Sunday 10/9 from 12:00 to 1pm.',\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/',\n", " 'home_info': 'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/',\n", " 'home_size': '1000',\n", " 'home_type': 'Condominium',\n", " 'latitude': '42.287284',\n", " 'neighborhood': None,\n", " 'num_floors': None,\n", " 'parking_type': None,\n", " 'photo_gallery': 'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/#image=lightbox%3Dtrue',\n", " 'property_size': None,\n", " 'roof': None,\n", " 'rooms': None,\n", " 'school_district': None,\n", " 'view': None,\n", " 'year_built': '1920',\n", " 'year_updated': '2016',\n", " 'zillow_id': '2096823174'},\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '1.0',\n", " 'bedrooms': '2',\n", " 'graph_data_link': None,\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/',\n", " 'home_size': '1000',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': None,\n", " 'last_sold_price': None,\n", " 'latitude': '42.287284',\n", " 'longitude': '-71.073818',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/2096823174_zpid/',\n", " 'property_size': None,\n", " 'tax_value': None,\n", " 'tax_year': None,\n", " 'year_built': '1920',\n", " 'zestimate_amount': '386288',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '251087',\n", " 'zestimate_valuation_range_high': '533077',\n", " 'zestimate_value_change': None,\n", " 'zillow_id': '2096823174'},\n", " 'zip': u'02124'},\n", " {'address': u'181 Glenway St, Dorchester, MA',\n", " 'lat': 42.296947,\n", " 'long': -71.080952,\n", " 'prices': u'399,000',\n", " 'status': u'House For Sale',\n", " 'zillow': {'bathrooms': '1.0',\n", " 'bedrooms': '5',\n", " 'graph_data_link': 'http://www.zillow.com/homedetails/181-Glenway-St-Dorchester-MA-02121/59112097_zpid/#charts-and-data',\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/181-Glenway-St-Dorchester-MA-02121/59112097_zpid/',\n", " 'home_size': '2684',\n", " 'home_type': 'SingleFamily',\n", " 'last_sold_date': None,\n", " 'last_sold_price': None,\n", " 'latitude': '42.296947',\n", " 'longitude': '-71.080952',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/59112097_zpid/',\n", " 'property_size': '5662',\n", " 'tax_value': '242000.0',\n", " 'tax_year': '2015',\n", " 'year_built': '1890',\n", " 'zestimate_amount': '443544',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '403625',\n", " 'zestimate_valuation_range_high': '474592',\n", " 'zestimate_value_change': '1475',\n", " 'zillow_id': '59112097'},\n", " 'zip': u'02121'},\n", " {'address': u'242 Beacon St APT 6, Boston, MA',\n", " 'lat': 42.3536559,\n", " 'long': -71.0795012,\n", " 'prices': u'2,495,000',\n", " 'property': {'basement': 'None',\n", " 'bathrooms': '3.0',\n", " 'bedrooms': '3',\n", " 'floor_material': 'Hardwood',\n", " 'heating_sources': 'Other',\n", " 'heating_system': 'Other',\n", " 'home_description': 'Waterside renovated three bedroom, two and a half bathroom floor-through condominium. Direct elevator access. Exceptionally well laid-out home featuring a grand living room with fireplace and bow window overlooking the Charles River Esplanade. Large galley offers a breakfast bar and sliding doors to the balcony. Elegant master bedroom suite boasts a bow window and marble fireplace. Central air-conditioning, new bathrooms, well-sized second and third bedrooms. Excellent closet space and ceiling height throughout. Association parking with direct access. 1 Year pre-paid parking will be offered with the sale. Well maintained brownstone that just completed a total restoration. Any idyllic Boston home! ',\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/',\n", " 'home_info': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/',\n", " 'home_size': '2267',\n", " 'home_type': 'Condominium',\n", " 'latitude': '42.353794',\n", " 'neighborhood': 'Back Bay',\n", " 'num_floors': '1',\n", " 'parking_type': 'Off-street, On-street',\n", " 'photo_gallery': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/#image=lightbox%3Dtrue',\n", " 'property_size': '2267',\n", " 'roof': None,\n", " 'rooms': 'Dining room, Family room, Laundry room, Master bath',\n", " 'school_district': None,\n", " 'view': 'City, Water',\n", " 'year_built': '1884',\n", " 'year_updated': '2007',\n", " 'zillow_id': '59170501'},\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '3.0',\n", " 'bedrooms': '3',\n", " 'graph_data_link': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/#charts-and-data',\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/',\n", " 'home_size': '2267',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': '09/09/2009',\n", " 'last_sold_price': '1325000',\n", " 'latitude': '42.353794',\n", " 'longitude': '-71.079593',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/59170501_zpid/',\n", " 'property_size': '2267',\n", " 'tax_value': '1783000.0',\n", " 'tax_year': '2014',\n", " 'year_built': '1884',\n", " 'zestimate_amount': '2828095',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '2630128',\n", " 'zestimate_valuation_range_high': '3054343',\n", " 'zestimate_value_change': '-11274',\n", " 'zillow_id': '59170501'},\n", " 'zip': u'02116'},\n", " {'address': u'12 Mosgrove Ave, Boston, MA',\n", " 'lat': 42.2919334,\n", " 'long': -71.1230212,\n", " 'prices': u'549,500',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '2.0',\n", " 'bedrooms': '3',\n", " 'graph_data_link': 'http://www.zillow.com/homedetails/12-Mosgrove-Ave-Boston-MA-02131/59144888_zpid/#charts-and-data',\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/12-Mosgrove-Ave-Boston-MA-02131/59144888_zpid/',\n", " 'home_size': '1950',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': '02/25/2015',\n", " 'last_sold_price': '250000',\n", " 'latitude': '42.291848',\n", " 'longitude': '-71.123093',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/59144888_zpid/',\n", " 'property_size': '5530',\n", " 'tax_value': '382100.0',\n", " 'tax_year': '2014',\n", " 'year_built': '1901',\n", " 'zestimate_amount': '621531',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '590454',\n", " 'zestimate_valuation_range_high': '652608',\n", " 'zestimate_value_change': '-7183',\n", " 'zillow_id': '59144888'},\n", " 'zip': u'02131'},\n", " {'address': u'100 Maple St, Boston, MA',\n", " 'lat': 42.3075847,\n", " 'long': -71.08661099999999,\n", " 'prices': u'599,000',\n", " 'status': u'House For Sale',\n", " 'zillow': {'bathrooms': None,\n", " 'bedrooms': None,\n", " 'graph_data_link': 'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/#charts-and-data',\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/',\n", " 'home_size': '16857',\n", " 'home_type': 'SingleFamily',\n", " 'last_sold_date': '02/19/1992',\n", " 'last_sold_price': '3360981',\n", " 'latitude': '42.289875',\n", " 'longitude': '-71.156478',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/90139732_zpid/',\n", " 'property_size': '7157',\n", " 'tax_value': '426577.0',\n", " 'tax_year': '2015',\n", " 'year_built': '1925',\n", " 'zestimate_amount': '695597',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '612125',\n", " 'zestimate_valuation_range_high': '772113',\n", " 'zestimate_value_change': '-7217',\n", " 'zillow_id': '90139732'},\n", " 'zip': u'02121'},\n", " {'address': u'23 Goethe St # 2, Boston, MA',\n", " 'lat': 42.256671,\n", " 'long': -71.158866,\n", " 'prices': u'399,900',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '2.0',\n", " 'bedrooms': '3',\n", " 'graph_data_link': None,\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/23-Goethe-St-2-Boston-MA-02132/2096807696_zpid/',\n", " 'home_size': '1370',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': None,\n", " 'last_sold_price': None,\n", " 'latitude': '42.256671',\n", " 'longitude': '-71.158866',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/2096807696_zpid/',\n", " 'property_size': None,\n", " 'tax_value': None,\n", " 'tax_year': None,\n", " 'year_built': '1940',\n", " 'zestimate_amount': '427867',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '402195',\n", " 'zestimate_valuation_range_high': '449260',\n", " 'zestimate_value_change': None,\n", " 'zillow_id': '2096807696'},\n", " 'zip': u'02132'},\n", " {'address': u'29 Houghton St # 1, Boston, MA',\n", " 'lat': 42.295264,\n", " 'long': -71.0522963,\n", " 'prices': u'479,000',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '2.0',\n", " 'bedrooms': '3',\n", " 'graph_data_link': None,\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/29-Houghton-St-1-Boston-MA-02122/2096881071_zpid/',\n", " 'home_size': '1400',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': None,\n", " 'last_sold_price': None,\n", " 'latitude': '42.295223',\n", " 'longitude': '-71.052345',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/2096881071_zpid/',\n", " 'property_size': None,\n", " 'tax_value': None,\n", " 'tax_year': None,\n", " 'year_built': '1900',\n", " 'zestimate_amount': '473061',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '439947',\n", " 'zestimate_valuation_range_high': '496714',\n", " 'zestimate_value_change': None,\n", " 'zillow_id': '2096881071'},\n", " 'zip': u'02122'},\n", " {'address': u'801 Centre St # 3C, Boston, MA',\n", " 'lat': 42.30924,\n", " 'long': -71.1166,\n", " 'prices': u'669,000',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '2.0',\n", " 'bedrooms': '3',\n", " 'graph_data_link': None,\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/801-Centre-St-3C-Boston-MA-02130/2097055956_zpid/',\n", " 'home_size': '1916',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': None,\n", " 'last_sold_price': None,\n", " 'latitude': '42.30924',\n", " 'longitude': '-71.1166',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/2097055956_zpid/',\n", " 'property_size': '1916',\n", " 'tax_value': None,\n", " 'tax_year': None,\n", " 'year_built': '1899',\n", " 'zestimate_amount': '816823',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '775982',\n", " 'zestimate_valuation_range_high': '857664',\n", " 'zestimate_value_change': None,\n", " 'zillow_id': '2097055956'},\n", " 'zip': u'02130'},\n", " {'address': u'1 Franklin St # 1601, Boston, MA',\n", " 'lat': 42.35631,\n", " 'long': -71.05945,\n", " 'prices': u'1,300,000',\n", " 'property': {'basement': None,\n", " 'bathrooms': '1.0',\n", " 'bedrooms': '1',\n", " 'floor_material': 'Carpet, Hardwood',\n", " 'heating_sources': None,\n", " 'heating_system': 'Forced air',\n", " 'home_description': \"Gorgeous One Bedroom at Millennium Towers! Towering above the adjacent building, allowing for expansive views of The State House and the Back Bay. A state of the art luxury living at it's best! Private screening room, Residents Only Restaurant and Lounge, Indoor swimming pool with a Miami style flair and Jacuzzi. One of a kind Fitness Center featuring a Boxing Club, Pilates/Yoga Studio/Cycling to name a few. Adjacent to the renovated historic Burnham Building, Millennium Tower will stand at the center of a reinvigorated downtown Boston, home to vibrant retail, and a new Roche Bros. gourmet grocery. Come see why Millennium Tower Boston is the evolution of luxury residential living.\",\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/',\n", " 'home_info': 'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/',\n", " 'home_size': '923',\n", " 'home_type': 'Condominium',\n", " 'latitude': '42.355785',\n", " 'neighborhood': None,\n", " 'num_floors': None,\n", " 'parking_type': None,\n", " 'photo_gallery': 'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/#image=lightbox%3Dtrue',\n", " 'property_size': None,\n", " 'roof': None,\n", " 'rooms': None,\n", " 'school_district': None,\n", " 'view': None,\n", " 'year_built': '2016',\n", " 'year_updated': None,\n", " 'zillow_id': '2097180167'},\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '1.0',\n", " 'bedrooms': '1',\n", " 'graph_data_link': None,\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/',\n", " 'home_size': '923',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': '09/15/2016',\n", " 'last_sold_price': '945000',\n", " 'latitude': '42.355785',\n", " 'longitude': '-71.059526',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/2097180167_zpid/',\n", " 'property_size': None,\n", " 'tax_value': None,\n", " 'tax_year': None,\n", " 'year_built': '2016',\n", " 'zestimate_amount': '1176850',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '882637',\n", " 'zestimate_valuation_range_high': '1494599',\n", " 'zestimate_value_change': None,\n", " 'zillow_id': '2097180167'},\n", " 'zip': u'02108'},\n", " {'address': u'28 Woodward St # 1, Boston, MA',\n", " 'lat': 42.3314431,\n", " 'long': -71.0559853,\n", " 'prices': u'875,000',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '3.0',\n", " 'bedrooms': '3',\n", " 'graph_data_link': None,\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/28-Woodward-St-1-Boston-MA-02127/2107330626_zpid/',\n", " 'home_size': '1700',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': None,\n", " 'last_sold_price': None,\n", " 'latitude': '42.331474',\n", " 'longitude': '-71.055931',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/2107330626_zpid/',\n", " 'property_size': None,\n", " 'tax_value': None,\n", " 'tax_year': None,\n", " 'year_built': '2016',\n", " 'zestimate_amount': '899400',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '656562',\n", " 'zestimate_valuation_range_high': '1115256',\n", " 'zestimate_value_change': '-13779',\n", " 'zillow_id': '2107330626'},\n", " 'zip': u'02127'},\n", " {'address': u'31 Houghton St # 2, Boston, MA',\n", " 'lat': 42.2952453,\n", " 'long': -71.0522682,\n", " 'prices': u'479,000',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '2.0',\n", " 'bedrooms': '3',\n", " 'graph_data_link': None,\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/31-Houghton-St-2-Boston-MA-02122/2096881020_zpid/',\n", " 'home_size': '1400',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': None,\n", " 'last_sold_price': None,\n", " 'latitude': '42.295265',\n", " 'longitude': '-71.052066',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/2096881020_zpid/',\n", " 'property_size': None,\n", " 'tax_value': None,\n", " 'tax_year': None,\n", " 'year_built': '1900',\n", " 'zestimate_amount': '472441',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '439370',\n", " 'zestimate_valuation_range_high': '496063',\n", " 'zestimate_value_change': None,\n", " 'zillow_id': '2096881020'},\n", " 'zip': u'02122'},\n", " {'address': u'16 Chelmsford St UNIT 2, Dorchester, MA',\n", " 'lat': 42.284953,\n", " 'long': -71.0540671,\n", " 'prices': u'389,000',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '1.0',\n", " 'bedrooms': '2',\n", " 'graph_data_link': 'http://www.zillow.com/homedetails/16-Chelmsford-St-UNIT-2-Dorchester-MA-02122/81854555_zpid/#charts-and-data',\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/16-Chelmsford-St-UNIT-2-Dorchester-MA-02122/81854555_zpid/',\n", " 'home_size': '1061',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': '07/11/2006',\n", " 'last_sold_price': '261000',\n", " 'latitude': '42.28495',\n", " 'longitude': '-71.054061',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/81854555_zpid/',\n", " 'property_size': None,\n", " 'tax_value': '212600.0',\n", " 'tax_year': '2014',\n", " 'year_built': '1905',\n", " 'zestimate_amount': '382635',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '363503',\n", " 'zestimate_valuation_range_high': '405593',\n", " 'zestimate_value_change': '6024',\n", " 'zillow_id': '81854555'},\n", " 'zip': u'02122'},\n", " {'address': u'43 Parkvale Ave APT 5, Boston, MA',\n", " 'lat': 42.3523208,\n", " 'long': -71.1329925,\n", " 'prices': u'339,900',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '1.0',\n", " 'bedrooms': '1',\n", " 'graph_data_link': 'http://www.zillow.com/homedetails/43-Parkvale-Ave-APT-5-Boston-MA-02134/59088144_zpid/#charts-and-data',\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/43-Parkvale-Ave-APT-5-Boston-MA-02134/59088144_zpid/',\n", " 'home_size': '578',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': '08/31/2006',\n", " 'last_sold_price': '197000',\n", " 'latitude': '42.351999',\n", " 'longitude': '-71.133272',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/59088144_zpid/',\n", " 'property_size': '578',\n", " 'tax_value': '183100.0',\n", " 'tax_year': '2014',\n", " 'year_built': '1910',\n", " 'zestimate_amount': '343249',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '326087',\n", " 'zestimate_valuation_range_high': '363844',\n", " 'zestimate_value_change': None,\n", " 'zillow_id': '59088144'},\n", " 'zip': u'02134'},\n", " {'address': u'1391 Hyde Park Ave STE G, Boston, MA',\n", " 'lat': 42.2511409,\n", " 'long': -71.12602799999999,\n", " 'prices': u'399,500',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '1.0',\n", " 'bedrooms': '1',\n", " 'graph_data_link': 'http://www.zillow.com/homedetails/1391-Hyde-Park-Ave-STE-G-Boston-MA-02136/81855097_zpid/#charts-and-data',\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/1391-Hyde-Park-Ave-STE-G-Boston-MA-02136/81855097_zpid/',\n", " 'home_size': '1570',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': '03/17/2014',\n", " 'last_sold_price': '310000',\n", " 'latitude': '42.250944',\n", " 'longitude': '-71.125871',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/81855097_zpid/',\n", " 'property_size': '3484',\n", " 'tax_value': '450000.0',\n", " 'tax_year': '2014',\n", " 'year_built': '1950',\n", " 'zestimate_amount': '399390',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '343475',\n", " 'zestimate_valuation_range_high': '475274',\n", " 'zestimate_value_change': '-9890',\n", " 'zillow_id': '81855097'},\n", " 'zip': u'02136'},\n", " {'address': u'29 Brainerd Rd, Boston, MA',\n", " 'lat': 42.3486087,\n", " 'long': -71.131332,\n", " 'prices': u'549,000',\n", " 'property': {'basement': None,\n", " 'bathrooms': '1.0',\n", " 'bedrooms': '2',\n", " 'floor_material': 'Hardwood',\n", " 'heating_sources': None,\n", " 'heating_system': 'Forced air',\n", " 'home_description': \"Light-filled corner unit with polished hardwood flooring throughout and desirable open-concept living and dining space. Only one short block to Green Line subway, and bus lines. Excellent restaurants and nightlife only steps away! Harvard Avenue is known to have some of the best restaurants in Boston, and Coolidge Corner is a bustling neighborhood hot-spot. Boston University and Boston College are minutes away, so this could be great for students looking to live in the city! Building amenities include laundry, dedicated storage, bicycle parking, secure buzzer access and professional property management. This is not one to miss! Condo fees include common area maintenance, cold water, and master policy building insurance for common areas. Homeowner is responsible for heat and hot water for unit. Hot water heater and HVAC unit are both located in unit, so there is no sharing utilities with neighbors. Taxes were $854 this past quarter. Copy and paste the link below into your browser to view and download this property's fact sheet: https://drive.google.com/file/d/0B8DDIx2QJdihc1NkSTRBUzAwX0E/view?usp=sharing\",\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/29-Brainerd-Rd-Boston-MA-02134/2097576158_zpid/',\n", " 'home_info': 'http://www.zillow.com/homedetails/29-Brainerd-Rd-Boston-MA-02134/2097576158_zpid/',\n", " 'home_size': '850',\n", " 'home_type': 'Condominium',\n", " 'latitude': '42.34912',\n", " 'neighborhood': None,\n", " 'num_floors': None,\n", " 'parking_type': 'On-street',\n", " 'photo_gallery': 'http://www.zillow.com/homedetails/29-Brainerd-Rd-Boston-MA-02134/2097576158_zpid/#image=lightbox%3Dtrue',\n", " 'property_size': None,\n", " 'roof': None,\n", " 'rooms': None,\n", " 'school_district': None,\n", " 'view': None,\n", " 'year_built': '1904',\n", " 'year_updated': None,\n", " 'zillow_id': '2097576158'},\n", " 'status': u'For Sale by Owner',\n", " 'zillow': {'bathrooms': '1.0',\n", " 'bedrooms': '2',\n", " 'graph_data_link': None,\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/29-Brainerd-Rd-Boston-MA-02134/2097576158_zpid/',\n", " 'home_size': '850',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': None,\n", " 'last_sold_price': None,\n", " 'latitude': '42.34912',\n", " 'longitude': '-71.13047',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/2097576158_zpid/',\n", " 'property_size': None,\n", " 'tax_value': None,\n", " 'tax_year': None,\n", " 'year_built': '1904',\n", " 'zestimate_amount': '421220',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '391735',\n", " 'zestimate_valuation_range_high': '442281',\n", " 'zestimate_value_change': '13653',\n", " 'zillow_id': '2097576158'},\n", " 'zip': u'02134'},\n", " {'address': u'235 Victory Rd UNIT 235, Quincy, MA',\n", " 'lat': 42.299416,\n", " 'long': -71.044724,\n", " 'prices': u'769,000',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '2.0',\n", " 'bedrooms': '2',\n", " 'graph_data_link': 'http://www.zillow.com/homedetails/235-Victory-Rd-UNIT-235-Quincy-MA-02171/56605009_zpid/#charts-and-data',\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/235-Victory-Rd-UNIT-235-Quincy-MA-02171/56605009_zpid/',\n", " 'home_size': '2286',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': '11/24/1999',\n", " 'last_sold_price': '474680',\n", " 'latitude': '42.299416',\n", " 'longitude': '-71.044724',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/56605009_zpid/',\n", " 'property_size': None,\n", " 'tax_value': '630200.0',\n", " 'tax_year': '2014',\n", " 'year_built': '1999',\n", " 'zestimate_amount': '787842',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '748450',\n", " 'zestimate_valuation_range_high': '827234',\n", " 'zestimate_value_change': '6598',\n", " 'zillow_id': '56605009'},\n", " 'zip': u'02122'},\n", " {'address': u'209 Commonwealth Ave # PD, Boston, MA',\n", " 'lat': 42.351279,\n", " 'long': -71.081336,\n", " 'prices': u'799,000',\n", " 'status': u'Condo For Sale',\n", " 'zip': None},\n", " {'address': u'198-260 American Legion, Boston, MA',\n", " 'lat': 42.2945011,\n", " 'long': -71.0932254,\n", " 'prices': u'479,900',\n", " 'status': u'Apartment For Sale',\n", " 'zillow': {'bathrooms': '4.0',\n", " 'bedrooms': '6',\n", " 'graph_data_link': None,\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/198-260-American-Legion-Boston-MA-02124/2096336314_zpid/',\n", " 'home_size': '2848',\n", " 'home_type': 'MultiFamily2To4',\n", " 'last_sold_date': None,\n", " 'last_sold_price': None,\n", " 'latitude': '42.293974',\n", " 'longitude': '-71.093611',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/2096336314_zpid/',\n", " 'property_size': '4791',\n", " 'tax_value': None,\n", " 'tax_year': None,\n", " 'year_built': None,\n", " 'zestimate_amount': None,\n", " 'zestimate_last_updated': '12/31/1969',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': None,\n", " 'zestimate_valuation_range_high': None,\n", " 'zestimate_value_change': None,\n", " 'zillow_id': '2096336314'},\n", " 'zip': u'02124'}]" ] }, "execution_count": 29, "metadata": {}, "output_type": "execute_result" } ], "source": [ "data = ParsingFromZillow(d)\n" ] }, { "cell_type": "code", "execution_count": 17, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "{'neighborhood': None, 'bathrooms': '3.0', 'school_district': None, 'heating_sources': 'Gas', 'rooms': None, 'home_description': 'Hot Jeffries Point 2-family for sale! Here is a 2/2 bi-level owners unit that was gutted to the studs a few years ago with a 1/1 first floor apartment that will bring in extra income. There is a finished room in the basement, so why not bi-level that unit too for even more money? Why buy a condo when you can buy a two family for the same price? Please see the video, pictures, floor plans, former income and expenses and improvements to become familiar with the property before coming to view it. The property will be delivered vacant. Cash and as is sales will be highly considered, however a higher sales price will be considered if the price. terms and conditions are acceptable to the sellers. All offers due by Monday at 12:00 and will be answered on Monday evening at 8PM. Property will be delivered vacant. Fast Close for cash as-is will be put to the front of the line. Open house this Saturday and Sunday from 9-11AM. Look at the pictures and watch the video!', 'property_size': '435', 'num_floors': '4', 'heating_system': 'Baseboard, Forced air', 'photo_gallery': 'http://www.zillow.com/homedetails/216-Everett-St-Boston-MA-02128/59121131_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Laminate', 'year_updated': '2010', 'bedrooms': '3', 'latitude': '42.36591', 'zillow_id': '59121131', 'basement': 'Partially finished', 'year_built': '1900', 'home_size': '1620', 'roof': None, 'view': None, 'home_type': 'MultiFamily2To4', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/216-Everett-St-Boston-MA-02128/59121131_zpid/', 'home_info': 'http://www.zillow.com/homedetails/216-Everett-St-Boston-MA-02128/59121131_zpid/'}\n" ] } ], "source": [ "data" ] }, { "cell_type": "code", "execution_count": 22, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "[{'address': u'54 Grampian Way, Dorchester, MA',\n", " 'lat': 42.312072,\n", " 'long': -71.049533,\n", " 'prices': u'899,000',\n", " 'status': u'House For Sale',\n", " 'zillow': {'bathrooms': '2.0',\n", " 'bedrooms': '5',\n", " 'graph_data_link': 'http://www.zillow.com/homedetails/54-Grampian-Way-Dorchester-MA-02125/59113320_zpid/#charts-and-data',\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/54-Grampian-Way-Dorchester-MA-02125/59113320_zpid/',\n", " 'home_size': '2423',\n", " 'home_type': 'SingleFamily',\n", " 'last_sold_date': '12/11/1998',\n", " 'last_sold_price': '197000',\n", " 'latitude': '42.312059',\n", " 'longitude': '-71.049545',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/59113320_zpid/',\n", " 'property_size': '6534',\n", " 'tax_value': '499300.0',\n", " 'tax_year': '2015',\n", " 'year_built': '1885',\n", " 'zestimate_amount': '769371',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '700128',\n", " 'zestimate_valuation_range_high': '854002',\n", " 'zestimate_value_change': '-23220',\n", " 'zillow_id': '59113320'},\n", " 'zip': u'02125'},\n", " {'address': u'7-9 Herbertson # 2, Jamaica Plain, MA',\n", " 'lat': 42.2920089,\n", " 'long': -71.1162116,\n", " 'prices': u'529,000',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '2.0',\n", " 'bedrooms': '3',\n", " 'graph_data_link': None,\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/7-9-Herbertson-2-Jamaica-Plain-MA-02130/2096675064_zpid/',\n", " 'home_size': '1260',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': None,\n", " 'last_sold_price': None,\n", " 'latitude': '42.292142',\n", " 'longitude': '-71.116361',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/2096675064_zpid/',\n", " 'property_size': '9999',\n", " 'tax_value': None,\n", " 'tax_year': None,\n", " 'year_built': '1925',\n", " 'zestimate_amount': '592944',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '474355',\n", " 'zestimate_valuation_range_high': '794545',\n", " 'zestimate_value_change': None,\n", " 'zillow_id': '2096675064'},\n", " 'zip': u'02130'},\n", " {'address': u'321 Dorchester St # 1, Boston, MA',\n", " 'lat': 42.33145,\n", " 'long': -71.05343,\n", " 'prices': u'849,000',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '3.0',\n", " 'bedrooms': '4',\n", " 'graph_data_link': None,\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497571_zpid/',\n", " 'home_size': '2400',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': None,\n", " 'last_sold_price': None,\n", " 'latitude': '42.33145',\n", " 'longitude': '-71.05343',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/2096497571_zpid/',\n", " 'property_size': None,\n", " 'tax_value': None,\n", " 'tax_year': None,\n", " 'year_built': None,\n", " 'zestimate_amount': '920287',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '874273',\n", " 'zestimate_valuation_range_high': '966301',\n", " 'zestimate_value_change': None,\n", " 'zillow_id': '2096497571'},\n", " 'zip': u'02127'},\n", " {'address': u'31 Maple St, Boston, MA',\n", " 'lat': 42.287886,\n", " 'long': -71.1544114,\n", " 'prices': u'739,900',\n", " 'status': u'House For Sale',\n", " 'zillow': {'bathrooms': '2.0',\n", " 'bedrooms': '3',\n", " 'graph_data_link': 'http://www.zillow.com/homedetails/31-Maple-St-Boston-MA-02132/59155302_zpid/#charts-and-data',\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/31-Maple-St-Boston-MA-02132/59155302_zpid/',\n", " 'home_size': '1847',\n", " 'home_type': 'SingleFamily',\n", " 'last_sold_date': None,\n", " 'last_sold_price': None,\n", " 'latitude': '42.287908',\n", " 'longitude': '-71.154418',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/59155302_zpid/',\n", " 'property_size': '4356',\n", " 'tax_value': '448800.0',\n", " 'tax_year': '2014',\n", " 'year_built': '1900',\n", " 'zestimate_amount': '715741',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '672797',\n", " 'zestimate_valuation_range_high': '765843',\n", " 'zestimate_value_change': '2143',\n", " 'zillow_id': '59155302'},\n", " 'zip': u'02132'},\n", " {'address': u'129 Gardner St, Boston, MA',\n", " 'lat': 42.277522,\n", " 'long': -71.171084,\n", " 'prices': u'849,000',\n", " 'status': u'House For Sale',\n", " 'zillow': {'bathrooms': '3.0',\n", " 'bedrooms': '4',\n", " 'graph_data_link': None,\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/129-Gardner-St-Boston-MA-02132/2096677074_zpid/',\n", " 'home_size': '2800',\n", " 'home_type': 'SingleFamily',\n", " 'last_sold_date': None,\n", " 'last_sold_price': None,\n", " 'latitude': '42.277522',\n", " 'longitude': '-71.171084',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/2096677074_zpid/',\n", " 'property_size': '6969',\n", " 'tax_value': None,\n", " 'tax_year': None,\n", " 'year_built': '2016',\n", " 'zestimate_amount': '856856',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '728328',\n", " 'zestimate_valuation_range_high': '1036796',\n", " 'zestimate_value_change': None,\n", " 'zillow_id': '2096677074'},\n", " 'zip': u'02132'},\n", " {'address': u'53 Torrey St # 3, Boston, MA',\n", " 'lat': 42.287372,\n", " 'long': -71.073962,\n", " 'prices': u'345,000',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '1.0',\n", " 'bedrooms': '2',\n", " 'graph_data_link': None,\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/',\n", " 'home_size': '1000',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': None,\n", " 'last_sold_price': None,\n", " 'latitude': '42.287282',\n", " 'longitude': '-71.073797',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/2096896512_zpid/',\n", " 'property_size': None,\n", " 'tax_value': None,\n", " 'tax_year': None,\n", " 'year_built': '1920',\n", " 'zestimate_amount': '386288',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '251087',\n", " 'zestimate_valuation_range_high': '533077',\n", " 'zestimate_value_change': None,\n", " 'zillow_id': '2096896512'},\n", " 'zip': u'02124'},\n", " {'address': u'255 Northampton St UNIT 501, Boston, MA',\n", " 'lat': 42.3394238,\n", " 'long': -71.0814012,\n", " 'prices': u'675,000',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '1.0',\n", " 'bedrooms': '2',\n", " 'graph_data_link': 'http://www.zillow.com/homedetails/255-Northampton-St-UNIT-501-Boston-MA-02118/87796106_zpid/#charts-and-data',\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/255-Northampton-St-UNIT-501-Boston-MA-02118/87796106_zpid/',\n", " 'home_size': '1057',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': '09/03/2010',\n", " 'last_sold_price': '475000',\n", " 'latitude': '42.339385',\n", " 'longitude': '-71.081382',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/87796106_zpid/',\n", " 'property_size': '1057',\n", " 'tax_value': '509100.0',\n", " 'tax_year': '2014',\n", " 'year_built': '2006',\n", " 'zestimate_amount': '779038',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '732296',\n", " 'zestimate_valuation_range_high': '825780',\n", " 'zestimate_value_change': '-34811',\n", " 'zillow_id': '87796106'},\n", " 'zip': u'02118'},\n", " {'address': u'10 Arbutus St, Dorchester Center, MA',\n", " 'lat': 42.2879239,\n", " 'long': -71.089551,\n", " 'prices': u'284,999',\n", " 'status': u'House For Sale',\n", " 'zillow': {'bathrooms': '2.0',\n", " 'bedrooms': '3',\n", " 'graph_data_link': 'http://www.zillow.com/homedetails/10-Arbutus-St-Dorchester-Center-MA-02124/59102139_zpid/#charts-and-data',\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/10-Arbutus-St-Dorchester-Center-MA-02124/59102139_zpid/',\n", " 'home_size': '1520',\n", " 'home_type': 'SingleFamily',\n", " 'last_sold_date': '09/19/2005',\n", " 'last_sold_price': '192079',\n", " 'latitude': '42.287927',\n", " 'longitude': '-71.089552',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/59102139_zpid/',\n", " 'property_size': '2613',\n", " 'tax_value': '156300.0',\n", " 'tax_year': '2014',\n", " 'year_built': '1991',\n", " 'zestimate_amount': '279545',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '251591',\n", " 'zestimate_valuation_range_high': '299113',\n", " 'zestimate_value_change': '2565',\n", " 'zillow_id': '59102139'},\n", " 'zip': u'02124'},\n", " {'address': u'53 Torrey St # 2, Boston, MA',\n", " 'lat': 42.287284,\n", " 'long': -71.073818,\n", " 'prices': u'339,000',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '1.0',\n", " 'bedrooms': '2',\n", " 'graph_data_link': None,\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/',\n", " 'home_size': '1000',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': None,\n", " 'last_sold_price': None,\n", " 'latitude': '42.287284',\n", " 'longitude': '-71.073818',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/2096823174_zpid/',\n", " 'property_size': None,\n", " 'tax_value': None,\n", " 'tax_year': None,\n", " 'year_built': '1920',\n", " 'zestimate_amount': '386288',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '251087',\n", " 'zestimate_valuation_range_high': '533077',\n", " 'zestimate_value_change': None,\n", " 'zillow_id': '2096823174'},\n", " 'zip': u'02124'},\n", " {'address': u'181 Glenway St, Dorchester, MA',\n", " 'lat': 42.296947,\n", " 'long': -71.080952,\n", " 'prices': u'399,000',\n", " 'status': u'House For Sale',\n", " 'zillow': {'bathrooms': '1.0',\n", " 'bedrooms': '5',\n", " 'graph_data_link': 'http://www.zillow.com/homedetails/181-Glenway-St-Dorchester-MA-02121/59112097_zpid/#charts-and-data',\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/181-Glenway-St-Dorchester-MA-02121/59112097_zpid/',\n", " 'home_size': '2684',\n", " 'home_type': 'SingleFamily',\n", " 'last_sold_date': None,\n", " 'last_sold_price': None,\n", " 'latitude': '42.296947',\n", " 'longitude': '-71.080952',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/59112097_zpid/',\n", " 'property_size': '5662',\n", " 'tax_value': '242000.0',\n", " 'tax_year': '2015',\n", " 'year_built': '1890',\n", " 'zestimate_amount': '443544',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '403625',\n", " 'zestimate_valuation_range_high': '474592',\n", " 'zestimate_value_change': '1475',\n", " 'zillow_id': '59112097'},\n", " 'zip': u'02121'},\n", " {'address': u'242 Beacon St APT 6, Boston, MA',\n", " 'lat': 42.3536559,\n", " 'long': -71.0795012,\n", " 'prices': u'2,495,000',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '3.0',\n", " 'bedrooms': '3',\n", " 'graph_data_link': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/#charts-and-data',\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/',\n", " 'home_size': '2267',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': '09/09/2009',\n", " 'last_sold_price': '1325000',\n", " 'latitude': '42.353794',\n", " 'longitude': '-71.079593',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/59170501_zpid/',\n", " 'property_size': '2267',\n", " 'tax_value': '1783000.0',\n", " 'tax_year': '2014',\n", " 'year_built': '1884',\n", " 'zestimate_amount': '2828095',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '2630128',\n", " 'zestimate_valuation_range_high': '3054343',\n", " 'zestimate_value_change': '-11274',\n", " 'zillow_id': '59170501'},\n", " 'zip': u'02116'},\n", " {'address': u'12 Mosgrove Ave, Boston, MA',\n", " 'lat': 42.2919334,\n", " 'long': -71.1230212,\n", " 'prices': u'549,500',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '2.0',\n", " 'bedrooms': '3',\n", " 'graph_data_link': 'http://www.zillow.com/homedetails/12-Mosgrove-Ave-Boston-MA-02131/59144888_zpid/#charts-and-data',\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/12-Mosgrove-Ave-Boston-MA-02131/59144888_zpid/',\n", " 'home_size': '1950',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': '02/25/2015',\n", " 'last_sold_price': '250000',\n", " 'latitude': '42.291848',\n", " 'longitude': '-71.123093',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/59144888_zpid/',\n", " 'property_size': '5530',\n", " 'tax_value': '382100.0',\n", " 'tax_year': '2014',\n", " 'year_built': '1901',\n", " 'zestimate_amount': '621531',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '590454',\n", " 'zestimate_valuation_range_high': '652608',\n", " 'zestimate_value_change': '-7183',\n", " 'zillow_id': '59144888'},\n", " 'zip': u'02131'},\n", " {'address': u'100 Maple St, Boston, MA',\n", " 'lat': 42.3075847,\n", " 'long': -71.08661099999999,\n", " 'prices': u'599,000',\n", " 'status': u'House For Sale',\n", " 'zillow': {'bathrooms': None,\n", " 'bedrooms': None,\n", " 'graph_data_link': 'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/#charts-and-data',\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/',\n", " 'home_size': '16857',\n", " 'home_type': 'SingleFamily',\n", " 'last_sold_date': '02/19/1992',\n", " 'last_sold_price': '3360981',\n", " 'latitude': '42.289875',\n", " 'longitude': '-71.156478',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/90139732_zpid/',\n", " 'property_size': '7157',\n", " 'tax_value': '426577.0',\n", " 'tax_year': '2015',\n", " 'year_built': '1925',\n", " 'zestimate_amount': '695597',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '612125',\n", " 'zestimate_valuation_range_high': '772113',\n", " 'zestimate_value_change': '-7217',\n", " 'zillow_id': '90139732'},\n", " 'zip': u'02121'},\n", " {'address': u'23 Goethe St # 2, Boston, MA',\n", " 'lat': 42.256671,\n", " 'long': -71.158866,\n", " 'prices': u'399,900',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '2.0',\n", " 'bedrooms': '3',\n", " 'graph_data_link': None,\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/23-Goethe-St-2-Boston-MA-02132/2096807696_zpid/',\n", " 'home_size': '1370',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': None,\n", " 'last_sold_price': None,\n", " 'latitude': '42.256671',\n", " 'longitude': '-71.158866',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/2096807696_zpid/',\n", " 'property_size': None,\n", " 'tax_value': None,\n", " 'tax_year': None,\n", " 'year_built': '1940',\n", " 'zestimate_amount': '427867',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '402195',\n", " 'zestimate_valuation_range_high': '449260',\n", " 'zestimate_value_change': None,\n", " 'zillow_id': '2096807696'},\n", " 'zip': u'02132'},\n", " {'address': u'29 Houghton St # 1, Boston, MA',\n", " 'lat': 42.295264,\n", " 'long': -71.0522963,\n", " 'prices': u'479,000',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '2.0',\n", " 'bedrooms': '3',\n", " 'graph_data_link': None,\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/29-Houghton-St-1-Boston-MA-02122/2096881071_zpid/',\n", " 'home_size': '1400',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': None,\n", " 'last_sold_price': None,\n", " 'latitude': '42.295223',\n", " 'longitude': '-71.052345',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/2096881071_zpid/',\n", " 'property_size': None,\n", " 'tax_value': None,\n", " 'tax_year': None,\n", " 'year_built': '1900',\n", " 'zestimate_amount': '473061',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '439947',\n", " 'zestimate_valuation_range_high': '496714',\n", " 'zestimate_value_change': None,\n", " 'zillow_id': '2096881071'},\n", " 'zip': u'02122'},\n", " {'address': u'801 Centre St # 3C, Boston, MA',\n", " 'lat': 42.30924,\n", " 'long': -71.1166,\n", " 'prices': u'669,000',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '2.0',\n", " 'bedrooms': '3',\n", " 'graph_data_link': None,\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/801-Centre-St-3C-Boston-MA-02130/2097055956_zpid/',\n", " 'home_size': '1916',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': None,\n", " 'last_sold_price': None,\n", " 'latitude': '42.30924',\n", " 'longitude': '-71.1166',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/2097055956_zpid/',\n", " 'property_size': '1916',\n", " 'tax_value': None,\n", " 'tax_year': None,\n", " 'year_built': '1899',\n", " 'zestimate_amount': '816823',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '775982',\n", " 'zestimate_valuation_range_high': '857664',\n", " 'zestimate_value_change': None,\n", " 'zillow_id': '2097055956'},\n", " 'zip': u'02130'},\n", " {'address': u'1 Franklin St # 1601, Boston, MA',\n", " 'lat': 42.35631,\n", " 'long': -71.05945,\n", " 'prices': u'1,300,000',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '1.0',\n", " 'bedrooms': '1',\n", " 'graph_data_link': None,\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/',\n", " 'home_size': '923',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': '09/15/2016',\n", " 'last_sold_price': '945000',\n", " 'latitude': '42.355785',\n", " 'longitude': '-71.059526',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/2097180167_zpid/',\n", " 'property_size': None,\n", " 'tax_value': None,\n", " 'tax_year': None,\n", " 'year_built': '2016',\n", " 'zestimate_amount': '1176850',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '882637',\n", " 'zestimate_valuation_range_high': '1494599',\n", " 'zestimate_value_change': None,\n", " 'zillow_id': '2097180167'},\n", " 'zip': u'02108'},\n", " {'address': u'28 Woodward St # 1, Boston, MA',\n", " 'lat': 42.3314431,\n", " 'long': -71.0559853,\n", " 'prices': u'875,000',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '3.0',\n", " 'bedrooms': '3',\n", " 'graph_data_link': None,\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/28-Woodward-St-1-Boston-MA-02127/2107330626_zpid/',\n", " 'home_size': '1700',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': None,\n", " 'last_sold_price': None,\n", " 'latitude': '42.331474',\n", " 'longitude': '-71.055931',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/2107330626_zpid/',\n", " 'property_size': None,\n", " 'tax_value': None,\n", " 'tax_year': None,\n", " 'year_built': '2016',\n", " 'zestimate_amount': '899400',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '656562',\n", " 'zestimate_valuation_range_high': '1115256',\n", " 'zestimate_value_change': '-13779',\n", " 'zillow_id': '2107330626'},\n", " 'zip': u'02127'},\n", " {'address': u'31 Houghton St # 2, Boston, MA',\n", " 'lat': 42.2952453,\n", " 'long': -71.0522682,\n", " 'prices': u'479,000',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '2.0',\n", " 'bedrooms': '3',\n", " 'graph_data_link': None,\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/31-Houghton-St-2-Boston-MA-02122/2096881020_zpid/',\n", " 'home_size': '1400',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': None,\n", " 'last_sold_price': None,\n", " 'latitude': '42.295265',\n", " 'longitude': '-71.052066',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/2096881020_zpid/',\n", " 'property_size': None,\n", " 'tax_value': None,\n", " 'tax_year': None,\n", " 'year_built': '1900',\n", " 'zestimate_amount': '472441',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '439370',\n", " 'zestimate_valuation_range_high': '496063',\n", " 'zestimate_value_change': None,\n", " 'zillow_id': '2096881020'},\n", " 'zip': u'02122'},\n", " {'address': u'16 Chelmsford St UNIT 2, Dorchester, MA',\n", " 'lat': 42.284953,\n", " 'long': -71.0540671,\n", " 'prices': u'389,000',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '1.0',\n", " 'bedrooms': '2',\n", " 'graph_data_link': 'http://www.zillow.com/homedetails/16-Chelmsford-St-UNIT-2-Dorchester-MA-02122/81854555_zpid/#charts-and-data',\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/16-Chelmsford-St-UNIT-2-Dorchester-MA-02122/81854555_zpid/',\n", " 'home_size': '1061',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': '07/11/2006',\n", " 'last_sold_price': '261000',\n", " 'latitude': '42.28495',\n", " 'longitude': '-71.054061',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/81854555_zpid/',\n", " 'property_size': None,\n", " 'tax_value': '212600.0',\n", " 'tax_year': '2014',\n", " 'year_built': '1905',\n", " 'zestimate_amount': '382635',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '363503',\n", " 'zestimate_valuation_range_high': '405593',\n", " 'zestimate_value_change': '6024',\n", " 'zillow_id': '81854555'},\n", " 'zip': u'02122'},\n", " {'address': u'43 Parkvale Ave APT 5, Boston, MA',\n", " 'lat': 42.3523208,\n", " 'long': -71.1329925,\n", " 'prices': u'339,900',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '1.0',\n", " 'bedrooms': '1',\n", " 'graph_data_link': 'http://www.zillow.com/homedetails/43-Parkvale-Ave-APT-5-Boston-MA-02134/59088144_zpid/#charts-and-data',\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/43-Parkvale-Ave-APT-5-Boston-MA-02134/59088144_zpid/',\n", " 'home_size': '578',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': '08/31/2006',\n", " 'last_sold_price': '197000',\n", " 'latitude': '42.351999',\n", " 'longitude': '-71.133272',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/59088144_zpid/',\n", " 'property_size': '578',\n", " 'tax_value': '183100.0',\n", " 'tax_year': '2014',\n", " 'year_built': '1910',\n", " 'zestimate_amount': '343249',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '326087',\n", " 'zestimate_valuation_range_high': '363844',\n", " 'zestimate_value_change': None,\n", " 'zillow_id': '59088144'},\n", " 'zip': u'02134'},\n", " {'address': u'1391 Hyde Park Ave STE G, Boston, MA',\n", " 'lat': 42.2511409,\n", " 'long': -71.12602799999999,\n", " 'prices': u'399,500',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '1.0',\n", " 'bedrooms': '1',\n", " 'graph_data_link': 'http://www.zillow.com/homedetails/1391-Hyde-Park-Ave-STE-G-Boston-MA-02136/81855097_zpid/#charts-and-data',\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/1391-Hyde-Park-Ave-STE-G-Boston-MA-02136/81855097_zpid/',\n", " 'home_size': '1570',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': '03/17/2014',\n", " 'last_sold_price': '310000',\n", " 'latitude': '42.250944',\n", " 'longitude': '-71.125871',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/81855097_zpid/',\n", " 'property_size': '3484',\n", " 'tax_value': '450000.0',\n", " 'tax_year': '2014',\n", " 'year_built': '1950',\n", " 'zestimate_amount': '399390',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '343475',\n", " 'zestimate_valuation_range_high': '475274',\n", " 'zestimate_value_change': '-9890',\n", " 'zillow_id': '81855097'},\n", " 'zip': u'02136'},\n", " {'address': u'29 Brainerd Rd, Boston, MA',\n", " 'lat': 42.3486087,\n", " 'long': -71.131332,\n", " 'prices': u'549,000',\n", " 'status': u'For Sale by Owner',\n", " 'zillow': {'bathrooms': '1.0',\n", " 'bedrooms': '2',\n", " 'graph_data_link': None,\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/29-Brainerd-Rd-Boston-MA-02134/2097576158_zpid/',\n", " 'home_size': '850',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': None,\n", " 'last_sold_price': None,\n", " 'latitude': '42.34912',\n", " 'longitude': '-71.13047',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/2097576158_zpid/',\n", " 'property_size': None,\n", " 'tax_value': None,\n", " 'tax_year': None,\n", " 'year_built': '1904',\n", " 'zestimate_amount': '421220',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '391735',\n", " 'zestimate_valuation_range_high': '442281',\n", " 'zestimate_value_change': '13653',\n", " 'zillow_id': '2097576158'},\n", " 'zip': u'02134'},\n", " {'address': u'235 Victory Rd UNIT 235, Quincy, MA',\n", " 'lat': 42.299416,\n", " 'long': -71.044724,\n", " 'prices': u'769,000',\n", " 'status': u'Condo For Sale',\n", " 'zillow': {'bathrooms': '2.0',\n", " 'bedrooms': '2',\n", " 'graph_data_link': 'http://www.zillow.com/homedetails/235-Victory-Rd-UNIT-235-Quincy-MA-02171/56605009_zpid/#charts-and-data',\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/235-Victory-Rd-UNIT-235-Quincy-MA-02171/56605009_zpid/',\n", " 'home_size': '2286',\n", " 'home_type': 'Condominium',\n", " 'last_sold_date': '11/24/1999',\n", " 'last_sold_price': '474680',\n", " 'latitude': '42.299416',\n", " 'longitude': '-71.044724',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/56605009_zpid/',\n", " 'property_size': None,\n", " 'tax_value': '630200.0',\n", " 'tax_year': '2014',\n", " 'year_built': '1999',\n", " 'zestimate_amount': '787842',\n", " 'zestimate_last_updated': '11/16/2016',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': '748450',\n", " 'zestimate_valuation_range_high': '827234',\n", " 'zestimate_value_change': '6598',\n", " 'zillow_id': '56605009'},\n", " 'zip': u'02122'},\n", " {'address': u'209 Commonwealth Ave # PD, Boston, MA',\n", " 'lat': 42.351279,\n", " 'long': -71.081336,\n", " 'prices': u'799,000',\n", " 'status': u'Condo For Sale',\n", " 'zip': None},\n", " {'address': u'198-260 American Legion, Boston, MA',\n", " 'lat': 42.2945011,\n", " 'long': -71.0932254,\n", " 'prices': u'479,900',\n", " 'status': u'Apartment For Sale',\n", " 'zillow': {'bathrooms': '4.0',\n", " 'bedrooms': '6',\n", " 'graph_data_link': None,\n", " 'home_detail_link': 'http://www.zillow.com/homedetails/198-260-American-Legion-Boston-MA-02124/2096336314_zpid/',\n", " 'home_size': '2848',\n", " 'home_type': 'MultiFamily2To4',\n", " 'last_sold_date': None,\n", " 'last_sold_price': None,\n", " 'latitude': '42.293974',\n", " 'longitude': '-71.093611',\n", " 'map_this_home_link': 'http://www.zillow.com/homes/2096336314_zpid/',\n", " 'property_size': '4791',\n", " 'tax_value': None,\n", " 'tax_year': None,\n", " 'year_built': None,\n", " 'zestimate_amount': None,\n", " 'zestimate_last_updated': '12/31/1969',\n", " 'zestimate_percentile': '0',\n", " 'zestimate_valuationRange_low': None,\n", " 'zestimate_valuation_range_high': None,\n", " 'zestimate_value_change': None,\n", " 'zillow_id': '2096336314'},\n", " 'zip': u'02124'}]" ] }, "execution_count": 22, "metadata": {}, "output_type": "execute_result" } ], "source": [ "data" ] }, { "cell_type": "code", "execution_count": 17, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[{'status': u'Condo For Sale', 'zip': u'02127', 'long': -71.05405100000002, 'lat': 42.331281, 'address': u'321 Dorchester St # 1, Boston, MA', 'prices': u'849,000', 'zillow': {'tax_value': None, 'last_sold_price': None, 'property_size': None, 'zestimate_amount': '766086', 'bathrooms': '2.0', 'zestimate_valuation_range_high': '804390', 'tax_year': None, 'zestimate_value_change': None, 'latitude': '42.33145', 'zestimate_percentile': '0', 'bedrooms': '4', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '2096497652', 'last_sold_date': None, 'year_built': None, 'zestimate_valuationRange_low': '727782', 'graph_data_link': None, 'home_size': '1400', 'longitude': '-71.05343', 'map_this_home_link': 'http://www.zillow.com/homes/2096497652_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497652_zpid/'}}, {'status': u'House For Sale', 'zip': u'02125', 'long': -71.049533, 'lat': 42.312072, 'address': u'54 Grampian Way, Dorchester, MA', 'prices': u'899,000', 'zillow': {'tax_value': '499300.0', 'last_sold_price': '197000', 'property_size': '6534', 'zestimate_amount': '769671', 'bathrooms': '2.0', 'zestimate_valuation_range_high': '854335', 'tax_year': '2015', 'zestimate_value_change': '-24888', 'latitude': '42.312059', 'zestimate_percentile': '0', 'bedrooms': '5', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '59113320', 'last_sold_date': '12/11/1998', 'year_built': '1885', 'zestimate_valuationRange_low': '677310', 'graph_data_link': 'http://www.zillow.com/homedetails/54-Grampian-Way-Dorchester-MA-02125/59113320_zpid/#charts-and-data', 'home_size': '2423', 'longitude': '-71.049545', 'map_this_home_link': 'http://www.zillow.com/homes/59113320_zpid/', 'home_type': 'SingleFamily', 'home_detail_link': 'http://www.zillow.com/homedetails/54-Grampian-Way-Dorchester-MA-02125/59113320_zpid/'}}, {'status': u'House For Sale', 'zip': u'02132', 'long': -71.171084, 'lat': 42.277522, 'address': u'129 Gardner St, Boston, MA', 'prices': u'849,000', 'zillow': {'tax_value': None, 'last_sold_price': None, 'property_size': '6969', 'zestimate_amount': '858676', 'bathrooms': '3.0', 'zestimate_valuation_range_high': '1081932', 'tax_year': None, 'zestimate_value_change': None, 'latitude': '42.277522', 'zestimate_percentile': '0', 'bedrooms': '4', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '2096677074', 'last_sold_date': None, 'year_built': '2016', 'zestimate_valuationRange_low': '712701', 'graph_data_link': None, 'home_size': '2800', 'longitude': '-71.171084', 'map_this_home_link': 'http://www.zillow.com/homes/2096677074_zpid/', 'home_type': 'SingleFamily', 'home_detail_link': 'http://www.zillow.com/homedetails/129-Gardner-St-Boston-MA-02132/2096677074_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02130', 'long': -71.1162116, 'lat': 42.2920089, 'address': u'7-9 Herbertson # 2, Jamaica Plain, MA', 'prices': u'529,000', 'zillow': {'tax_value': None, 'last_sold_price': None, 'property_size': '9999', 'zestimate_amount': '594766', 'bathrooms': '2.0', 'zestimate_valuation_range_high': '773196', 'tax_year': None, 'zestimate_value_change': None, 'latitude': '42.292142', 'zestimate_percentile': '0', 'bedrooms': '3', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '2096675064', 'last_sold_date': None, 'year_built': '1925', 'zestimate_valuationRange_low': '463917', 'graph_data_link': None, 'home_size': '1260', 'longitude': '-71.116361', 'map_this_home_link': 'http://www.zillow.com/homes/2096675064_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/7-9-Herbertson-2-Jamaica-Plain-MA-02130/2096675064_zpid/'}}, {'status': u'House For Sale', 'zip': u'02132', 'long': -71.1544114, 'lat': 42.287886, 'address': u'31 Maple St, Boston, MA', 'prices': u'739,900', 'zillow': {'tax_value': '448800.0', 'last_sold_price': None, 'property_size': '4356', 'zestimate_amount': '715419', 'bathrooms': '2.0', 'zestimate_valuation_range_high': '765498', 'tax_year': '2014', 'zestimate_value_change': '1994', 'latitude': '42.287908', 'zestimate_percentile': '0', 'bedrooms': '3', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '59155302', 'last_sold_date': None, 'year_built': '1900', 'zestimate_valuationRange_low': '672494', 'graph_data_link': 'http://www.zillow.com/homedetails/31-Maple-St-Boston-MA-02132/59155302_zpid/#charts-and-data', 'home_size': '1847', 'longitude': '-71.154418', 'map_this_home_link': 'http://www.zillow.com/homes/59155302_zpid/', 'home_type': 'SingleFamily', 'home_detail_link': 'http://www.zillow.com/homedetails/31-Maple-St-Boston-MA-02132/59155302_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02118', 'long': -71.0814012, 'lat': 42.3394238, 'address': u'255 Northampton St UNIT 501, Boston, MA', 'prices': u'675,000', 'zillow': {'tax_value': '509100.0', 'last_sold_price': '475000', 'property_size': '1057', 'zestimate_amount': '781405', 'bathrooms': '1.0', 'zestimate_valuation_range_high': '820475', 'tax_year': '2014', 'zestimate_value_change': '-37736', 'latitude': '42.339385', 'zestimate_percentile': '0', 'bedrooms': '2', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '87796106', 'last_sold_date': '09/03/2010', 'year_built': '2006', 'zestimate_valuationRange_low': '742335', 'graph_data_link': 'http://www.zillow.com/homedetails/255-Northampton-St-UNIT-501-Boston-MA-02118/87796106_zpid/#charts-and-data', 'home_size': '1057', 'longitude': '-71.081382', 'map_this_home_link': 'http://www.zillow.com/homes/87796106_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/255-Northampton-St-UNIT-501-Boston-MA-02118/87796106_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02134', 'long': -71.1329925, 'lat': 42.3523208, 'address': u'43 Parkvale Ave APT 5, Boston, MA', 'prices': u'339,900', 'zillow': {'tax_value': '183100.0', 'last_sold_price': '197000', 'property_size': '578', 'zestimate_amount': '343167', 'bathrooms': '1.0', 'zestimate_valuation_range_high': '360325', 'tax_year': '2014', 'zestimate_value_change': None, 'latitude': '42.351999', 'zestimate_percentile': '0', 'bedrooms': '1', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '59088144', 'last_sold_date': '08/31/2006', 'year_built': '1910', 'zestimate_valuationRange_low': '326009', 'graph_data_link': 'http://www.zillow.com/homedetails/43-Parkvale-Ave-APT-5-Boston-MA-02134/59088144_zpid/#charts-and-data', 'home_size': '578', 'longitude': '-71.133272', 'map_this_home_link': 'http://www.zillow.com/homes/59088144_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/43-Parkvale-Ave-APT-5-Boston-MA-02134/59088144_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02124', 'long': -71.073962, 'lat': 42.287372, 'address': u'53 Torrey St # 2, Boston, MA', 'prices': u'339,000', 'zillow': {'tax_value': None, 'last_sold_price': None, 'property_size': None, 'zestimate_amount': '386079', 'bathrooms': '1.0', 'zestimate_valuation_range_high': '525067', 'tax_year': None, 'zestimate_value_change': None, 'latitude': '42.287284', 'zestimate_percentile': '0', 'bedrooms': '2', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '2096823174', 'last_sold_date': None, 'year_built': '1920', 'zestimate_valuationRange_low': '243230', 'graph_data_link': None, 'home_size': '1000', 'longitude': '-71.073818', 'map_this_home_link': 'http://www.zillow.com/homes/2096823174_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02122', 'long': -71.0522682, 'lat': 42.2952453, 'address': u'31 Houghton St # 2, Boston, MA', 'prices': u'479,000', 'zillow': {'tax_value': None, 'last_sold_price': None, 'property_size': None, 'zestimate_amount': '471752', 'bathrooms': '2.0', 'zestimate_valuation_range_high': '495340', 'tax_year': None, 'zestimate_value_change': None, 'latitude': '42.295265', 'zestimate_percentile': '0', 'bedrooms': '3', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '2096881020', 'last_sold_date': None, 'year_built': '1900', 'zestimate_valuationRange_low': '438729', 'graph_data_link': None, 'home_size': '1400', 'longitude': '-71.052066', 'map_this_home_link': 'http://www.zillow.com/homes/2096881020_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/31-Houghton-St-2-Boston-MA-02122/2096881020_zpid/'}}, {'status': u'House For Sale', 'zip': u'02124', 'long': -71.089551, 'lat': 42.2879239, 'address': u'10 Arbutus St, Dorchester Center, MA', 'prices': u'284,999', 'zillow': {'tax_value': '156300.0', 'last_sold_price': '192079', 'property_size': '2613', 'zestimate_amount': '279856', 'bathrooms': '2.0', 'zestimate_valuation_range_high': '316237', 'tax_year': '2014', 'zestimate_value_change': '3617', 'latitude': '42.287927', 'zestimate_percentile': '0', 'bedrooms': '3', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '59102139', 'last_sold_date': '09/19/2005', 'year_built': '1991', 'zestimate_valuationRange_low': '223885', 'graph_data_link': 'http://www.zillow.com/homedetails/10-Arbutus-St-Dorchester-Center-MA-02124/59102139_zpid/#charts-and-data', 'home_size': '1520', 'longitude': '-71.089552', 'map_this_home_link': 'http://www.zillow.com/homes/59102139_zpid/', 'home_type': 'SingleFamily', 'home_detail_link': 'http://www.zillow.com/homedetails/10-Arbutus-St-Dorchester-Center-MA-02124/59102139_zpid/'}}, {'status': u'House For Sale', 'zip': u'02121', 'long': -71.080952, 'lat': 42.296947, 'address': u'181 Glenway St, Dorchester, MA', 'prices': u'399,000', 'zillow': {'tax_value': '242000.0', 'last_sold_price': None, 'property_size': '5662', 'zestimate_amount': '443349', 'bathrooms': '1.0', 'zestimate_valuation_range_high': '478817', 'tax_year': '2015', 'zestimate_value_change': '1438', 'latitude': '42.296947', 'zestimate_percentile': '0', 'bedrooms': '5', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '59112097', 'last_sold_date': None, 'year_built': '1890', 'zestimate_valuationRange_low': '407881', 'graph_data_link': 'http://www.zillow.com/homedetails/181-Glenway-St-Dorchester-MA-02121/59112097_zpid/#charts-and-data', 'home_size': '2684', 'longitude': '-71.080952', 'map_this_home_link': 'http://www.zillow.com/homes/59112097_zpid/', 'home_type': 'SingleFamily', 'home_detail_link': 'http://www.zillow.com/homedetails/181-Glenway-St-Dorchester-MA-02121/59112097_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02124', 'long': -71.073962, 'lat': 42.287372, 'address': u'53 Torrey St # 3, Boston, MA', 'prices': u'345,000', 'zillow': {'tax_value': None, 'last_sold_price': None, 'property_size': None, 'zestimate_amount': '386079', 'bathrooms': '1.0', 'zestimate_valuation_range_high': '525067', 'tax_year': None, 'zestimate_value_change': None, 'latitude': '42.287282', 'zestimate_percentile': '0', 'bedrooms': '2', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '2096896512', 'last_sold_date': None, 'year_built': '1920', 'zestimate_valuationRange_low': '243230', 'graph_data_link': None, 'home_size': '1000', 'longitude': '-71.073797', 'map_this_home_link': 'http://www.zillow.com/homes/2096896512_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02116', 'long': -71.0795012, 'lat': 42.3536559, 'address': u'242 Beacon St APT 6, Boston, MA', 'prices': u'2,495,000', 'zillow': {'tax_value': '1783000.0', 'last_sold_price': '1325000', 'property_size': '2267', 'zestimate_amount': '2826114', 'bathrooms': '3.0', 'zestimate_valuation_range_high': '2995681', 'tax_year': '2014', 'zestimate_value_change': '-15887', 'latitude': '42.353794', 'zestimate_percentile': '0', 'bedrooms': '3', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '59170501', 'last_sold_date': '09/09/2009', 'year_built': '1884', 'zestimate_valuationRange_low': '2515241', 'graph_data_link': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/#charts-and-data', 'home_size': '2267', 'longitude': '-71.079593', 'map_this_home_link': 'http://www.zillow.com/homes/59170501_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02132', 'long': -71.1587218, 'lat': 42.2565786, 'address': u'23 Goethe St # 2, Boston, MA', 'prices': u'399,900', 'zillow': {'tax_value': None, 'last_sold_price': None, 'property_size': None, 'zestimate_amount': '427705', 'bathrooms': '2.0', 'zestimate_valuation_range_high': '449090', 'tax_year': None, 'zestimate_value_change': None, 'latitude': '42.256671', 'zestimate_percentile': '0', 'bedrooms': '3', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '2096807696', 'last_sold_date': None, 'year_built': '1940', 'zestimate_valuationRange_low': '406320', 'graph_data_link': None, 'home_size': '1370', 'longitude': '-71.158866', 'map_this_home_link': 'http://www.zillow.com/homes/2096807696_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/23-Goethe-St-2-Boston-MA-02132/2096807696_zpid/'}}, {'status': u'House For Sale', 'zip': u'02121', 'long': -71.08661099999999, 'lat': 42.3075847, 'address': u'100 Maple St, Boston, MA', 'prices': u'599,000', 'zillow': {'tax_value': '426577.0', 'last_sold_price': '3360981', 'property_size': '7157', 'zestimate_amount': '695582', 'bathrooms': None, 'zestimate_valuation_range_high': '758184', 'tax_year': '2015', 'zestimate_value_change': '-8713', 'latitude': '42.289875', 'zestimate_percentile': '0', 'bedrooms': None, 'zestimate_last_updated': '11/13/2016', 'zillow_id': '90139732', 'last_sold_date': '02/19/1992', 'year_built': '1925', 'zestimate_valuationRange_low': '605156', 'graph_data_link': 'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/#charts-and-data', 'home_size': '16857', 'longitude': '-71.156478', 'map_this_home_link': 'http://www.zillow.com/homes/90139732_zpid/', 'home_type': 'SingleFamily', 'home_detail_link': 'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02130', 'long': -71.11666129999999, 'lat': 42.3092487, 'address': u'801 Centre St # 3C, Boston, MA', 'prices': u'669,000', 'zillow': {'tax_value': None, 'last_sold_price': None, 'property_size': '1916', 'zestimate_amount': '817109', 'bathrooms': '2.0', 'zestimate_valuation_range_high': '857964', 'tax_year': None, 'zestimate_value_change': None, 'latitude': '42.30924', 'zestimate_percentile': '0', 'bedrooms': '3', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '2097055956', 'last_sold_date': None, 'year_built': '1899', 'zestimate_valuationRange_low': '776254', 'graph_data_link': None, 'home_size': '1916', 'longitude': '-71.1166', 'map_this_home_link': 'http://www.zillow.com/homes/2097055956_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/801-Centre-St-3C-Boston-MA-02130/2097055956_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02116', 'long': -71.0703915, 'lat': 42.3450221, 'address': u'505 Tremont St UNIT 417, Boston, MA', 'prices': u'1,540,000', 'zillow': {'tax_value': '1132500.0', 'last_sold_price': '1088000', 'property_size': '1364', 'zestimate_amount': '1677723', 'bathrooms': '2.0', 'zestimate_valuation_range_high': '1895827', 'tax_year': '2014', 'zestimate_value_change': '-21732', 'latitude': '42.345039', 'zestimate_percentile': '0', 'bedrooms': '1', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '67710271', 'last_sold_date': '05/30/2008', 'year_built': '2004', 'zestimate_valuationRange_low': '1593837', 'graph_data_link': 'http://www.zillow.com/homedetails/505-Tremont-St-UNIT-417-Boston-MA-02116/67710271_zpid/#charts-and-data', 'home_size': '1364', 'longitude': '-71.070299', 'map_this_home_link': 'http://www.zillow.com/homes/67710271_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/505-Tremont-St-UNIT-417-Boston-MA-02116/67710271_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02122', 'long': -71.0540671, 'lat': 42.284953, 'address': u'16 Chelmsford St UNIT 2, Dorchester, MA', 'prices': u'389,000', 'zillow': {'tax_value': '212600.0', 'last_sold_price': '261000', 'property_size': None, 'zestimate_amount': '382157', 'bathrooms': '1.0', 'zestimate_valuation_range_high': '401265', 'tax_year': '2014', 'zestimate_value_change': '6411', 'latitude': '42.28495', 'zestimate_percentile': '0', 'bedrooms': '2', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '81854555', 'last_sold_date': '07/11/2006', 'year_built': '1905', 'zestimate_valuationRange_low': '359228', 'graph_data_link': 'http://www.zillow.com/homedetails/16-Chelmsford-St-UNIT-2-Dorchester-MA-02122/81854555_zpid/#charts-and-data', 'home_size': '1061', 'longitude': '-71.054061', 'map_this_home_link': 'http://www.zillow.com/homes/81854555_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/16-Chelmsford-St-UNIT-2-Dorchester-MA-02122/81854555_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02136', 'long': -71.12602799999999, 'lat': 42.2511409, 'address': u'1391 Hyde Park Ave STE G, Boston, MA', 'prices': u'399,500', 'zillow': {'tax_value': '450000.0', 'last_sold_price': '310000', 'property_size': '3484', 'zestimate_amount': '399399', 'bathrooms': '1.0', 'zestimate_valuation_range_high': '451321', 'tax_year': '2014', 'zestimate_value_change': '-11855', 'latitude': '42.250944', 'zestimate_percentile': '0', 'bedrooms': '1', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '81855097', 'last_sold_date': '03/17/2014', 'year_built': '1950', 'zestimate_valuationRange_low': '331501', 'graph_data_link': 'http://www.zillow.com/homedetails/1391-Hyde-Park-Ave-STE-G-Boston-MA-02136/81855097_zpid/#charts-and-data', 'home_size': '1570', 'longitude': '-71.125871', 'map_this_home_link': 'http://www.zillow.com/homes/81855097_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/1391-Hyde-Park-Ave-STE-G-Boston-MA-02136/81855097_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02108', 'long': -71.05945, 'lat': 42.35631, 'address': u'1 Franklin St # 1601, Boston, MA', 'prices': u'1,300,000', 'zillow': {'tax_value': None, 'last_sold_price': '945000', 'property_size': None, 'zestimate_amount': '1175990', 'bathrooms': '1.0', 'zestimate_valuation_range_high': '1505267', 'tax_year': None, 'zestimate_value_change': None, 'latitude': '42.355785', 'zestimate_percentile': '0', 'bedrooms': '1', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '2097180167', 'last_sold_date': '09/15/2016', 'year_built': '2016', 'zestimate_valuationRange_low': '905512', 'graph_data_link': None, 'home_size': '923', 'longitude': '-71.059526', 'map_this_home_link': 'http://www.zillow.com/homes/2097180167_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02122', 'long': -71.0522963, 'lat': 42.295264, 'address': u'29 Houghton St # 1, Boston, MA', 'prices': u'479,000', 'zillow': {'tax_value': None, 'last_sold_price': None, 'property_size': None, 'zestimate_amount': '472970', 'bathrooms': '2.0', 'zestimate_valuation_range_high': '501348', 'tax_year': None, 'zestimate_value_change': None, 'latitude': '42.295223', 'zestimate_percentile': '0', 'bedrooms': '3', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '2096881071', 'last_sold_date': None, 'year_built': '1900', 'zestimate_valuationRange_low': '439862', 'graph_data_link': None, 'home_size': '1400', 'longitude': '-71.052345', 'map_this_home_link': 'http://www.zillow.com/homes/2096881071_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/29-Houghton-St-1-Boston-MA-02122/2096881071_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02127', 'long': -71.0559853, 'lat': 42.3314431, 'address': u'28 Woodward St # 1, Boston, MA', 'prices': u'875,000', 'zillow': {'tax_value': None, 'last_sold_price': None, 'property_size': None, 'zestimate_amount': '899230', 'bathrooms': '3.0', 'zestimate_valuation_range_high': '1115045', 'tax_year': None, 'zestimate_value_change': '-16799', 'latitude': '42.331474', 'zestimate_percentile': '0', 'bedrooms': '3', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '2107330626', 'last_sold_date': None, 'year_built': '2016', 'zestimate_valuationRange_low': '638453', 'graph_data_link': None, 'home_size': '1700', 'longitude': '-71.055931', 'map_this_home_link': 'http://www.zillow.com/homes/2107330626_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/28-Woodward-St-1-Boston-MA-02127/2107330626_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02131', 'long': -71.1230212, 'lat': 42.2919334, 'address': u'12 Mosgrove Ave, Boston, MA', 'prices': u'549,500', 'zillow': {'tax_value': '382100.0', 'last_sold_price': '250000', 'property_size': '5530', 'zestimate_amount': '621689', 'bathrooms': '2.0', 'zestimate_valuation_range_high': '652773', 'tax_year': '2014', 'zestimate_value_change': '-8247', 'latitude': '42.291848', 'zestimate_percentile': '0', 'bedrooms': '3', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '59144888', 'last_sold_date': '02/25/2015', 'year_built': '1901', 'zestimate_valuationRange_low': '590605', 'graph_data_link': 'http://www.zillow.com/homedetails/12-Mosgrove-Ave-Boston-MA-02131/59144888_zpid/#charts-and-data', 'home_size': '1950', 'longitude': '-71.123093', 'map_this_home_link': 'http://www.zillow.com/homes/59144888_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/12-Mosgrove-Ave-Boston-MA-02131/59144888_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02122', 'long': -71.0446874, 'lat': 42.2994295, 'address': u'235 Victory Rd UNIT 235, Quincy, MA', 'prices': u'769,000', 'zillow': {'tax_value': '630200.0', 'last_sold_price': '474680', 'property_size': None, 'zestimate_amount': '787387', 'bathrooms': '2.0', 'zestimate_valuation_range_high': '826756', 'tax_year': '2014', 'zestimate_value_change': '7114', 'latitude': '42.299416', 'zestimate_percentile': '0', 'bedrooms': '2', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '56605009', 'last_sold_date': '11/24/1999', 'year_built': '1999', 'zestimate_valuationRange_low': '748018', 'graph_data_link': 'http://www.zillow.com/homedetails/235-Victory-Rd-UNIT-235-Quincy-MA-02171/56605009_zpid/#charts-and-data', 'home_size': '2286', 'longitude': '-71.044724', 'map_this_home_link': 'http://www.zillow.com/homes/56605009_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/235-Victory-Rd-UNIT-235-Quincy-MA-02171/56605009_zpid/'}}, {'status': u'For Sale by Owner', 'zip': u'02134', 'long': -71.131332, 'lat': 42.3486087, 'address': u'29 Brainerd Rd, Boston, MA', 'prices': u'549,000', 'zillow': {'tax_value': None, 'last_sold_price': None, 'property_size': None, 'zestimate_amount': '420593', 'bathrooms': '1.0', 'zestimate_valuation_range_high': '454240', 'tax_year': None, 'zestimate_value_change': '15226', 'latitude': '42.34912', 'zestimate_percentile': '0', 'bedrooms': '2', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '2097576158', 'last_sold_date': None, 'year_built': '1904', 'zestimate_valuationRange_low': '365916', 'graph_data_link': None, 'home_size': '850', 'longitude': '-71.13047', 'map_this_home_link': 'http://www.zillow.com/homes/2097576158_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/29-Brainerd-Rd-Boston-MA-02134/2097576158_zpid/'}}, {'status': u'Townhouse For Sale', 'zip': u'02130', 'long': -71.1157648, 'lat': 42.3072151, 'address': u'5 Atwood Sq # 5, Boston, MA', 'prices': u'749,000', 'zillow': {'tax_value': None, 'last_sold_price': None, 'property_size': None, 'zestimate_amount': None, 'bathrooms': '2.5', 'zestimate_valuation_range_high': None, 'tax_year': None, 'zestimate_value_change': None, 'latitude': '42.307212', 'zestimate_percentile': '0', 'bedrooms': '3', 'zestimate_last_updated': '12/31/1969', 'zillow_id': '2096375498', 'last_sold_date': None, 'year_built': '2016', 'zestimate_valuationRange_low': None, 'graph_data_link': None, 'home_size': '1603', 'longitude': '-71.115613', 'map_this_home_link': 'http://www.zillow.com/homes/2096375498_zpid/', 'home_type': 'Townhouse', 'home_detail_link': 'http://www.zillow.com/homedetails/5-Atwood-Sq-5-Boston-MA-02130/2096375498_zpid/'}}, {'status': u'House For Sale', 'zip': u'02132', 'long': -71.165045, 'lat': 42.280911, 'address': u'60 Sanborn Ave, Boston, MA', 'prices': u'425,000', 'zillow': {'tax_value': '368900.0', 'last_sold_price': None, 'property_size': '5662', 'zestimate_amount': '491173', 'bathrooms': '2.0', 'zestimate_valuation_range_high': '530467', 'tax_year': '2014', 'zestimate_value_change': '-38910', 'latitude': '42.280911', 'zestimate_percentile': '0', 'bedrooms': '4', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '59158025', 'last_sold_date': None, 'year_built': '1925', 'zestimate_valuationRange_low': '442056', 'graph_data_link': 'http://www.zillow.com/homedetails/60-Sanborn-Ave-Boston-MA-02132/59158025_zpid/#charts-and-data', 'home_size': '1692', 'longitude': '-71.165045', 'map_this_home_link': 'http://www.zillow.com/homes/59158025_zpid/', 'home_type': 'SingleFamily', 'home_detail_link': 'http://www.zillow.com/homedetails/60-Sanborn-Ave-Boston-MA-02132/59158025_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02215', 'long': -71.1018938, 'lat': 42.34400429999999, 'address': u'188 Brookline Ave # 20-5, Boston, MA', 'prices': u'1,913,600', 'zillow': {'tax_value': None, 'last_sold_price': None, 'property_size': None, 'zestimate_amount': None, 'bathrooms': '2.0', 'zestimate_valuation_range_high': None, 'tax_year': None, 'zestimate_value_change': None, 'latitude': '42.343872', 'zestimate_percentile': '0', 'bedrooms': '2', 'zestimate_last_updated': '12/31/1969', 'zillow_id': '2096368520', 'last_sold_date': None, 'year_built': None, 'zestimate_valuationRange_low': None, 'graph_data_link': None, 'home_size': '1296', 'longitude': '-71.101933', 'map_this_home_link': 'http://www.zillow.com/homes/2096368520_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/188-Brookline-Ave-20-5-Boston-MA-02215/2096368520_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02128', 'long': -71.0369686, 'lat': 42.3754691, 'address': u'51 Bennington St # 1B, Boston, MA', 'prices': u'299,000', 'zillow': {'tax_value': None, 'last_sold_price': None, 'property_size': None, 'zestimate_amount': None, 'bathrooms': '1.0', 'zestimate_valuation_range_high': None, 'tax_year': None, 'zestimate_value_change': None, 'latitude': '42.375465', 'zestimate_percentile': '0', 'bedrooms': '2', 'zestimate_last_updated': '12/31/1969', 'zillow_id': '2096368919', 'last_sold_date': None, 'year_built': '2015', 'zestimate_valuationRange_low': None, 'graph_data_link': None, 'home_size': '850', 'longitude': '-71.036964', 'map_this_home_link': 'http://www.zillow.com/homes/2096368919_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/51-Bennington-St-1B-Boston-MA-02128/2096368919_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02128', 'long': -71.0369686, 'lat': 42.3754691, 'address': u'51 Bennington St # 2, Boston, MA', 'prices': u'424,900', 'zillow': {'tax_value': None, 'last_sold_price': None, 'property_size': None, 'zestimate_amount': None, 'bathrooms': '2.0', 'zestimate_valuation_range_high': None, 'tax_year': None, 'zestimate_value_change': None, 'latitude': '42.375465', 'zestimate_percentile': '0', 'bedrooms': '4', 'zestimate_last_updated': '12/31/1969', 'zillow_id': '2096368818', 'last_sold_date': None, 'year_built': '2016', 'zestimate_valuationRange_low': None, 'graph_data_link': None, 'home_size': '1225', 'longitude': '-71.036964', 'map_this_home_link': 'http://www.zillow.com/homes/2096368818_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/51-Bennington-St-2-Boston-MA-02128/2096368818_zpid/'}}, {'status': u'New Construction', 'zip': u'02127', 'long': -71.0542787, 'lat': 42.342376, 'address': u'45 W 3rd St # 410, Boston, MA', 'prices': u'1,195,000', 'zillow': {'tax_value': None, 'last_sold_price': None, 'property_size': None, 'zestimate_amount': None, 'bathrooms': '2.0', 'zestimate_valuation_range_high': None, 'tax_year': None, 'zestimate_value_change': None, 'latitude': '42.338717', 'zestimate_percentile': '0', 'bedrooms': '2', 'zestimate_last_updated': '12/31/1969', 'zillow_id': '2096367727', 'last_sold_date': None, 'year_built': None, 'zestimate_valuationRange_low': None, 'graph_data_link': None, 'home_size': '1250', 'longitude': '-71.048806', 'map_this_home_link': 'http://www.zillow.com/homes/2096367727_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/45-W-3rd-St-410-Boston-MA-02127/2096367727_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02111', 'long': -71.0592399, 'lat': 42.3526558, 'address': u'88 Kingston St UNIT 1F, Boston, MA', 'prices': u'825,000', 'zillow': {'tax_value': '532300.0', 'last_sold_price': '525000', 'property_size': None, 'zestimate_amount': '858774', 'bathrooms': '1.0', 'zestimate_valuation_range_high': '901713', 'tax_year': '2014', 'zestimate_value_change': '40090', 'latitude': '42.352627', 'zestimate_percentile': '0', 'bedrooms': '1', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '71546197', 'last_sold_date': '08/21/2013', 'year_built': '1899', 'zestimate_valuationRange_low': '815835', 'graph_data_link': 'http://www.zillow.com/homedetails/88-Kingston-St-UNIT-1F-Boston-MA-02111/71546197_zpid/#charts-and-data', 'home_size': '1051', 'longitude': '-71.059339', 'map_this_home_link': 'http://www.zillow.com/homes/71546197_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/88-Kingston-St-UNIT-1F-Boston-MA-02111/71546197_zpid/'}}, {'status': u'New Construction', 'zip': u'02127', 'long': -71.0542787, 'lat': 42.342376, 'address': u'45 W 3rd St # 401, Boston, MA', 'prices': u'735,000', 'zillow': {'tax_value': None, 'last_sold_price': None, 'property_size': None, 'zestimate_amount': None, 'bathrooms': '1.0', 'zestimate_valuation_range_high': None, 'tax_year': None, 'zestimate_value_change': None, 'latitude': '42.338717', 'zestimate_percentile': '0', 'bedrooms': '1', 'zestimate_last_updated': '12/31/1969', 'zillow_id': '2096367728', 'last_sold_date': None, 'year_built': None, 'zestimate_valuationRange_low': None, 'graph_data_link': None, 'home_size': '755', 'longitude': '-71.048806', 'map_this_home_link': 'http://www.zillow.com/homes/2096367728_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/45-W-3rd-St-401-Boston-MA-02127/2096367728_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02128', 'long': -71.0396313, 'lat': 42.375902, 'address': u'225 Border St, Boston, MA', 'prices': u'348,000', 'zillow': {'tax_value': None, 'last_sold_price': None, 'property_size': None, 'zestimate_amount': None, 'bathrooms': '1.0', 'zestimate_valuation_range_high': None, 'tax_year': None, 'zestimate_value_change': None, 'latitude': '42.375031', 'zestimate_percentile': '0', 'bedrooms': '0', 'zestimate_last_updated': '12/31/1969', 'zillow_id': '2096369134', 'last_sold_date': None, 'year_built': '2016', 'zestimate_valuationRange_low': None, 'graph_data_link': None, 'home_size': '450', 'longitude': '-71.040138', 'map_this_home_link': 'http://www.zillow.com/homes/2096369134_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/225-Border-St-Boston-MA-02128/2096369134_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02122', 'long': -71.0486505, 'lat': 42.288965, 'address': u'47 Coffey St # 0, Boston, MA', 'prices': u'799,000', 'zillow': {'tax_value': None, 'last_sold_price': None, 'property_size': None, 'zestimate_amount': None, 'bathrooms': '4.0', 'zestimate_valuation_range_high': None, 'tax_year': None, 'zestimate_value_change': None, 'latitude': '42.288834', 'zestimate_percentile': '0', 'bedrooms': '3', 'zestimate_last_updated': '12/31/1969', 'zillow_id': '2096363796', 'last_sold_date': None, 'year_built': None, 'zestimate_valuationRange_low': None, 'graph_data_link': None, 'home_size': '1800', 'longitude': '-71.049526', 'map_this_home_link': 'http://www.zillow.com/homes/2096363796_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/47-Coffey-St-0-Boston-MA-02122/2096363796_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02136', 'long': -71.1355445, 'lat': 42.2388897, 'address': u'32 Fleet St, Boston, MA', 'prices': u'499,999'}, {'status': u'Condo For Sale', 'zip': u'02119', 'long': -71.06856499999999, 'lat': 42.322304, 'address': u'31 Robey St # 31, Boston, MA', 'prices': u'549,900', 'zillow': {'tax_value': None, 'last_sold_price': None, 'property_size': None, 'zestimate_amount': None, 'bathrooms': '4.0', 'zestimate_valuation_range_high': None, 'tax_year': None, 'zestimate_value_change': None, 'latitude': '42.322406', 'zestimate_percentile': '0', 'bedrooms': '3', 'zestimate_last_updated': '12/31/1969', 'zillow_id': '2096376271', 'last_sold_date': None, 'year_built': '2016', 'zestimate_valuationRange_low': None, 'graph_data_link': None, 'home_size': '1700', 'longitude': '-71.06837', 'map_this_home_link': 'http://www.zillow.com/homes/2096376271_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/31-Robey-St-31-Boston-MA-02119/2096376271_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02128', 'long': -71.035687, 'lat': 42.374401, 'address': u'186-188 Paris St # 8, Boston, MA', 'prices': u'590,000', 'zillow': {'tax_value': None, 'last_sold_price': None, 'property_size': None, 'zestimate_amount': None, 'bathrooms': '2.0', 'zestimate_valuation_range_high': None, 'tax_year': None, 'zestimate_value_change': None, 'latitude': '42.374401', 'zestimate_percentile': '0', 'bedrooms': '2', 'zestimate_last_updated': '12/31/1969', 'zillow_id': '2096375497', 'last_sold_date': None, 'year_built': '2016', 'zestimate_valuationRange_low': None, 'graph_data_link': None, 'home_size': '991', 'longitude': '-71.03569', 'map_this_home_link': 'http://www.zillow.com/homes/2096375497_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/186-188-Paris-St-8-Boston-MA-02128/2096375497_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02119', 'long': -71.0919591, 'lat': 42.32003599999999, 'address': u'18 Brinton St UNIT 2, Roxbury, MA', 'prices': u'226,970', 'zillow': {'tax_value': '189600.0', 'last_sold_price': '141500', 'property_size': None, 'zestimate_amount': '213836', 'bathrooms': '2.0', 'zestimate_valuation_range_high': '248050', 'tax_year': '2014', 'zestimate_value_change': '-143626', 'latitude': '42.319999', 'zestimate_percentile': '0', 'bedrooms': '2', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '81856655', 'last_sold_date': '05/30/2007', 'year_built': '2006', 'zestimate_valuationRange_low': '181761', 'graph_data_link': 'http://www.zillow.com/homedetails/18-Brinton-St-UNIT-2-Roxbury-MA-02119/81856655_zpid/#charts-and-data', 'home_size': '1307', 'longitude': '-71.092124', 'map_this_home_link': 'http://www.zillow.com/homes/81856655_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/18-Brinton-St-UNIT-2-Roxbury-MA-02119/81856655_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02116', 'long': -71.0768204, 'lat': 42.3519146, 'address': u'118 Commonwealth Ave UNIT 4, Boston, MA', 'prices': u'999,000', 'zillow': {'tax_value': '755200.0', 'last_sold_price': '277000', 'property_size': None, 'zestimate_amount': '1051096', 'bathrooms': '2.0', 'zestimate_valuation_range_high': '1156206', 'tax_year': '2015', 'zestimate_value_change': '-61636', 'latitude': '42.352174', 'zestimate_percentile': '0', 'bedrooms': '1', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '59176559', 'last_sold_date': '09/01/1987', 'year_built': '1885', 'zestimate_valuationRange_low': '956497', 'graph_data_link': 'http://www.zillow.com/homedetails/118-Commonwealth-Ave-UNIT-4-Boston-MA-02116/59176559_zpid/#charts-and-data', 'home_size': '1010', 'longitude': '-71.076304', 'map_this_home_link': 'http://www.zillow.com/homes/59176559_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/118-Commonwealth-Ave-UNIT-4-Boston-MA-02116/59176559_zpid/'}}, {'status': u'New Construction', 'zip': u'02127', 'long': -71.0542787, 'lat': 42.342376, 'address': u'45 W 3rd St # 418, Boston, MA', 'prices': u'730,000', 'zillow': {'tax_value': None, 'last_sold_price': None, 'property_size': None, 'zestimate_amount': None, 'bathrooms': '1.0', 'zestimate_valuation_range_high': None, 'tax_year': None, 'zestimate_value_change': None, 'latitude': '42.338717', 'zestimate_percentile': '0', 'bedrooms': '1', 'zestimate_last_updated': '12/31/1969', 'zillow_id': '2096367726', 'last_sold_date': None, 'year_built': None, 'zestimate_valuationRange_low': None, 'graph_data_link': None, 'home_size': '774', 'longitude': '-71.048806', 'map_this_home_link': 'http://www.zillow.com/homes/2096367726_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/45-W-3rd-St-418-Boston-MA-02127/2096367726_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02119', 'long': -71.06856499999999, 'lat': 42.322304, 'address': u'29 Robey St # 29, Boston, MA', 'prices': u'549,900', 'zillow': {'tax_value': None, 'last_sold_price': None, 'property_size': None, 'zestimate_amount': None, 'bathrooms': '4.0', 'zestimate_valuation_range_high': None, 'tax_year': None, 'zestimate_value_change': None, 'latitude': '42.322303', 'zestimate_percentile': '0', 'bedrooms': '3', 'zestimate_last_updated': '12/31/1969', 'zillow_id': '2096376272', 'last_sold_date': None, 'year_built': '2016', 'zestimate_valuationRange_low': None, 'graph_data_link': None, 'home_size': '1700', 'longitude': '-71.068565', 'map_this_home_link': 'http://www.zillow.com/homes/2096376272_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/29-Robey-St-29-Boston-MA-02119/2096376272_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02127', 'long': -71.039051, 'lat': 42.33155379999999, 'address': u'560 E 8th St UNIT 1, South Boston, MA', 'prices': u'629,000', 'zillow': {'tax_value': '437500.0', 'last_sold_price': '400000', 'property_size': '1012', 'zestimate_amount': '632419', 'bathrooms': '2.0', 'zestimate_valuation_range_high': '664040', 'tax_year': '2015', 'zestimate_value_change': '5690', 'latitude': '42.331554', 'zestimate_percentile': '0', 'bedrooms': '2', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '81857241', 'last_sold_date': '09/11/2009', 'year_built': '1890', 'zestimate_valuationRange_low': '594474', 'graph_data_link': 'http://www.zillow.com/homedetails/560-E-8th-St-UNIT-1-South-Boston-MA-02127/81857241_zpid/#charts-and-data', 'home_size': '1012', 'longitude': '-71.039063', 'map_this_home_link': 'http://www.zillow.com/homes/81857241_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/560-E-8th-St-UNIT-1-South-Boston-MA-02127/81857241_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02111', 'long': -71.0625369, 'lat': 42.3532598, 'address': u'1 Avery St APT 23D, Boston, MA', 'prices': u'2,600,000', 'zillow': {'tax_value': '1709657.0', 'last_sold_price': '1800000', 'property_size': '2036', 'zestimate_amount': '2756938', 'bathrooms': '3.0', 'zestimate_valuation_range_high': '2894785', 'tax_year': '2014', 'zestimate_value_change': '-65659', 'latitude': '42.353277', 'zestimate_percentile': '0', 'bedrooms': '3', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '61319763', 'last_sold_date': '10/07/2009', 'year_built': '2000', 'zestimate_valuationRange_low': '2619091', 'graph_data_link': 'http://www.zillow.com/homedetails/1-Avery-St-APT-23D-Boston-MA-02111/61319763_zpid/#charts-and-data', 'home_size': '2036', 'longitude': '-71.062724', 'map_this_home_link': 'http://www.zillow.com/homes/61319763_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/1-Avery-St-APT-23D-Boston-MA-02111/61319763_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02108', 'long': -71.0599532, 'lat': 42.35728160000001, 'address': u'45 Province St APT 2502, Boston, MA', 'prices': u'4,499,000', 'zillow': {'tax_value': '3148923.0', 'last_sold_price': '3999000', 'property_size': None, 'zestimate_amount': '5172338', 'bathrooms': '4.0', 'zestimate_valuation_range_high': '5430955', 'tax_year': '2014', 'zestimate_value_change': '35362', 'latitude': '42.357031', 'zestimate_percentile': '0', 'bedrooms': '3', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '102987538', 'last_sold_date': '08/16/2013', 'year_built': '2009', 'zestimate_valuationRange_low': '4913721', 'graph_data_link': 'http://www.zillow.com/homedetails/45-Province-St-APT-2502-Boston-MA-02108/102987538_zpid/#charts-and-data', 'home_size': '2872', 'longitude': '-71.059969', 'map_this_home_link': 'http://www.zillow.com/homes/102987538_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/45-Province-St-APT-2502-Boston-MA-02108/102987538_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02110', 'long': -71.0504859, 'lat': 42.3576699, 'address': u'65 E India Row APT 26G, Boston, MA', 'prices': u'839,000', 'zillow': {'tax_value': '603977.0', 'last_sold_price': '379000', 'property_size': None, 'zestimate_amount': '837356', 'bathrooms': '1.0', 'zestimate_valuation_range_high': '904344', 'tax_year': '2014', 'zestimate_value_change': '-27737', 'latitude': '42.35792', 'zestimate_percentile': '0', 'bedrooms': '1', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '59175134', 'last_sold_date': '11/29/2007', 'year_built': '1970', 'zestimate_valuationRange_low': '761994', 'graph_data_link': 'http://www.zillow.com/homedetails/65-E-India-Row-APT-26G-Boston-MA-02110/59175134_zpid/#charts-and-data', 'home_size': '974', 'longitude': '-71.050708', 'map_this_home_link': 'http://www.zillow.com/homes/59175134_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/65-E-India-Row-APT-26G-Boston-MA-02110/59175134_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02128', 'long': -71.0387459, 'lat': 42.38017929999999, 'address': u'13 Marion St APT F, Boston, MA', 'prices': u'299,000', 'zillow': {'tax_value': '215600.0', 'last_sold_price': '240000', 'property_size': None, 'zestimate_amount': '304090', 'bathrooms': '3.0', 'zestimate_valuation_range_high': '322335', 'tax_year': '2015', 'zestimate_value_change': '14594', 'latitude': '42.286727', 'zestimate_percentile': '0', 'bedrooms': '3', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '59141173', 'last_sold_date': '03/01/2004', 'year_built': '1987', 'zestimate_valuationRange_low': '279763', 'graph_data_link': 'http://www.zillow.com/homedetails/13-Marion-St-APT-F-Boston-MA-02131/59141173_zpid/#charts-and-data', 'home_size': '1729', 'longitude': '-71.12046', 'map_this_home_link': 'http://www.zillow.com/homes/59141173_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/13-Marion-St-APT-F-Boston-MA-02131/59141173_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02131', 'long': -71.13943499999999, 'lat': 42.2894549, 'address': u'57 Bradfield Ave, Boston, MA', 'prices': u'499,900', 'zillow': {'tax_value': None, 'last_sold_price': None, 'property_size': '4791', 'zestimate_amount': '524347', 'bathrooms': '2.0', 'zestimate_valuation_range_high': '550564', 'tax_year': None, 'zestimate_value_change': '7465', 'latitude': '42.289455', 'zestimate_percentile': '0', 'bedrooms': '3', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '2122703759', 'last_sold_date': None, 'year_built': '1910', 'zestimate_valuationRange_low': '498130', 'graph_data_link': None, 'home_size': '1887', 'longitude': '-71.139434', 'map_this_home_link': 'http://www.zillow.com/homes/2122703759_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/57-Bradfield-Ave-Boston-MA-02131/2122703759_zpid/'}}, {'status': u'Apartment For Sale', 'zip': u'02128', 'long': -71.030238, 'lat': 42.380671, 'address': u'266 Lexington St, Boston, MA', 'prices': u'1,200,000', 'zillow': {'tax_value': '233600.0', 'last_sold_price': '355000', 'property_size': '2613', 'zestimate_amount': '537672', 'bathrooms': '3.0', 'zestimate_valuation_range_high': '629076', 'tax_year': '2014', 'zestimate_value_change': '76089', 'latitude': '42.380672', 'zestimate_percentile': '0', 'bedrooms': '6', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '59122072', 'last_sold_date': '06/24/2016', 'year_built': '1930', 'zestimate_valuationRange_low': '430138', 'graph_data_link': 'http://www.zillow.com/homedetails/266-Lexington-St-Boston-MA-02128/59122072_zpid/#charts-and-data', 'home_size': '2310', 'longitude': '-71.030238', 'map_this_home_link': 'http://www.zillow.com/homes/59122072_zpid/', 'home_type': 'MultiFamily2To4', 'home_detail_link': 'http://www.zillow.com/homedetails/266-Lexington-St-Boston-MA-02128/59122072_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02131', 'long': -71.13943499999999, 'lat': 42.2894549, 'address': u'57 Bradfield Ave UNIT 2, Boston, MA', 'prices': u'499,900', 'zillow': {'tax_value': '288700.0', 'last_sold_price': '380000', 'property_size': '4791', 'zestimate_amount': '507383', 'bathrooms': '2.0', 'zestimate_valuation_range_high': '537826', 'tax_year': '2014', 'zestimate_value_change': '64745', 'latitude': '42.289455', 'zestimate_percentile': '0', 'bedrooms': '3', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '81859724', 'last_sold_date': '12/14/2006', 'year_built': '1910', 'zestimate_valuationRange_low': '466792', 'graph_data_link': 'http://www.zillow.com/homedetails/57-Bradfield-Ave-UNIT-2-Boston-MA-02131/81859724_zpid/#charts-and-data', 'home_size': '1887', 'longitude': '-71.139434', 'map_this_home_link': 'http://www.zillow.com/homes/81859724_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/57-Bradfield-Ave-UNIT-2-Boston-MA-02131/81859724_zpid/'}}, {'status': u'Apartment For Sale', 'zip': u'02116', 'long': -71.081757, 'lat': 42.352286, 'address': u'237 Marlborough St, Boston, MA', 'prices': u'4,900,000', 'zillow': {'tax_value': None, 'last_sold_price': None, 'property_size': '1742', 'zestimate_amount': None, 'bathrooms': None, 'zestimate_valuation_range_high': None, 'tax_year': None, 'zestimate_value_change': None, 'latitude': '42.352287', 'zestimate_percentile': '0', 'bedrooms': '0', 'zestimate_last_updated': '12/31/1969', 'zillow_id': '2096359832', 'last_sold_date': None, 'year_built': '1899', 'zestimate_valuationRange_low': None, 'graph_data_link': None, 'home_size': '5640', 'longitude': '-71.081756', 'map_this_home_link': 'http://www.zillow.com/homes/2096359832_zpid/', 'home_type': 'MultiFamily2To4', 'home_detail_link': 'http://www.zillow.com/homedetails/237-Marlborough-St-Boston-MA-02116/2096359832_zpid/'}}, {'status': u'Condo For Sale', 'zip': u'02121', 'long': -71.0808349, 'lat': 42.314193, 'address': u'35 Holborn St # 35R, Dorchester, MA', 'prices': u'899,000', 'zillow': {'tax_value': '337700.0', 'last_sold_price': '473000', 'property_size': '6534', 'zestimate_amount': '820016', 'bathrooms': '3.0', 'zestimate_valuation_range_high': '861017', 'tax_year': '2014', 'zestimate_value_change': '217279', 'latitude': '42.314193', 'zestimate_percentile': '0', 'bedrooms': '10', 'zestimate_last_updated': '11/13/2016', 'zillow_id': '59111377', 'last_sold_date': '02/01/2016', 'year_built': '1890', 'zestimate_valuationRange_low': '754415', 'graph_data_link': 'http://www.zillow.com/homedetails/35-Holborn-St-35R-Dorchester-MA-02121/59111377_zpid/#charts-and-data', 'home_size': '3500', 'longitude': '-71.080835', 'map_this_home_link': 'http://www.zillow.com/homes/59111377_zpid/', 'home_type': 'Condominium', 'home_detail_link': 'http://www.zillow.com/homedetails/35-Holborn-St-35R-Dorchester-MA-02121/59111377_zpid/'}}]\n" ] } ], "source": [ "print data" ] }, { "cell_type": "code", "execution_count": 30, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "the number of data is 25\n", "the number of null is 1\n" ] } ], "source": [ "countTotal = 0\n", "countNone = 0\n", "for i in data:\n", " if (i['zip'] == None):\n", " countNone += 1\n", " else:\n", " countTotal += 1\n", "print 'the number of data is', countTotal\n", "print 'the number of null is', countNone" ] }, { "cell_type": "markdown", "metadata": { "collapsed": true }, "source": [ "Finally, we get the untimate data as a form of Json for web based data visualization and CSV for training models." ] }, { "cell_type": "code", "execution_count": 31, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "done\n" ] } ], "source": [ "def SaveJson(path, data): # \"source\\\\K-town_streetviews.json\"\n", " with open(path, 'w') as f:\n", "# f.write(json.dumps(data, indent=4, ensure_ascii=False, encoding=\"latin1\"))\n", " f.write(json.dumps(data, indent=4, encoding=\"latin1\"))\n", " f.close()\n", "def GetPandasFromDict(d):\n", " return pd.DataFrame.from_dict(d)\n", "def GetDictFromPandas(d):\n", " return pd.DataFrame.to_dict(d)\n", "\n", "data = d\n", "thePd = GetPandasFromDict(data)\n", "theDict = GetDictFromPandas(thePd)\n", "\n", "# SaveJson(\"HousingPriceFromWebTestWithProperties.json\",data)\n", "\n", "print \"done\"" ] }, { "cell_type": "markdown", "metadata": { "collapsed": true }, "source": [ "### /////////////////////////////////////////////////////////////////// done " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### (this is for the additional data)" ] }, { "cell_type": "code", "execution_count": 58, "metadata": { "collapsed": false }, "outputs": [], "source": [ "def OpenJson(path):\n", " json_file = open(path , 'r')\n", " json_str = json_file.read()\n", " json_data = json.loads(json_str)\n", " return json_data\n", "def SaveJson(path, data): \n", " with open(path, 'w') as f:\n", " f.write(json.dumps(data, indent=4, encoding=\"latin1\"))\n", " f.close()\n", " print \"done for save\"\n", "\n" ] }, { "cell_type": "code", "execution_count": 59, "metadata": { "collapsed": false }, "outputs": [], "source": [ "d = OpenJson(\"HousingPriceFromWeb.json\")\n", "count = 0;\n", "total = len(d);\n", "for i in range(len(d)):\n", " try:\n", " theZip = d[i]['zip']\n", " theAddress = d[i]['address']\n", " theID = d[i]['zillow']['zillow_id']\n", " d[i]['property'] = GetresultProperty_UpdatedPropertyDetails(theID, theAddress, theZip)\n", " except:\n", " pass\n", " print (count / total) * 100.0 , \" % ...\" \n", " count += 1" ] }, { "cell_type": "code", "execution_count": 61, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[{u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.05405100000002, u'prices': u'849,000', u'address': u'321 Dorchester St # 1, Boston, MA', u'lat': 42.331281, 'property': {'neighborhood': None, 'bathrooms': '2.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': '321 Dorchester Street is a boutique luxury development in the heart of South Boston. These floor-through condominiums feature high end kitchens with Carrera marble tops, Samsung appliances and ample storage. Each residence offers 4 bedrooms, 2 bathrooms and access to the common roof deck with a panoramic Boston skyline views.', 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497652_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '4', 'latitude': '42.33145', 'zillow_id': '2096497652', 'basement': None, 'year_built': None, 'home_size': '1400', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497652_zpid/', 'home_info': 'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497652_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'766387', u'tax_value': None, u'zestimate_valuation_range_high': u'804706', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.33145', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096497652', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'728068', u'graph_data_link': None, u'home_size': u'1400', u'longitude': u'-71.05343', u'map_this_home_link': u'http://www.zillow.com/homes/2096497652_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497652_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02125', u'long': -71.049533, u'prices': u'899,000', u'address': u'54 Grampian Way, Dorchester, MA', u'lat': 42.312072, u'zillow': {u'property_size': u'6534', u'bathrooms': u'2.0', u'last_sold_price': u'197000', u'zestimate_amount': u'769717', u'tax_value': u'499300.0', u'zestimate_valuation_range_high': u'877477', u'tax_year': u'2015', u'zestimate_value_change': u'-25499', u'latitude': u'42.312059', u'zestimate_percentile': u'0', u'bedrooms': u'5', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59113320', u'last_sold_date': u'12/11/1998', u'year_built': u'1885', u'zestimate_valuationRange_low': u'692745', u'graph_data_link': u'http://www.zillow.com/homedetails/54-Grampian-Way-Dorchester-MA-02125/59113320_zpid/#charts-and-data', u'home_size': u'2423', u'longitude': u'-71.049545', u'map_this_home_link': u'http://www.zillow.com/homes/59113320_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/54-Grampian-Way-Dorchester-MA-02125/59113320_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.171084, u'prices': u'849,000', u'address': u'129 Gardner St, Boston, MA', u'lat': 42.277522, u'zillow': {u'property_size': u'6969', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'858867', u'tax_value': None, u'zestimate_valuation_range_high': u'1039229', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.277522', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096677074', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'695682', u'graph_data_link': None, u'home_size': u'2800', u'longitude': u'-71.171084', u'map_this_home_link': u'http://www.zillow.com/homes/2096677074_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/129-Gardner-St-Boston-MA-02132/2096677074_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.1162116, u'prices': u'529,000', u'address': u'7-9 Herbertson # 2, Jamaica Plain, MA', u'lat': 42.2920089, u'zillow': {u'property_size': u'9999', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'595133', u'tax_value': None, u'zestimate_valuation_range_high': u'761770', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.292142', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096675064', u'last_sold_date': None, u'year_built': u'1925', u'zestimate_valuationRange_low': u'458252', u'graph_data_link': None, u'home_size': u'1260', u'longitude': u'-71.116361', u'map_this_home_link': u'http://www.zillow.com/homes/2096675064_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/7-9-Herbertson-2-Jamaica-Plain-MA-02130/2096675064_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.1544114, u'prices': u'739,900', u'address': u'31 Maple St, Boston, MA', u'lat': 42.287886, u'zillow': {u'property_size': u'4356', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'715295', u'tax_value': u'448800.0', u'zestimate_valuation_range_high': u'765366', u'tax_year': u'2014', u'zestimate_value_change': u'1927', u'latitude': u'42.287908', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59155302', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'665224', u'graph_data_link': u'http://www.zillow.com/homedetails/31-Maple-St-Boston-MA-02132/59155302_zpid/#charts-and-data', u'home_size': u'1847', u'longitude': u'-71.154418', u'map_this_home_link': u'http://www.zillow.com/homes/59155302_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/31-Maple-St-Boston-MA-02132/59155302_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.0814012, u'prices': u'675,000', u'address': u'255 Northampton St UNIT 501, Boston, MA', u'lat': 42.3394238, u'zillow': {u'property_size': u'1057', u'bathrooms': u'1.0', u'last_sold_price': u'475000', u'zestimate_amount': u'782221', u'tax_value': u'509100.0', u'zestimate_valuation_range_high': u'821332', u'tax_year': u'2014', u'zestimate_value_change': u'-38684', u'latitude': u'42.339385', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'87796106', u'last_sold_date': u'09/03/2010', u'year_built': u'2006', u'zestimate_valuationRange_low': u'743110', u'graph_data_link': u'http://www.zillow.com/homedetails/255-Northampton-St-UNIT-501-Boston-MA-02118/87796106_zpid/#charts-and-data', u'home_size': u'1057', u'longitude': u'-71.081382', u'map_this_home_link': u'http://www.zillow.com/homes/87796106_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/255-Northampton-St-UNIT-501-Boston-MA-02118/87796106_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02134', u'long': -71.1329925, u'prices': u'339,900', u'address': u'43 Parkvale Ave APT 5, Boston, MA', u'lat': 42.3523208, u'zillow': {u'property_size': u'578', u'bathrooms': u'1.0', u'last_sold_price': u'197000', u'zestimate_amount': u'343185', u'tax_value': u'183100.0', u'zestimate_valuation_range_high': u'360344', u'tax_year': u'2014', u'zestimate_value_change': None, u'latitude': u'42.351999', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59088144', u'last_sold_date': u'08/31/2006', u'year_built': u'1910', u'zestimate_valuationRange_low': u'326026', u'graph_data_link': u'http://www.zillow.com/homedetails/43-Parkvale-Ave-APT-5-Boston-MA-02134/59088144_zpid/#charts-and-data', u'home_size': u'578', u'longitude': u'-71.133272', u'map_this_home_link': u'http://www.zillow.com/homes/59088144_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/43-Parkvale-Ave-APT-5-Boston-MA-02134/59088144_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'339,000', u'address': u'53 Torrey St # 2, Boston, MA', u'lat': 42.287372, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'New renovation an easy walk to both the Ashmont and Shawmut stops on the red line. This penthouse unit features an open floor plan with oak floors, granite countertops, breakfast bar and stainless steel appliances. Central air and washer dryer hookups as well as storage are included. Private front and back decks as well as a common driveway and large fenced yard all add to the charm. New windows all around a newly renovated exterior, a good deal of new plumbing and wiring with a newer roof make this property an excellent value and an ideal starter home.\\n\\nFirst open house this Sunday 10/9 from 12:00 to 1pm.', 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': '2016', 'bedrooms': '2', 'latitude': '42.287284', 'zillow_id': '2096823174', 'basement': None, 'year_built': '1920', 'home_size': '1000', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/', 'home_info': 'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'386209', u'tax_value': None, u'zestimate_valuation_range_high': u'544555', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.287284', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096823174', u'last_sold_date': None, u'year_built': u'1920', u'zestimate_valuationRange_low': u'254898', u'graph_data_link': None, u'home_size': u'1000', u'longitude': u'-71.073818', u'map_this_home_link': u'http://www.zillow.com/homes/2096823174_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0522682, u'prices': u'479,000', u'address': u'31 Houghton St # 2, Boston, MA', u'lat': 42.2952453, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'471644', u'tax_value': None, u'zestimate_valuation_range_high': u'499943', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.295265', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096881020', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'438629', u'graph_data_link': None, u'home_size': u'1400', u'longitude': u'-71.052066', u'map_this_home_link': u'http://www.zillow.com/homes/2096881020_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/31-Houghton-St-2-Boston-MA-02122/2096881020_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02124', u'long': -71.089551, u'prices': u'284,999', u'address': u'10 Arbutus St, Dorchester Center, MA', u'lat': 42.2879239, u'zillow': {u'property_size': u'2613', u'bathrooms': u'2.0', u'last_sold_price': u'192079', u'zestimate_amount': u'280016', u'tax_value': u'156300.0', u'zestimate_valuation_range_high': u'305217', u'tax_year': u'2014', u'zestimate_value_change': u'4024', u'latitude': u'42.287927', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59102139', u'last_sold_date': u'09/19/2005', u'year_built': u'1991', u'zestimate_valuationRange_low': u'252014', u'graph_data_link': u'http://www.zillow.com/homedetails/10-Arbutus-St-Dorchester-Center-MA-02124/59102139_zpid/#charts-and-data', u'home_size': u'1520', u'longitude': u'-71.089552', u'map_this_home_link': u'http://www.zillow.com/homes/59102139_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/10-Arbutus-St-Dorchester-Center-MA-02124/59102139_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.080952, u'prices': u'399,000', u'address': u'181 Glenway St, Dorchester, MA', u'lat': 42.296947, u'zillow': {u'property_size': u'5662', u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'443293', u'tax_value': u'242000.0', u'zestimate_valuation_range_high': u'469891', u'tax_year': u'2015', u'zestimate_value_change': u'1434', u'latitude': u'42.296947', u'zestimate_percentile': u'0', u'bedrooms': u'5', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59112097', u'last_sold_date': None, u'year_built': u'1890', u'zestimate_valuationRange_low': u'407830', u'graph_data_link': u'http://www.zillow.com/homedetails/181-Glenway-St-Dorchester-MA-02121/59112097_zpid/#charts-and-data', u'home_size': u'2684', u'longitude': u'-71.080952', u'map_this_home_link': u'http://www.zillow.com/homes/59112097_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/181-Glenway-St-Dorchester-MA-02121/59112097_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'345,000', u'address': u'53 Torrey St # 3, Boston, MA', u'lat': 42.287372, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'New renovation an easy walk to both the Ashmont and Shawmut stops on the red line. This penthouse unit features an open floor plan with oak floors, granite countertops, breakfast bar and stainless steel appliances. Central air and washer dryer hookups as well as storage are included. Private front and back decks as well as a common driveway and large fenced yard all add to the charm. New windows all around a newly renovated exterior, a good deal of new plumbing and wiring with a newer roof make this property an excellent value and an ideal starter home.', 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': '2016', 'bedrooms': '2', 'latitude': '42.287282', 'zillow_id': '2096896512', 'basement': None, 'year_built': '1920', 'home_size': '1000', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/', 'home_info': 'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'386209', u'tax_value': None, u'zestimate_valuation_range_high': u'544555', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.287282', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096896512', u'last_sold_date': None, u'year_built': u'1920', u'zestimate_valuationRange_low': u'254898', u'graph_data_link': None, u'home_size': u'1000', u'longitude': u'-71.073797', u'map_this_home_link': u'http://www.zillow.com/homes/2096896512_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0795012, u'prices': u'2,495,000', u'address': u'242 Beacon St APT 6, Boston, MA', u'lat': 42.3536559, 'property': {'neighborhood': 'Back Bay', 'bathrooms': '3.0', 'school_district': None, 'heating_sources': 'Other', 'rooms': 'Dining room, Family room, Laundry room, Master bath', 'home_description': 'Waterside renovated three bedroom, two and a half bathroom floor-through condominium. Direct elevator access. Exceptionally well laid-out home featuring a grand living room with fireplace and bow window overlooking the Charles River Esplanade. Large galley offers a breakfast bar and sliding doors to the balcony. Elegant master bedroom suite boasts a bow window and marble fireplace. Central air-conditioning, new bathrooms, well-sized second and third bedrooms. Excellent closet space and ceiling height throughout. Association parking with direct access. 1 Year pre-paid parking will be offered with the sale. Well maintained brownstone that just completed a total restoration. Any idyllic Boston home! ', 'property_size': '2267', 'num_floors': '1', 'heating_system': 'Other', 'photo_gallery': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood', 'year_updated': '2007', 'bedrooms': '3', 'latitude': '42.353794', 'zillow_id': '59170501', 'basement': 'None', 'year_built': '1884', 'home_size': '2267', 'roof': None, 'view': 'City, Water', 'home_type': 'Condominium', 'parking_type': 'Off-street, On-street', 'home_detail_link': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/', 'home_info': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/'}, u'zillow': {u'property_size': u'2267', u'bathrooms': u'3.0', u'last_sold_price': u'1325000', u'zestimate_amount': u'2826169', u'tax_value': u'1783000.0', u'zestimate_valuation_range_high': u'2995739', u'tax_year': u'2014', u'zestimate_value_change': u'-16709', u'latitude': u'42.353794', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59170501', u'last_sold_date': u'09/09/2009', u'year_built': u'1884', u'zestimate_valuationRange_low': u'2628337', u'graph_data_link': u'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/#charts-and-data', u'home_size': u'2267', u'longitude': u'-71.079593', u'map_this_home_link': u'http://www.zillow.com/homes/59170501_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02132', u'long': -71.1587218, u'prices': u'399,900', u'address': u'23 Goethe St # 2, Boston, MA', u'lat': 42.2565786, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'427574', u'tax_value': None, u'zestimate_valuation_range_high': u'448953', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.256671', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096807696', u'last_sold_date': None, u'year_built': u'1940', u'zestimate_valuationRange_low': u'401920', u'graph_data_link': None, u'home_size': u'1370', u'longitude': u'-71.158866', u'map_this_home_link': u'http://www.zillow.com/homes/2096807696_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/23-Goethe-St-2-Boston-MA-02132/2096807696_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.08661099999999, u'prices': u'599,000', u'address': u'100 Maple St, Boston, MA', u'lat': 42.3075847, u'zillow': {u'property_size': u'7157', u'bathrooms': None, u'last_sold_price': u'3360981', u'zestimate_amount': u'695455', u'tax_value': u'426577.0', u'zestimate_valuation_range_high': u'785864', u'tax_year': u'2015', u'zestimate_value_change': u'-9334', u'latitude': u'42.289875', u'zestimate_percentile': u'0', u'bedrooms': None, u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'90139732', u'last_sold_date': u'02/19/1992', u'year_built': u'1925', u'zestimate_valuationRange_low': u'598091', u'graph_data_link': u'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/#charts-and-data', u'home_size': u'16857', u'longitude': u'-71.156478', u'map_this_home_link': u'http://www.zillow.com/homes/90139732_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.11666129999999, u'prices': u'669,000', u'address': u'801 Centre St # 3C, Boston, MA', u'lat': 42.3092487, u'zillow': {u'property_size': u'1916', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'817363', u'tax_value': None, u'zestimate_valuation_range_high': u'858231', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.30924', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097055956', u'last_sold_date': None, u'year_built': u'1899', u'zestimate_valuationRange_low': u'776495', u'graph_data_link': None, u'home_size': u'1916', u'longitude': u'-71.1166', u'map_this_home_link': u'http://www.zillow.com/homes/2097055956_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/801-Centre-St-3C-Boston-MA-02130/2097055956_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0703915, u'prices': u'1,540,000', u'address': u'505 Tremont St UNIT 417, Boston, MA', u'lat': 42.3450221, u'zillow': {u'property_size': u'1364', u'bathrooms': u'2.0', u'last_sold_price': u'1088000', u'zestimate_amount': u'1678483', u'tax_value': u'1132500.0', u'zestimate_valuation_range_high': u'1896686', u'tax_year': u'2014', u'zestimate_value_change': u'-21974', u'latitude': u'42.345039', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'67710271', u'last_sold_date': u'05/30/2008', u'year_built': u'2004', u'zestimate_valuationRange_low': u'1594559', u'graph_data_link': u'http://www.zillow.com/homedetails/505-Tremont-St-UNIT-417-Boston-MA-02116/67710271_zpid/#charts-and-data', u'home_size': u'1364', u'longitude': u'-71.070299', u'map_this_home_link': u'http://www.zillow.com/homes/67710271_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/505-Tremont-St-UNIT-417-Boston-MA-02116/67710271_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0540671, u'prices': u'389,000', u'address': u'16 Chelmsford St UNIT 2, Dorchester, MA', u'lat': 42.284953, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'261000', u'zestimate_amount': u'381960', u'tax_value': u'212600.0', u'zestimate_valuation_range_high': u'401058', u'tax_year': u'2014', u'zestimate_value_change': u'6502', u'latitude': u'42.28495', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81854555', u'last_sold_date': u'07/11/2006', u'year_built': u'1905', u'zestimate_valuationRange_low': u'362862', u'graph_data_link': u'http://www.zillow.com/homedetails/16-Chelmsford-St-UNIT-2-Dorchester-MA-02122/81854555_zpid/#charts-and-data', u'home_size': u'1061', u'longitude': u'-71.054061', u'map_this_home_link': u'http://www.zillow.com/homes/81854555_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/16-Chelmsford-St-UNIT-2-Dorchester-MA-02122/81854555_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02136', u'long': -71.12602799999999, u'prices': u'399,500', u'address': u'1391 Hyde Park Ave STE G, Boston, MA', u'lat': 42.2511409, u'zillow': {u'property_size': u'3484', u'bathrooms': u'1.0', u'last_sold_price': u'310000', u'zestimate_amount': u'399402', u'tax_value': u'450000.0', u'zestimate_valuation_range_high': u'463306', u'tax_year': u'2014', u'zestimate_value_change': u'-12511', u'latitude': u'42.250944', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81855097', u'last_sold_date': u'03/17/2014', u'year_built': u'1950', u'zestimate_valuationRange_low': u'343486', u'graph_data_link': u'http://www.zillow.com/homedetails/1391-Hyde-Park-Ave-STE-G-Boston-MA-02136/81855097_zpid/#charts-and-data', u'home_size': u'1570', u'longitude': u'-71.125871', u'map_this_home_link': u'http://www.zillow.com/homes/81855097_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1391-Hyde-Park-Ave-STE-G-Boston-MA-02136/81855097_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02108', u'long': -71.05945, u'prices': u'1,300,000', u'address': u'1 Franklin St # 1601, Boston, MA', u'lat': 42.35631, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': \"Gorgeous One Bedroom at Millennium Towers! Towering above the adjacent building, allowing for expansive views of The State House and the Back Bay. A state of the art luxury living at it's best! Private screening room, Residents Only Restaurant and Lounge, Indoor swimming pool with a Miami style flair and Jacuzzi. One of a kind Fitness Center featuring a Boxing Club, Pilates/Yoga Studio/Cycling to name a few. Adjacent to the renovated historic Burnham Building, Millennium Tower will stand at the center of a reinvigorated downtown Boston, home to vibrant retail, and a new Roche Bros. gourmet grocery. Come see why Millennium Tower Boston is the evolution of luxury residential living.\", 'property_size': None, 'num_floors': None, 'heating_system': 'Forced air', 'photo_gallery': 'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Carpet, Hardwood', 'year_updated': None, 'bedrooms': '1', 'latitude': '42.355785', 'zillow_id': '2097180167', 'basement': None, 'year_built': '2016', 'home_size': '923', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/', 'home_info': 'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'945000', u'zestimate_amount': u'1175611', u'tax_value': None, u'zestimate_valuation_range_high': u'1493026', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.355785', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097180167', u'last_sold_date': u'09/15/2016', u'year_built': u'2016', u'zestimate_valuationRange_low': u'846440', u'graph_data_link': None, u'home_size': u'923', u'longitude': u'-71.059526', u'map_this_home_link': u'http://www.zillow.com/homes/2097180167_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0522963, u'prices': u'479,000', u'address': u'29 Houghton St # 1, Boston, MA', u'lat': 42.295264, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'472901', u'tax_value': None, u'zestimate_valuation_range_high': u'501275', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.295223', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096881071', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'439798', u'graph_data_link': None, u'home_size': u'1400', u'longitude': u'-71.052345', u'map_this_home_link': u'http://www.zillow.com/homes/2096881071_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/29-Houghton-St-1-Boston-MA-02122/2096881071_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0559853, u'prices': u'875,000', u'address': u'28 Woodward St # 1, Boston, MA', u'lat': 42.3314431, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'899088', u'tax_value': None, u'zestimate_valuation_range_high': u'1123860', u'tax_year': None, u'zestimate_value_change': u'-17891', u'latitude': u'42.331474', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2107330626', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'674316', u'graph_data_link': None, u'home_size': u'1700', u'longitude': u'-71.055931', u'map_this_home_link': u'http://www.zillow.com/homes/2107330626_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/28-Woodward-St-1-Boston-MA-02127/2107330626_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02131', u'long': -71.1230212, u'prices': u'549,500', u'address': u'12 Mosgrove Ave, Boston, MA', u'lat': 42.2919334, u'zillow': {u'property_size': u'5530', u'bathrooms': u'2.0', u'last_sold_price': u'250000', u'zestimate_amount': u'621969', u'tax_value': u'382100.0', u'zestimate_valuation_range_high': u'653067', u'tax_year': u'2014', u'zestimate_value_change': u'-8375', u'latitude': u'42.291848', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59144888', u'last_sold_date': u'02/25/2015', u'year_built': u'1901', u'zestimate_valuationRange_low': u'590871', u'graph_data_link': u'http://www.zillow.com/homedetails/12-Mosgrove-Ave-Boston-MA-02131/59144888_zpid/#charts-and-data', u'home_size': u'1950', u'longitude': u'-71.123093', u'map_this_home_link': u'http://www.zillow.com/homes/59144888_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/12-Mosgrove-Ave-Boston-MA-02131/59144888_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0446874, u'prices': u'769,000', u'address': u'235 Victory Rd UNIT 235, Quincy, MA', u'lat': 42.2994295, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'474680', u'zestimate_amount': u'787351', u'tax_value': u'630200.0', u'zestimate_valuation_range_high': u'826719', u'tax_year': u'2014', u'zestimate_value_change': u'7402', u'latitude': u'42.299416', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'56605009', u'last_sold_date': u'11/24/1999', u'year_built': u'1999', u'zestimate_valuationRange_low': u'747983', u'graph_data_link': u'http://www.zillow.com/homedetails/235-Victory-Rd-UNIT-235-Quincy-MA-02171/56605009_zpid/#charts-and-data', u'home_size': u'2286', u'longitude': u'-71.044724', u'map_this_home_link': u'http://www.zillow.com/homes/56605009_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/235-Victory-Rd-UNIT-235-Quincy-MA-02171/56605009_zpid/'}}, {u'status': u'For Sale by Owner', u'zip': u'02134', u'long': -71.131332, u'prices': u'549,000', u'address': u'29 Brainerd Rd, Boston, MA', u'lat': 42.3486087, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': \"Light-filled corner unit with polished hardwood flooring throughout and desirable open-concept living and dining space. Only one short block to Green Line subway, and bus lines. Excellent restaurants and nightlife only steps away! Harvard Avenue is known to have some of the best restaurants in Boston, and Coolidge Corner is a bustling neighborhood hot-spot. Boston University and Boston College are minutes away, so this could be great for students looking to live in the city! Building amenities include laundry, dedicated storage, bicycle parking, secure buzzer access and professional property management. This is not one to miss! Condo fees include common area maintenance, cold water, and master policy building insurance for common areas. Homeowner is responsible for heat and hot water for unit. Hot water heater and HVAC unit are both located in unit, so there is no sharing utilities with neighbors. Taxes were $854 this past quarter. Copy and paste the link below into your browser to view and download this property's fact sheet: https://drive.google.com/file/d/0B8DDIx2QJdihc1NkSTRBUzAwX0E/view?usp=sharing\", 'property_size': None, 'num_floors': None, 'heating_system': 'Forced air', 'photo_gallery': 'http://www.zillow.com/homedetails/29-Brainerd-Rd-Boston-MA-02134/2097576158_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood', 'year_updated': None, 'bedrooms': '2', 'latitude': '42.34912', 'zillow_id': '2097576158', 'basement': None, 'year_built': '1904', 'home_size': '850', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': 'On-street', 'home_detail_link': 'http://www.zillow.com/homedetails/29-Brainerd-Rd-Boston-MA-02134/2097576158_zpid/', 'home_info': 'http://www.zillow.com/homedetails/29-Brainerd-Rd-Boston-MA-02134/2097576158_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'420929', u'tax_value': None, u'zestimate_valuation_range_high': u'446185', u'tax_year': None, u'zestimate_value_change': u'16295', u'latitude': u'42.34912', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097576158', u'last_sold_date': None, u'year_built': u'1904', u'zestimate_valuationRange_low': u'378836', u'graph_data_link': None, u'home_size': u'850', u'longitude': u'-71.13047', u'map_this_home_link': u'http://www.zillow.com/homes/2097576158_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/29-Brainerd-Rd-Boston-MA-02134/2097576158_zpid/'}}, {u'status': u'Townhouse For Sale', u'zip': u'02130', u'long': -71.1157648, u'prices': u'749,000', u'address': u'5 Atwood Sq # 5, Boston, MA', u'lat': 42.3072151, u'zillow': {u'property_size': None, u'bathrooms': u'2.5', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.307212', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096375498', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'1603', u'longitude': u'-71.115613', u'map_this_home_link': u'http://www.zillow.com/homes/2096375498_zpid/', u'home_type': u'Townhouse', u'home_detail_link': u'http://www.zillow.com/homedetails/5-Atwood-Sq-5-Boston-MA-02130/2096375498_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.165045, u'prices': u'425,000', u'address': u'60 Sanborn Ave, Boston, MA', u'lat': 42.280911, u'zillow': {u'property_size': u'5662', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'530517', u'tax_value': u'368900.0', u'zestimate_valuation_range_high': u'562348', u'tax_year': u'2014', u'zestimate_value_change': u'425', u'latitude': u'42.280911', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59158025', u'last_sold_date': None, u'year_built': u'1925', u'zestimate_valuationRange_low': u'503991', u'graph_data_link': u'http://www.zillow.com/homedetails/60-Sanborn-Ave-Boston-MA-02132/59158025_zpid/#charts-and-data', u'home_size': u'1692', u'longitude': u'-71.165045', u'map_this_home_link': u'http://www.zillow.com/homes/59158025_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/60-Sanborn-Ave-Boston-MA-02132/59158025_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02215', u'long': -71.1018938, u'prices': u'1,913,600', u'address': u'188 Brookline Ave # 20-5, Boston, MA', u'lat': 42.34400429999999, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.343872', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096368520', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'1296', u'longitude': u'-71.101933', u'map_this_home_link': u'http://www.zillow.com/homes/2096368520_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/188-Brookline-Ave-20-5-Boston-MA-02215/2096368520_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.0369686, u'prices': u'299,000', u'address': u'51 Bennington St # 1B, Boston, MA', u'lat': 42.3754691, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.375465', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096368919', u'last_sold_date': None, u'year_built': u'2015', u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'850', u'longitude': u'-71.036964', u'map_this_home_link': u'http://www.zillow.com/homes/2096368919_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/51-Bennington-St-1B-Boston-MA-02128/2096368919_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.0369686, u'prices': u'424,900', u'address': u'51 Bennington St # 2, Boston, MA', u'lat': 42.3754691, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.375465', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096368818', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'1225', u'longitude': u'-71.036964', u'map_this_home_link': u'http://www.zillow.com/homes/2096368818_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/51-Bennington-St-2-Boston-MA-02128/2096368818_zpid/'}}, {u'status': u'New Construction', u'zip': u'02127', u'long': -71.0542787, u'prices': u'1,195,000', u'address': u'45 W 3rd St # 410, Boston, MA', u'lat': 42.342376, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.338717', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096367727', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'1250', u'longitude': u'-71.048806', u'map_this_home_link': u'http://www.zillow.com/homes/2096367727_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/45-W-3rd-St-410-Boston-MA-02127/2096367727_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02111', u'long': -71.0592399, u'prices': u'825,000', u'address': u'88 Kingston St UNIT 1F, Boston, MA', u'lat': 42.3526558, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'525000', u'zestimate_amount': u'858577', u'tax_value': u'532300.0', u'zestimate_valuation_range_high': u'901506', u'tax_year': u'2014', u'zestimate_value_change': u'40290', u'latitude': u'42.352627', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'71546197', u'last_sold_date': u'08/21/2013', u'year_built': u'1899', u'zestimate_valuationRange_low': u'815648', u'graph_data_link': u'http://www.zillow.com/homedetails/88-Kingston-St-UNIT-1F-Boston-MA-02111/71546197_zpid/#charts-and-data', u'home_size': u'1051', u'longitude': u'-71.059339', u'map_this_home_link': u'http://www.zillow.com/homes/71546197_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/88-Kingston-St-UNIT-1F-Boston-MA-02111/71546197_zpid/'}}, {u'status': u'New Construction', u'zip': u'02127', u'long': -71.0542787, u'prices': u'735,000', u'address': u'45 W 3rd St # 401, Boston, MA', u'lat': 42.342376, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.338717', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096367728', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'755', u'longitude': u'-71.048806', u'map_this_home_link': u'http://www.zillow.com/homes/2096367728_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/45-W-3rd-St-401-Boston-MA-02127/2096367728_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.0396313, u'prices': u'348,000', u'address': u'225 Border St, Boston, MA', u'lat': 42.375902, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': None, 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/225-Border-St-Boston-MA-02128/2096369134_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': None, 'latitude': '42.375031', 'zillow_id': '2096369134', 'basement': None, 'year_built': '2016', 'home_size': '450', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/225-Border-St-Boston-MA-02128/2096369134_zpid/', 'home_info': 'http://www.zillow.com/homedetails/225-Border-St-Boston-MA-02128/2096369134_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.375031', u'zestimate_percentile': u'0', u'bedrooms': u'0', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096369134', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'450', u'longitude': u'-71.040138', u'map_this_home_link': u'http://www.zillow.com/homes/2096369134_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/225-Border-St-Boston-MA-02128/2096369134_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0486505, u'prices': u'799,000', u'address': u'47 Coffey St # 0, Boston, MA', u'lat': 42.288965, u'zillow': {u'property_size': None, u'bathrooms': u'4.0', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.288834', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096363796', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'1800', u'longitude': u'-71.049526', u'map_this_home_link': u'http://www.zillow.com/homes/2096363796_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/47-Coffey-St-0-Boston-MA-02122/2096363796_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02136', u'long': -71.1355445, u'prices': u'499,999', u'address': u'32 Fleet St, Boston, MA', u'lat': 42.2388897}, {u'status': u'Condo For Sale', u'zip': u'02119', u'long': -71.06856499999999, u'prices': u'549,900', u'address': u'31 Robey St # 31, Boston, MA', u'lat': 42.322304, u'zillow': {u'property_size': None, u'bathrooms': u'4.0', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.322406', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096376271', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'1700', u'longitude': u'-71.06837', u'map_this_home_link': u'http://www.zillow.com/homes/2096376271_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/31-Robey-St-31-Boston-MA-02119/2096376271_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.035687, u'prices': u'590,000', u'address': u'186-188 Paris St # 8, Boston, MA', u'lat': 42.374401, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.374401', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096375497', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'991', u'longitude': u'-71.03569', u'map_this_home_link': u'http://www.zillow.com/homes/2096375497_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/186-188-Paris-St-8-Boston-MA-02128/2096375497_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02119', u'long': -71.0919591, u'prices': u'226,970', u'address': u'18 Brinton St UNIT 2, Roxbury, MA', u'lat': 42.32003599999999, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'141500', u'zestimate_amount': u'213837', u'tax_value': u'189600.0', u'zestimate_valuation_range_high': u'241636', u'tax_year': u'2014', u'zestimate_value_change': u'-143659', u'latitude': u'42.319999', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81856655', u'last_sold_date': u'05/30/2007', u'year_built': u'2006', u'zestimate_valuationRange_low': u'186038', u'graph_data_link': u'http://www.zillow.com/homedetails/18-Brinton-St-UNIT-2-Roxbury-MA-02119/81856655_zpid/#charts-and-data', u'home_size': u'1307', u'longitude': u'-71.092124', u'map_this_home_link': u'http://www.zillow.com/homes/81856655_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/18-Brinton-St-UNIT-2-Roxbury-MA-02119/81856655_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0768204, u'prices': u'999,000', u'address': u'118 Commonwealth Ave UNIT 4, Boston, MA', u'lat': 42.3519146, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'277000', u'zestimate_amount': u'1051110', u'tax_value': u'755200.0', u'zestimate_valuation_range_high': u'1145710', u'tax_year': u'2015', u'zestimate_value_change': u'-61029', u'latitude': u'42.352174', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59176559', u'last_sold_date': u'09/01/1987', u'year_built': u'1885', u'zestimate_valuationRange_low': u'967021', u'graph_data_link': u'http://www.zillow.com/homedetails/118-Commonwealth-Ave-UNIT-4-Boston-MA-02116/59176559_zpid/#charts-and-data', u'home_size': u'1010', u'longitude': u'-71.076304', u'map_this_home_link': u'http://www.zillow.com/homes/59176559_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/118-Commonwealth-Ave-UNIT-4-Boston-MA-02116/59176559_zpid/'}}, {u'status': u'New Construction', u'zip': u'02127', u'long': -71.0542787, u'prices': u'730,000', u'address': u'45 W 3rd St # 418, Boston, MA', u'lat': 42.342376, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.338717', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096367726', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'774', u'longitude': u'-71.048806', u'map_this_home_link': u'http://www.zillow.com/homes/2096367726_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/45-W-3rd-St-418-Boston-MA-02127/2096367726_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02119', u'long': -71.06856499999999, u'prices': u'549,900', u'address': u'29 Robey St # 29, Boston, MA', u'lat': 42.322304, u'zillow': {u'property_size': None, u'bathrooms': u'4.0', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.322303', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096376272', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'1700', u'longitude': u'-71.068565', u'map_this_home_link': u'http://www.zillow.com/homes/2096376272_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/29-Robey-St-29-Boston-MA-02119/2096376272_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.039051, u'prices': u'629,000', u'address': u'560 E 8th St UNIT 1, South Boston, MA', u'lat': 42.33155379999999, 'property': {'neighborhood': None, 'bathrooms': '2.0', 'school_district': None, 'heating_sources': 'Gas', 'rooms': 'Breakfast nook, Dining room, Family room, Laundry room, Master bath', 'home_description': None, 'property_size': '1012', 'num_floors': '2', 'heating_system': 'Forced air', 'photo_gallery': 'http://www.zillow.com/homedetails/560-E-8th-St-UNIT-1-South-Boston-MA-02127/81857241_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood', 'year_updated': '2005', 'bedrooms': '2', 'latitude': '42.331554', 'zillow_id': '81857241', 'basement': 'Finished', 'year_built': '1890', 'home_size': '1012', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': 'Off-street', 'home_detail_link': 'http://www.zillow.com/homedetails/560-E-8th-St-UNIT-1-South-Boston-MA-02127/81857241_zpid/', 'home_info': 'http://www.zillow.com/homedetails/560-E-8th-St-UNIT-1-South-Boston-MA-02127/81857241_zpid/'}, u'zillow': {u'property_size': u'1012', u'bathrooms': u'2.0', u'last_sold_price': u'400000', u'zestimate_amount': u'632267', u'tax_value': u'437500.0', u'zestimate_valuation_range_high': u'663880', u'tax_year': u'2015', u'zestimate_value_change': u'5758', u'latitude': u'42.331554', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81857241', u'last_sold_date': u'09/11/2009', u'year_built': u'1890', u'zestimate_valuationRange_low': u'594331', u'graph_data_link': u'http://www.zillow.com/homedetails/560-E-8th-St-UNIT-1-South-Boston-MA-02127/81857241_zpid/#charts-and-data', u'home_size': u'1012', u'longitude': u'-71.039063', u'map_this_home_link': u'http://www.zillow.com/homes/81857241_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/560-E-8th-St-UNIT-1-South-Boston-MA-02127/81857241_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02111', u'long': -71.0625369, u'prices': u'2,600,000', u'address': u'1 Avery St APT 23D, Boston, MA', u'lat': 42.3532598, u'zillow': {u'property_size': u'2036', u'bathrooms': u'3.0', u'last_sold_price': u'1800000', u'zestimate_amount': u'2756883', u'tax_value': u'1709657.0', u'zestimate_valuation_range_high': u'3005002', u'tax_year': u'2014', u'zestimate_value_change': u'-64380', u'latitude': u'42.353277', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'61319763', u'last_sold_date': u'10/07/2009', u'year_built': u'2000', u'zestimate_valuationRange_low': u'2619039', u'graph_data_link': u'http://www.zillow.com/homedetails/1-Avery-St-APT-23D-Boston-MA-02111/61319763_zpid/#charts-and-data', u'home_size': u'2036', u'longitude': u'-71.062724', u'map_this_home_link': u'http://www.zillow.com/homes/61319763_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1-Avery-St-APT-23D-Boston-MA-02111/61319763_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02108', u'long': -71.0599532, u'prices': u'4,499,000', u'address': u'45 Province St APT 2502, Boston, MA', u'lat': 42.35728160000001, u'zillow': {u'property_size': None, u'bathrooms': u'4.0', u'last_sold_price': u'3999000', u'zestimate_amount': u'5170819', u'tax_value': u'3148923.0', u'zestimate_valuation_range_high': u'5429360', u'tax_year': u'2014', u'zestimate_value_change': u'35175', u'latitude': u'42.357031', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'102987538', u'last_sold_date': u'08/16/2013', u'year_built': u'2009', u'zestimate_valuationRange_low': u'4912278', u'graph_data_link': u'http://www.zillow.com/homedetails/45-Province-St-APT-2502-Boston-MA-02108/102987538_zpid/#charts-and-data', u'home_size': u'2872', u'longitude': u'-71.059969', u'map_this_home_link': u'http://www.zillow.com/homes/102987538_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/45-Province-St-APT-2502-Boston-MA-02108/102987538_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02110', u'long': -71.0504859, u'prices': u'839,000', u'address': u'65 E India Row APT 26G, Boston, MA', u'lat': 42.3576699, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'379000', u'zestimate_amount': u'837740', u'tax_value': u'603977.0', u'zestimate_valuation_range_high': u'896382', u'tax_year': u'2014', u'zestimate_value_change': u'-26746', u'latitude': u'42.35792', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59175134', u'last_sold_date': u'11/29/2007', u'year_built': u'1970', u'zestimate_valuationRange_low': u'762343', u'graph_data_link': u'http://www.zillow.com/homedetails/65-E-India-Row-APT-26G-Boston-MA-02110/59175134_zpid/#charts-and-data', u'home_size': u'974', u'longitude': u'-71.050708', u'map_this_home_link': u'http://www.zillow.com/homes/59175134_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/65-E-India-Row-APT-26G-Boston-MA-02110/59175134_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.0387459, u'prices': u'299,000', u'address': u'13 Marion St APT F, Boston, MA', u'lat': 42.38017929999999, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': u'240000', u'zestimate_amount': u'304110', u'tax_value': u'215600.0', u'zestimate_valuation_range_high': u'322357', u'tax_year': u'2015', u'zestimate_value_change': u'14645', u'latitude': u'42.286727', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59141173', u'last_sold_date': u'03/01/2004', u'year_built': u'1987', u'zestimate_valuationRange_low': u'285863', u'graph_data_link': u'http://www.zillow.com/homedetails/13-Marion-St-APT-F-Boston-MA-02131/59141173_zpid/#charts-and-data', u'home_size': u'1729', u'longitude': u'-71.12046', u'map_this_home_link': u'http://www.zillow.com/homes/59141173_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/13-Marion-St-APT-F-Boston-MA-02131/59141173_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02131', u'long': -71.13943499999999, u'prices': u'499,900', u'address': u'57 Bradfield Ave, Boston, MA', u'lat': 42.2894549, u'zillow': {u'property_size': u'4791', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'524448', u'tax_value': None, u'zestimate_valuation_range_high': u'550670', u'tax_year': None, u'zestimate_value_change': u'7645', u'latitude': u'42.289455', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2122703759', u'last_sold_date': None, u'year_built': u'1910', u'zestimate_valuationRange_low': u'498226', u'graph_data_link': None, u'home_size': u'1887', u'longitude': u'-71.139434', u'map_this_home_link': u'http://www.zillow.com/homes/2122703759_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/57-Bradfield-Ave-Boston-MA-02131/2122703759_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02128', u'long': -71.030238, u'prices': u'1,200,000', u'address': u'266 Lexington St, Boston, MA', u'lat': 42.380671, 'property': {'neighborhood': None, 'bathrooms': '3.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'Totally renovated 3 family located in Eagle Hill area of East Boston. All new kitchens, baths, stainless steel appliances, stackable washer and dryer in unit, granite countertops, hardwood floors. LED lighting, undercabinet lighting. All new electrical, plumbing, with energy efficient heating and cooling. Basement storage. Large outdoor landscaped patio space with fire pit. New exterior decks with views. Perfect for investor or condo conversion. Bring your 1031 exchange buyers!', 'property_size': '2613', 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/266-Lexington-St-Boston-MA-02128/59122072_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '6', 'latitude': '42.380672', 'zillow_id': '59122072', 'basement': None, 'year_built': '1930', 'home_size': '2310', 'roof': None, 'view': None, 'home_type': 'MultiFamily2To4', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/266-Lexington-St-Boston-MA-02128/59122072_zpid/', 'home_info': 'http://www.zillow.com/homedetails/266-Lexington-St-Boston-MA-02128/59122072_zpid/'}, u'zillow': {u'property_size': u'2613', u'bathrooms': u'3.0', u'last_sold_price': u'355000', u'zestimate_amount': u'537277', u'tax_value': u'233600.0', u'zestimate_valuation_range_high': u'607123', u'tax_year': u'2014', u'zestimate_value_change': u'75566', u'latitude': u'42.380672', u'zestimate_percentile': u'0', u'bedrooms': u'6', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59122072', u'last_sold_date': u'06/24/2016', u'year_built': u'1930', u'zestimate_valuationRange_low': u'429822', u'graph_data_link': u'http://www.zillow.com/homedetails/266-Lexington-St-Boston-MA-02128/59122072_zpid/#charts-and-data', u'home_size': u'2310', u'longitude': u'-71.030238', u'map_this_home_link': u'http://www.zillow.com/homes/59122072_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/266-Lexington-St-Boston-MA-02128/59122072_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02131', u'long': -71.13943499999999, u'prices': u'499,900', u'address': u'57 Bradfield Ave UNIT 2, Boston, MA', u'lat': 42.2894549, u'zillow': {u'property_size': u'4791', u'bathrooms': u'2.0', u'last_sold_price': u'380000', u'zestimate_amount': u'507384', u'tax_value': u'288700.0', u'zestimate_valuation_range_high': u'547975', u'tax_year': u'2014', u'zestimate_value_change': u'64788', u'latitude': u'42.289455', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81859724', u'last_sold_date': u'12/14/2006', u'year_built': u'1910', u'zestimate_valuationRange_low': u'471867', u'graph_data_link': u'http://www.zillow.com/homedetails/57-Bradfield-Ave-UNIT-2-Boston-MA-02131/81859724_zpid/#charts-and-data', u'home_size': u'1887', u'longitude': u'-71.139434', u'map_this_home_link': u'http://www.zillow.com/homes/81859724_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/57-Bradfield-Ave-UNIT-2-Boston-MA-02131/81859724_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02116', u'long': -71.081757, u'prices': u'4,900,000', u'address': u'237 Marlborough St, Boston, MA', u'lat': 42.352286, u'zillow': {u'property_size': u'1742', u'bathrooms': None, u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.352287', u'zestimate_percentile': u'0', u'bedrooms': u'0', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096359832', u'last_sold_date': None, u'year_built': u'1899', u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'5640', u'longitude': u'-71.081756', u'map_this_home_link': u'http://www.zillow.com/homes/2096359832_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/237-Marlborough-St-Boston-MA-02116/2096359832_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02121', u'long': -71.0808349, u'prices': u'899,000', u'address': u'35 Holborn St # 35R, Dorchester, MA', u'lat': 42.314193, u'zillow': {u'property_size': u'6534', u'bathrooms': u'3.0', u'last_sold_price': u'473000', u'zestimate_amount': u'820242', u'tax_value': u'337700.0', u'zestimate_valuation_range_high': u'861254', u'tax_year': u'2014', u'zestimate_value_change': u'217695', u'latitude': u'42.314193', u'zestimate_percentile': u'0', u'bedrooms': u'10', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59111377', u'last_sold_date': u'02/01/2016', u'year_built': u'1890', u'zestimate_valuationRange_low': u'771027', u'graph_data_link': u'http://www.zillow.com/homedetails/35-Holborn-St-35R-Dorchester-MA-02121/59111377_zpid/#charts-and-data', u'home_size': u'3500', u'longitude': u'-71.080835', u'map_this_home_link': u'http://www.zillow.com/homes/59111377_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/35-Holborn-St-35R-Dorchester-MA-02121/59111377_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02110', u'long': -71.05024180000001, u'prices': u'2,500,000', u'address': u'10 Rowes Wharf APT 903, Boston, MA', u'lat': 42.3570124, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'1557500', u'zestimate_amount': u'2552374', u'tax_value': u'1537346.0', u'zestimate_valuation_range_high': u'2986278', u'tax_year': u'2014', u'zestimate_value_change': u'95196', u'latitude': u'42.356587', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59163949', u'last_sold_date': u'11/29/2012', u'year_built': u'1987', u'zestimate_valuationRange_low': u'2373708', u'graph_data_link': u'http://www.zillow.com/homedetails/10-Rowes-Wharf-APT-903-Boston-MA-02110/59163949_zpid/#charts-and-data', u'home_size': u'1739', u'longitude': u'-71.050719', u'map_this_home_link': u'http://www.zillow.com/homes/59163949_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/10-Rowes-Wharf-APT-903-Boston-MA-02110/59163949_zpid/'}}, {u'status': u'For Sale by Owner', u'zip': u'02131', u'long': -71.1289168, u'prices': u'188,000', u'address': u'79 Poplar St APT 4, Boston, MA', u'lat': 42.2849218, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': 'Electric', 'rooms': 'Family room, Laundry room, Mud room', 'home_description': 'Great 1 bedroom,garden level unit in a quiet building. It boasts a renovated bath, new carpet (last year) and updated kitchen.Great amount of natural light. Lots of closets .2 minutes to Roslindale Village and a 6 minute walk to commuter rail,19-22 minutes ride to South Station. Completly renovated. New cabinets, granite countertops,bathroom,wall to wall,ceiling fan,vanity.Freshly painted. Parking not included with condo fee,50 extra per month for a spot. Water,sewer,trash,snow removal and mantainence included. Owner occuppied taxes very low! Walk to bus,train,parks,restaraunts,banks and trails,etc.\\nLaundry facility just feet away.Great for a grad student, young couple or income investment. Owner is waiting to take Real Estate exam so no\"help you sell\" requests.\\n2% flat fee. Available November 30th after 4pm. Please email for private showing.On sale until December 5, if not sold,will re-rent at $1550 a mont for 2 years for a Grad Student from Italy.\\nCouches and bedroom negotiable. Email inquires only. No phone calls!!!!!!\\nWill go quickly.Roslindale is hot right now.', 'property_size': '483', 'num_floors': '3', 'heating_system': 'Baseboard', 'photo_gallery': 'http://www.zillow.com/homedetails/79-Poplar-St-APT-4-Boston-MA-02131/59143988_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Carpet, Tile', 'year_updated': '1980', 'bedrooms': '1', 'latitude': '42.284797', 'zillow_id': '59143988', 'basement': 'Unfinished', 'year_built': '1930', 'home_size': '483', 'roof': 'Asphalt, Other', 'view': None, 'home_type': 'Condominium', 'parking_type': 'Off-street, On-street', 'home_detail_link': 'http://www.zillow.com/homedetails/79-Poplar-St-APT-4-Boston-MA-02131/59143988_zpid/', 'home_info': 'http://www.zillow.com/homedetails/79-Poplar-St-APT-4-Boston-MA-02131/59143988_zpid/'}, u'zillow': {u'property_size': u'483', u'bathrooms': u'1.0', u'last_sold_price': u'104000', u'zestimate_amount': u'194210', u'tax_value': u'98800.0', u'zestimate_valuation_range_high': u'211689', u'tax_year': u'2015', u'zestimate_value_change': u'3534', u'latitude': u'42.284797', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59143988', u'last_sold_date': u'08/16/2013', u'year_built': u'1930', u'zestimate_valuationRange_low': u'170905', u'graph_data_link': u'http://www.zillow.com/homedetails/79-Poplar-St-APT-4-Boston-MA-02131/59143988_zpid/#charts-and-data', u'home_size': u'483', u'longitude': u'-71.128726', u'map_this_home_link': u'http://www.zillow.com/homes/59143988_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/79-Poplar-St-APT-4-Boston-MA-02131/59143988_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02124', u'long': -71.065326, u'prices': u'409,900', u'address': u'521 Talbot Ave, Dorchester Center, MA', u'lat': 42.287206, u'zillow': {u'property_size': u'6534', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'618591', u'tax_value': u'320300.0', u'zestimate_valuation_range_high': u'655706', u'tax_year': u'2014', u'zestimate_value_change': u'6566', u'latitude': u'42.287206', u'zestimate_percentile': u'0', u'bedrooms': u'5', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59105103', u'last_sold_date': None, u'year_built': u'1910', u'zestimate_valuationRange_low': u'587661', u'graph_data_link': u'http://www.zillow.com/homedetails/521-Talbot-Ave-Dorchester-Center-MA-02124/59105103_zpid/#charts-and-data', u'home_size': u'3113', u'longitude': u'-71.065326', u'map_this_home_link': u'http://www.zillow.com/homes/59105103_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/521-Talbot-Ave-Dorchester-Center-MA-02124/59105103_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02114', u'long': -71.0669497, u'prices': u'3,500,000', u'address': u'6 Whittier Pl # 101-105, Boston, MA', u'lat': 42.3657336, 'property': {'neighborhood': None, 'bathrooms': None, 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'Attention Investors: this is a great portfolio to own in the hearth of Boston right by Mass General Hospital in West End part of the city. Historically and for the last three terms these spaces/units were rented to doctors from MGH at triple net, currently 3 are vacant for possible owner occupancy but have clients interested if desired and three are leased. At less than $600 per SQF this property is an unbelievable deal and a money maker right from the start. This portfolio includes 10 parking spaces (9 indoor/garage & one out door) all currently rented between $275 and $400 per month. There are not many deals like this around. Great investment, Immediate profit maker. Please ask for details. (No open houses will be scheduled. Easy to show).\\n', 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/6-Whittier-Pl-101-105-Boston-MA-02114/2096356275_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': None, 'latitude': '42.36595', 'zillow_id': '2096356275', 'basement': None, 'year_built': None, 'home_size': '4866', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/6-Whittier-Pl-101-105-Boston-MA-02114/2096356275_zpid/', 'home_info': 'http://www.zillow.com/homedetails/6-Whittier-Pl-101-105-Boston-MA-02114/2096356275_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': None, u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.36595', u'zestimate_percentile': u'0', u'bedrooms': u'0', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096356275', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'4866', u'longitude': u'-71.06754', u'map_this_home_link': u'http://www.zillow.com/homes/2096356275_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/6-Whittier-Pl-101-105-Boston-MA-02114/2096356275_zpid/'}}, {u'status': u'Condo For Sale', u'zip': None, u'long': -71.0588801, u'prices': u'2,699,000', u'address': u'40 Battery St PH 4, Boston, MA', u'lat': 42.3600825}, {u'status': u'Condo For Sale', u'zip': u'02114', u'long': -71.0669497, u'prices': u'469,900', u'address': u'6 Whittier Pl # 105S, Boston, MA', u'lat': 42.3657336, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': \"Attention Investors: this beautiful, convenient, spacious office condo has everything you're looking for. At less than $600 per sqf, this property is an unbelievable deal and a money maker right from the start. This unit is directly behind MGH and normally been rented to doctors from Mass General. For a larger investment or larger spaces, we have several units next to each other for sale... Garage parking spaces available for sale at a separate price, many to choose from. Please ask for details. great investment, Immediate profit maker. (No open houses will be scheduled. Easy to show. Has been left vacant for possible owner occupancy).\", 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/6-Whittier-Pl-105S-Boston-MA-02114/2096356393_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '5', 'latitude': '42.36595', 'zillow_id': '2096356393', 'basement': None, 'year_built': None, 'home_size': '788', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/6-Whittier-Pl-105S-Boston-MA-02114/2096356393_zpid/', 'home_info': 'http://www.zillow.com/homedetails/6-Whittier-Pl-105S-Boston-MA-02114/2096356393_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.36595', u'zestimate_percentile': u'0', u'bedrooms': u'5', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096356393', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'788', u'longitude': u'-71.06754', u'map_this_home_link': u'http://www.zillow.com/homes/2096356393_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/6-Whittier-Pl-105S-Boston-MA-02114/2096356393_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02114', u'long': -71.0669497, u'prices': u'437,500', u'address': u'6 Whittier Pl # 103, Boston, MA', u'lat': 42.3657336, 'property': {'neighborhood': None, 'bathrooms': '2.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': \"Attention Investors: this beautiful, convenient, spacious office condo has everything you're looking for. At less than $600 per sqf, this property is an unbelievable deal and a money maker right from the start. This unit is directly behind MGH and normally been rented to doctors from Mass General. For a larger investment or larger spaces, we have several units next to each other for sale... Garage parking spaces available for sale at a separate price, many to choose from. Please ask for details. great investment, Immediate profit maker. (No open houses will be scheduled. Easy to show. Has been left vacant for possible owner occupancy).\", 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/6-Whittier-Pl-103-Boston-MA-02114/2096356452_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '4', 'latitude': '42.36595', 'zillow_id': '2096356452', 'basement': None, 'year_built': None, 'home_size': '733', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/6-Whittier-Pl-103-Boston-MA-02114/2096356452_zpid/', 'home_info': 'http://www.zillow.com/homedetails/6-Whittier-Pl-103-Boston-MA-02114/2096356452_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.36595', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096356452', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'733', u'longitude': u'-71.06754', u'map_this_home_link': u'http://www.zillow.com/homes/2096356452_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/6-Whittier-Pl-103-Boston-MA-02114/2096356452_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02114', u'long': -71.0669497, u'prices': u'439,900', u'address': u'6 Whittier Pl UNIT 105N, Boston, MA', u'lat': 42.3657336, 'property': {'neighborhood': None, 'bathrooms': '2.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': \"Attention Investors: this beautiful, convenient, spacious office condo has everything you're looking for. At less than $600 per sqf, this property is an unbelievable deal and a money maker right from the start. This unit is directly behind MGH and normally been rented to doctors from Mass General. For a larger investment or larger spaces, we have several units next to each other for sale... Garage parking spaces available for sale at a separate price, many to choose from. Please ask for details. great investment, Immediate profit maker. (No open houses will be scheduled. Easy to show. Has been left vacant for possible owner occupancy).\", 'property_size': '739', 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/6-Whittier-Pl-UNIT-105N-Boston-MA-02114/59179900_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '4', 'latitude': '42.365455', 'zillow_id': '59179900', 'basement': None, 'year_built': None, 'home_size': '739', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/6-Whittier-Pl-UNIT-105N-Boston-MA-02114/59179900_zpid/', 'home_info': 'http://www.zillow.com/homedetails/6-Whittier-Pl-UNIT-105N-Boston-MA-02114/59179900_zpid/'}, u'zillow': {u'property_size': u'739', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'433524', u'tax_value': u'145000.0', u'zestimate_valuation_range_high': u'485547', u'tax_year': u'2006', u'zestimate_value_change': u'2379', u'latitude': u'42.365455', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59179900', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'342484', u'graph_data_link': u'http://www.zillow.com/homedetails/6-Whittier-Pl-UNIT-105N-Boston-MA-02114/59179900_zpid/#charts-and-data', u'home_size': u'739', u'longitude': u'-71.068189', u'map_this_home_link': u'http://www.zillow.com/homes/59179900_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/6-Whittier-Pl-UNIT-105N-Boston-MA-02114/59179900_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0502016, u'prices': u'425,000', u'address': u'350 W 4th St APT 301, Boston, MA', u'lat': 42.3374932, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'93900', u'zestimate_amount': u'485592', u'tax_value': u'289700.0', u'zestimate_valuation_range_high': u'519583', u'tax_year': u'2014', u'zestimate_value_change': u'8510', u'latitude': u'42.337494', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59147650', u'last_sold_date': u'10/02/1995', u'year_built': u'1899', u'zestimate_valuationRange_low': u'456456', u'graph_data_link': u'http://www.zillow.com/homedetails/350-W-4th-St-APT-301-Boston-MA-02127/59147650_zpid/#charts-and-data', u'home_size': u'789', u'longitude': u'-71.050202', u'map_this_home_link': u'http://www.zillow.com/homes/59147650_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/350-W-4th-St-APT-301-Boston-MA-02127/59147650_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02114', u'long': -71.0669497, u'prices': u'675,000', u'address': u'6 Whittier Pl # 102, Boston, MA', u'lat': 42.3657336, 'property': {'neighborhood': None, 'bathrooms': '2.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': \"Attention Investors: this beautiful, convenient, spacious office condo has everything you're looking for. At less than $600 per sqf, this property is an unbelievable deal and a money maker right from the start. This unit is directly behind MGH and normally been rented to doctors from Mass General. For a larger investment or larger spaces, we have several units next to each other for sale... Garage parking spaces available for sale at a separate price, many to choose from. Please ask for details. great investment, Immediate profit maker. (No open houses will be scheduled. Easy to show).\", 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/6-Whittier-Pl-102-Boston-MA-02114/2096356707_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '9', 'latitude': '42.36595', 'zillow_id': '2096356707', 'basement': None, 'year_built': None, 'home_size': '1145', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/6-Whittier-Pl-102-Boston-MA-02114/2096356707_zpid/', 'home_info': 'http://www.zillow.com/homedetails/6-Whittier-Pl-102-Boston-MA-02114/2096356707_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.36595', u'zestimate_percentile': u'0', u'bedrooms': u'9', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096356707', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'1145', u'longitude': u'-71.06754', u'map_this_home_link': u'http://www.zillow.com/homes/2096356707_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/6-Whittier-Pl-102-Boston-MA-02114/2096356707_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02114', u'long': -71.0669497, u'prices': u'569,900', u'address': u'6 Whittier Pl # 101, Boston, MA', u'lat': 42.3657336, 'property': {'neighborhood': None, 'bathrooms': '2.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': \"Attention Investors: this beautiful, convenient, spacious office condo has everything you're looking for. At less than $600 per sqf, this property is an unbelievable deal and a money maker right from the start. This unit is directly behind MGH and normally been rented to doctors from Mass General. For a larger investment or larger spaces, we have several units next to each other for sale... Garage parking spaces available for sale at a separate price, many to choose from. Please ask for details. great investment, Immediate profit maker. (No open houses will be scheduled. Easy to show. Has been left vacant for possible owner occupancy).\", 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/6-Whittier-Pl-101-Boston-MA-02114/2096356824_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '5', 'latitude': '42.36595', 'zillow_id': '2096356824', 'basement': None, 'year_built': None, 'home_size': '952', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/6-Whittier-Pl-101-Boston-MA-02114/2096356824_zpid/', 'home_info': 'http://www.zillow.com/homedetails/6-Whittier-Pl-101-Boston-MA-02114/2096356824_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.36595', u'zestimate_percentile': u'0', u'bedrooms': u'5', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096356824', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'952', u'longitude': u'-71.06754', u'map_this_home_link': u'http://www.zillow.com/homes/2096356824_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/6-Whittier-Pl-101-Boston-MA-02114/2096356824_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.05405100000002, u'prices': u'749,000', u'address': u'321 Dorchester St # 2, Boston, MA', u'lat': 42.331281, 'property': {'neighborhood': None, 'bathrooms': '2.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': None, 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/321-Dorchester-St-2-Boston-MA-02127/2096357183_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '4', 'latitude': '42.33145', 'zillow_id': '2096357183', 'basement': None, 'year_built': None, 'home_size': '1400', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/321-Dorchester-St-2-Boston-MA-02127/2096357183_zpid/', 'home_info': 'http://www.zillow.com/homedetails/321-Dorchester-St-2-Boston-MA-02127/2096357183_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.33145', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096357183', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'1400', u'longitude': u'-71.05343', u'map_this_home_link': u'http://www.zillow.com/homes/2096357183_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/321-Dorchester-St-2-Boston-MA-02127/2096357183_zpid/'}}, {u'status': u'For Sale by Owner', u'zip': u'02132', u'long': -71.1550438, u'prices': u'315,000', u'address': u'17 Hastings St APT 3, Boston, MA', u'lat': 42.2853085, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': 'Gas', 'rooms': 'Pantry', 'home_description': 'Lovely condo on lower Hastings Street. 2nd floor unit. Recent exterior painting and granite counters. Pet friendly. A hop, skip and a jump to the commuter rail across the street. Walk to all nearby restaurants and shops. Extremely low fee and taxes. Hardwood throughout. Easy to show. On street parking with local owners permit as well as (2) municipal lots in very close proximity.', 'property_size': '703', 'num_floors': '3', 'heating_system': 'Other', 'photo_gallery': 'http://www.zillow.com/homedetails/17-Hastings-St-APT-3-Boston-MA-02132/67096365_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood', 'year_updated': '2004', 'bedrooms': '2', 'latitude': '42.285332', 'zillow_id': '67096365', 'basement': 'Unfinished', 'year_built': '1930', 'home_size': '703', 'roof': 'Asphalt', 'view': 'None', 'home_type': 'Condominium', 'parking_type': 'On-street', 'home_detail_link': 'http://www.zillow.com/homedetails/17-Hastings-St-APT-3-Boston-MA-02132/67096365_zpid/', 'home_info': 'http://www.zillow.com/homedetails/17-Hastings-St-APT-3-Boston-MA-02132/67096365_zpid/'}, u'zillow': {u'property_size': u'871', u'bathrooms': u'1.0', u'last_sold_price': u'262500', u'zestimate_amount': u'317952', u'tax_value': u'183400.0', u'zestimate_valuation_range_high': u'333850', u'tax_year': u'2014', u'zestimate_value_change': u'4057', u'latitude': u'42.285332', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'67096365', u'last_sold_date': u'08/06/2014', u'year_built': u'1930', u'zestimate_valuationRange_low': u'295695', u'graph_data_link': u'http://www.zillow.com/homedetails/17-Hastings-St-APT-3-Boston-MA-02132/67096365_zpid/#charts-and-data', u'home_size': u'703', u'longitude': u'-71.155037', u'map_this_home_link': u'http://www.zillow.com/homes/67096365_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/17-Hastings-St-APT-3-Boston-MA-02132/67096365_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02125', u'long': -71.052714, u'prices': u'739,000', u'address': u'84 Romsey St # 3, Dorchester, MA', u'lat': 42.31579, 'property': {'neighborhood': None, 'bathrooms': '2.0', 'school_district': None, 'heating_sources': 'Gas', 'rooms': 'Breakfast nook, Dining room, Family room, Master bath', 'home_description': 'NOT IN MLS: This third/fourth floor penthouse duplex boasts 1,871 square feet, and has 3 beds, 2 baths, and two parking spaces (second space for compact car). The fourth floor is an enormous master suite with soaring ceilings, skylights, custom soaking tub, his and hers closets outfitted by Closets By Design, and private deck with french doors and Boston views. Without a doubt, this residence is the crown jewel in the collection. November 2016 Projected Occupancy. Showings by appointment.', 'property_size': None, 'num_floors': None, 'heating_system': 'Forced air', 'photo_gallery': 'http://www.zillow.com/homedetails/84-Romsey-St-3-Dorchester-MA-02125/2111738451_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood, Tile', 'year_updated': '2016', 'bedrooms': '3', 'latitude': '42.3158', 'zillow_id': '2111738451', 'basement': None, 'year_built': '1905', 'home_size': '1871', 'roof': 'Asphalt', 'view': 'City', 'home_type': 'Condominium', 'parking_type': 'Off-street', 'home_detail_link': 'http://www.zillow.com/homedetails/84-Romsey-St-3-Dorchester-MA-02125/2111738451_zpid/', 'home_info': 'http://www.zillow.com/homedetails/84-Romsey-St-3-Dorchester-MA-02125/2111738451_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.3158', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2111738451', u'last_sold_date': None, u'year_built': u'1905', u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'1871', u'longitude': u'-71.0527', u'map_this_home_link': u'http://www.zillow.com/homes/2111738451_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/84-Romsey-St-3-Dorchester-MA-02125/2111738451_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02111', u'long': -71.0625369, u'prices': u'2,600,000', u'address': u'1 Avery St APT 26D, Boston, MA', u'lat': 42.3532598, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': u'1820000', u'zestimate_amount': u'2782086', u'tax_value': u'1815860.0', u'zestimate_valuation_range_high': u'2976832', u'tax_year': u'2014', u'zestimate_value_change': u'19143', u'latitude': u'42.353277', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'61319774', u'last_sold_date': u'11/20/2006', u'year_built': u'2000', u'zestimate_valuationRange_low': u'2642982', u'graph_data_link': u'http://www.zillow.com/homedetails/1-Avery-St-APT-26D-Boston-MA-02111/61319774_zpid/#charts-and-data', u'home_size': u'2036', u'longitude': u'-71.062724', u'map_this_home_link': u'http://www.zillow.com/homes/61319774_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1-Avery-St-APT-26D-Boston-MA-02111/61319774_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02119', u'long': -71.06857699999999, u'prices': u'549,900', u'address': u'33 Robey St # 33, Boston, MA', u'lat': 42.3222219, u'zillow': {u'property_size': None, u'bathrooms': u'4.0', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.322223', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096358559', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'1700', u'longitude': u'-71.06858', u'map_this_home_link': u'http://www.zillow.com/homes/2096358559_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/33-Robey-St-33-Boston-MA-02119/2096358559_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02115', u'long': -71.0889961, u'prices': u'209,000', u'address': u'65 Burbank St APT 9, Boston, MA', u'lat': 42.3446128, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'Rear facing unit can be used as a 1 bedroom or studio plus alcove. Needs complete renovation. Beautiful street located between The Fenway and Back Bay/ South End with close proximity to Whole Foods, Symphony Hall, Mass Ave, etc. Condo fee includes heat and hot water. Laundry is on site. ', 'property_size': '301', 'num_floors': '1', 'heating_system': 'Baseboard, Other', 'photo_gallery': 'http://www.zillow.com/homedetails/65-Burbank-St-APT-9-Boston-MA-02115/59177278_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood', 'year_updated': None, 'bedrooms': '1', 'latitude': '42.344498', 'zillow_id': '59177278', 'basement': None, 'year_built': '1900', 'home_size': '301', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/65-Burbank-St-APT-9-Boston-MA-02115/59177278_zpid/', 'home_info': 'http://www.zillow.com/homedetails/65-Burbank-St-APT-9-Boston-MA-02115/59177278_zpid/'}, u'zillow': {u'property_size': u'301', u'bathrooms': u'1.0', u'last_sold_price': u'35000', u'zestimate_amount': u'303704', u'tax_value': u'178500.0', u'zestimate_valuation_range_high': u'321926', u'tax_year': u'2014', u'zestimate_value_change': u'-9349', u'latitude': u'42.344498', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59177278', u'last_sold_date': u'11/05/1993', u'year_built': u'1900', u'zestimate_valuationRange_low': u'267260', u'graph_data_link': u'http://www.zillow.com/homedetails/65-Burbank-St-APT-9-Boston-MA-02115/59177278_zpid/#charts-and-data', u'home_size': u'301', u'longitude': u'-71.088747', u'map_this_home_link': u'http://www.zillow.com/homes/59177278_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/65-Burbank-St-APT-9-Boston-MA-02115/59177278_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.04848, u'prices': u'301,837', u'address': u'281 W 2nd St APT 4-A, Boston, MA', u'lat': 42.3396181, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'620856', u'tax_value': None, u'zestimate_valuation_range_high': u'651899', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.34055', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096405198', u'last_sold_date': None, u'year_built': u'1990', u'zestimate_valuationRange_low': u'589813', u'graph_data_link': None, u'home_size': u'880', u'longitude': u'-71.05009', u'map_this_home_link': u'http://www.zillow.com/homes/2096405198_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/281-W-2nd-St-APT-4-A-Boston-MA-02127/2096405198_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02135', u'long': -71.1444333, u'prices': u'349,000', u'address': u'1641 Commonwealth Ave APT 2, Boston, MA', u'lat': 42.3428216, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'This beautiful, immaculately kept front facing 1st floor two bedroom features gleaming hardwood floors, a separate modern kitchen & bathroom, and bright sunny windows. This rare find is set in a charming professionally managed building with laundry facilities on-site. On-street parking or rental parking is also available. For commuters there is easy access to the B line train and 65 bus line. Property can also be used as a 3 bedroom without a living room for investors.', 'property_size': '670', 'num_floors': '1', 'heating_system': 'Other', 'photo_gallery': 'http://www.zillow.com/homedetails/1641-Commonwealth-Ave-APT-2-Boston-MA-02135/59089324_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood', 'year_updated': None, 'bedrooms': '2', 'latitude': '42.342769', 'zillow_id': '59089324', 'basement': None, 'year_built': '1930', 'home_size': '670', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': 'On-street', 'home_detail_link': 'http://www.zillow.com/homedetails/1641-Commonwealth-Ave-APT-2-Boston-MA-02135/59089324_zpid/', 'home_info': 'http://www.zillow.com/homedetails/1641-Commonwealth-Ave-APT-2-Boston-MA-02135/59089324_zpid/'}, u'zillow': {u'property_size': u'670', u'bathrooms': u'1.0', u'last_sold_price': u'238000', u'zestimate_amount': u'365733', u'tax_value': u'236300.0', u'zestimate_valuation_range_high': u'384020', u'tax_year': u'2015', u'zestimate_value_change': u'1262', u'latitude': u'42.342769', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59089324', u'last_sold_date': u'04/23/2007', u'year_built': u'1930', u'zestimate_valuationRange_low': u'329160', u'graph_data_link': u'http://www.zillow.com/homedetails/1641-Commonwealth-Ave-APT-2-Boston-MA-02135/59089324_zpid/#charts-and-data', u'home_size': u'670', u'longitude': u'-71.144279', u'map_this_home_link': u'http://www.zillow.com/homes/59089324_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1641-Commonwealth-Ave-APT-2-Boston-MA-02135/59089324_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02135', u'long': -71.1526107, u'prices': u'344,900', u'address': u'1872 Commonwealth Ave APT 11, Boston, MA', u'lat': 42.3381289, u'zillow': {u'property_size': u'625', u'bathrooms': u'1.0', u'last_sold_price': u'284000', u'zestimate_amount': u'360378', u'tax_value': u'201500.0', u'zestimate_valuation_range_high': u'378397', u'tax_year': u'2014', u'zestimate_value_change': u'10470', u'latitude': u'42.33817', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59094275', u'last_sold_date': u'06/20/2014', u'year_built': u'1940', u'zestimate_valuationRange_low': u'342359', u'graph_data_link': u'http://www.zillow.com/homedetails/1872-Commonwealth-Ave-APT-11-Boston-MA-02135/59094275_zpid/#charts-and-data', u'home_size': u'625', u'longitude': u'-71.152685', u'map_this_home_link': u'http://www.zillow.com/homes/59094275_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1872-Commonwealth-Ave-APT-11-Boston-MA-02135/59094275_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02129', u'long': -71.060408, u'prices': u'545,000', u'address': u'58 Winthrop St UNIT 2, Charlestown, MA', u'lat': 42.374807, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'475000', u'zestimate_amount': u'557458', u'tax_value': u'375600.0', u'zestimate_valuation_range_high': u'585331', u'tax_year': u'2015', u'zestimate_value_change': u'37844', u'latitude': u'42.374821', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'118324663', u'last_sold_date': u'10/17/2014', u'year_built': u'1855', u'zestimate_valuationRange_low': u'524011', u'graph_data_link': u'http://www.zillow.com/homedetails/58-Winthrop-St-UNIT-2-Charlestown-MA-02129/118324663_zpid/#charts-and-data', u'home_size': u'710', u'longitude': u'-71.060417', u'map_this_home_link': u'http://www.zillow.com/homes/118324663_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/58-Winthrop-St-UNIT-2-Charlestown-MA-02129/118324663_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02129', u'long': -71.0693704, u'prices': u'549,000', u'address': u'506 Medford St, Boston, MA', u'lat': 42.3836208, u'zillow': {u'property_size': u'1306', u'bathrooms': u'1.0', u'last_sold_price': u'449000', u'zestimate_amount': u'577834', u'tax_value': u'298800.0', u'zestimate_valuation_range_high': u'606726', u'tax_year': u'2014', u'zestimate_value_change': u'20668', u'latitude': u'42.383631', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59099478', u'last_sold_date': u'05/30/2014', u'year_built': u'1870', u'zestimate_valuationRange_low': u'548942', u'graph_data_link': u'http://www.zillow.com/homedetails/506-Medford-St-Boston-MA-02129/59099478_zpid/#charts-and-data', u'home_size': u'950', u'longitude': u'-71.069367', u'map_this_home_link': u'http://www.zillow.com/homes/59099478_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/506-Medford-St-Boston-MA-02129/59099478_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02113', u'long': -71.0514625, u'prices': u'499,000', u'address': u'300 Commercial St APT 312, Boston, MA', u'lat': 42.365082, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': \"Perfect one bedroom in one of Boston's most sought after Luxury Buildings. An ideal floor plan and high ceilings throughout are just a few of the many fantastic highlights of this home. The nicely appointed kitchen is equipped with stainless appliances. The large open living and dining area is complimented by a wall of oversized windows. The home is welcoming yet sophisticated with a smart layout to create a space that feels larger than expected. Some additional features include: central air, abundance of storage and closet space, in unit laundry, and newly added hardwood flooring. The Mariner is a full-service elevator building with 24-hour concierge and a breathtaking common roof deck that has city and harbor views. The Mariner is located on Boston's Waterfront and is part of Boston's North End neighborhood. First Showings will be at Open House: Thursday 11/10 from 5:30 - 6:30pm, Saturday 11/12 from 11am - 12pm and Sunday 11/13 from 11am - 1pm. Offers due Monday 11/14 by noon.\", 'property_size': '18974736', 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/300-Commercial-St-APT-312-Boston-MA-02109/59164474_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '1', 'latitude': '42.364924', 'zillow_id': '59164474', 'basement': None, 'year_built': '1900', 'home_size': '642', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/300-Commercial-St-APT-312-Boston-MA-02109/59164474_zpid/', 'home_info': 'http://www.zillow.com/homedetails/300-Commercial-St-APT-312-Boston-MA-02109/59164474_zpid/'}, u'zillow': {u'property_size': u'18974736', u'bathrooms': u'1.0', u'last_sold_price': u'364000', u'zestimate_amount': u'519127', u'tax_value': u'325800.0', u'zestimate_valuation_range_high': u'545083', u'tax_year': u'2014', u'zestimate_value_change': u'8915', u'latitude': u'42.364924', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59164474', u'last_sold_date': u'07/23/2010', u'year_built': u'1900', u'zestimate_valuationRange_low': u'493171', u'graph_data_link': u'http://www.zillow.com/homedetails/300-Commercial-St-APT-312-Boston-MA-02109/59164474_zpid/#charts-and-data', u'home_size': u'642', u'longitude': u'-71.051129', u'map_this_home_link': u'http://www.zillow.com/homes/59164474_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/300-Commercial-St-APT-312-Boston-MA-02109/59164474_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02119', u'long': -71.094161, u'prices': u'319,000', u'address': u'25 Fort Ave # 2, Boston, MA', u'lat': 42.32574, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'338671', u'tax_value': None, u'zestimate_valuation_range_high': u'355605', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.32574', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096405664', u'last_sold_date': None, u'year_built': u'1899', u'zestimate_valuationRange_low': u'321737', u'graph_data_link': None, u'home_size': u'629', u'longitude': u'-71.094161', u'map_this_home_link': u'http://www.zillow.com/homes/2096405664_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/25-Fort-Ave-2-Boston-MA-02119/2096405664_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0781117, u'prices': u'889,000', u'address': u'133 Marlborough St APT 5, Boston, MA', u'lat': 42.3530431, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'785000', u'zestimate_amount': u'852117', u'tax_value': u'509800.0', u'zestimate_valuation_range_high': u'894723', u'tax_year': u'2014', u'zestimate_value_change': u'19391', u'latitude': u'42.353192', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59171233', u'last_sold_date': u'05/15/2015', u'year_built': u'1880', u'zestimate_valuationRange_low': u'800990', u'graph_data_link': u'http://www.zillow.com/homedetails/133-Marlborough-St-APT-5-Boston-MA-02116/59171233_zpid/#charts-and-data', u'home_size': u'779', u'longitude': u'-71.077645', u'map_this_home_link': u'http://www.zillow.com/homes/59171233_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/133-Marlborough-St-APT-5-Boston-MA-02116/59171233_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02126', u'long': -71.0702854, u'prices': u'650,000', u'address': u'15 River St, Boston, MA', u'lat': 42.2722434, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': 'Gas', 'rooms': 'Breakfast nook', 'home_description': 'Modern 2 bedroom 1 bathroom in Beacon Hill, steps to the Public Garden. Located in The Lincolnshire, a full service building with concierge, elevator, and stunning common roofdeck with city and river views. Renovated kitchen and bathroom, hardwood floors through out, and common laundry.', 'property_size': '2178', 'num_floors': '2', 'heating_system': 'Forced air', 'photo_gallery': 'http://www.zillow.com/homedetails/15-River-St-Mattapan-MA-02126/2124082385_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood, Tile', 'year_updated': None, 'bedrooms': '2', 'latitude': '42.356771', 'zillow_id': '2124082385', 'basement': 'Unfinished', 'year_built': '1900', 'home_size': '800', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': 'On-street', 'home_detail_link': 'http://www.zillow.com/homedetails/15-River-St-Mattapan-MA-02126/2124082385_zpid/', 'home_info': 'http://www.zillow.com/homedetails/15-River-St-Mattapan-MA-02126/2124082385_zpid/'}, u'zillow': {u'property_size': u'2178', u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'570663', u'tax_value': None, u'zestimate_valuation_range_high': u'781808', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.356771', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2124082385', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'399464', u'graph_data_link': None, u'home_size': u'800', u'longitude': u'-71.069972', u'map_this_home_link': u'http://www.zillow.com/homes/2124082385_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/15-River-St-Mattapan-MA-02126/2124082385_zpid/'}}, {u'status': u'Auction', u'zip': u'02124', u'long': -71.0664819, u'prices': -1, u'address': u'34 Fuller St, Dorchester Center, MA', u'lat': 42.28320799999999, u'zillow': {u'property_size': u'8712', u'bathrooms': u'4.0', u'last_sold_price': u'150000', u'zestimate_amount': u'620052', u'tax_value': u'427300.0', u'zestimate_valuation_range_high': u'657255', u'tax_year': u'2015', u'zestimate_value_change': u'4680', u'latitude': u'42.283208', u'zestimate_percentile': u'0', u'bedrooms': u'6', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59115215', u'last_sold_date': u'05/10/1999', u'year_built': u'1905', u'zestimate_valuationRange_low': u'589049', u'graph_data_link': u'http://www.zillow.com/homedetails/34-Fuller-St-Dorchester-Center-MA-02124/59115215_zpid/#charts-and-data', u'home_size': u'2924', u'longitude': u'-71.066482', u'map_this_home_link': u'http://www.zillow.com/homes/59115215_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/34-Fuller-St-Dorchester-Center-MA-02124/59115215_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02131', u'long': -71.124836, u'prices': u'315,000', u'address': u'301 Poplar St # 3, Boston, MA', u'lat': 42.279942, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'341956', u'tax_value': None, u'zestimate_valuation_range_high': u'359054', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.279941', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096386744', u'last_sold_date': None, u'year_built': u'1920', u'zestimate_valuationRange_low': u'324858', u'graph_data_link': None, u'home_size': u'861', u'longitude': u'-71.124839', u'map_this_home_link': u'http://www.zillow.com/homes/2096386744_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/301-Poplar-St-3-Boston-MA-02131/2096386744_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02135', u'long': -71.119067, u'prices': u'619,900', u'address': u'6 Larch Pl, Boston, MA', u'lat': 42.287941, u'zillow': {u'property_size': u'4356', u'bathrooms': u'3.0', u'last_sold_price': u'555000', u'zestimate_amount': u'656205', u'tax_value': u'605900.0', u'zestimate_valuation_range_high': u'715263', u'tax_year': u'2015', u'zestimate_value_change': u'-67404', u'latitude': u'42.287941', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'87795429', u'last_sold_date': u'12/23/2015', u'year_built': u'2007', u'zestimate_valuationRange_low': u'610271', u'graph_data_link': u'http://www.zillow.com/homedetails/6-Larch-Pl-Boston-MA-02131/87795429_zpid/#charts-and-data', u'home_size': u'2000', u'longitude': u'-71.119067', u'map_this_home_link': u'http://www.zillow.com/homes/87795429_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/6-Larch-Pl-Boston-MA-02131/87795429_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02109', u'long': -71.0531165, u'prices': u'825,000', u'address': u'78-80 Commercial St UNIT 2, Boston, MA', u'lat': 42.361445, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'3500', u'zestimate_amount': u'839403', u'tax_value': u'569400.0', u'zestimate_valuation_range_high': u'881373', u'tax_year': u'2014', u'zestimate_value_change': u'70168', u'latitude': u'42.361411', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59177774', u'last_sold_date': u'07/22/2015', u'year_built': u'1880', u'zestimate_valuationRange_low': u'780645', u'graph_data_link': u'http://www.zillow.com/homedetails/78-80-Commercial-St-UNIT-2-Boston-MA-02109/59177774_zpid/#charts-and-data', u'home_size': u'1052', u'longitude': u'-71.0532', u'map_this_home_link': u'http://www.zillow.com/homes/59177774_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/78-80-Commercial-St-UNIT-2-Boston-MA-02109/59177774_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.08850799999999, u'prices': u'139,900', u'address': u'42 Theodore St UNIT 3, Dorchester Center, MA', u'lat': 42.283727, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'315000', u'zestimate_amount': u'220543', u'tax_value': u'139900.0', u'zestimate_valuation_range_high': u'240392', u'tax_year': u'2014', u'zestimate_value_change': u'-14657', u'latitude': u'42.283764', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81855922', u'last_sold_date': u'12/29/2006', u'year_built': u'1905', u'zestimate_valuationRange_low': u'194078', u'graph_data_link': u'http://www.zillow.com/homedetails/42-Theodore-St-UNIT-3-Dorchester-Center-MA-02124/81855922_zpid/#charts-and-data', u'home_size': u'993', u'longitude': u'-71.088506', u'map_this_home_link': u'http://www.zillow.com/homes/81855922_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/42-Theodore-St-UNIT-3-Dorchester-Center-MA-02124/81855922_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02124', u'long': -71.070424, u'prices': u'299,000', u'address': u'30 Centre St, Dorchester Center, MA', u'lat': 42.290796, 'property': {'neighborhood': None, 'bathrooms': '4.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': None, 'property_size': '7405', 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/30-Centre-St-Dorchester-Center-MA-02124/59108880_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '5', 'latitude': '42.290796', 'zillow_id': '59108880', 'basement': None, 'year_built': '1920', 'home_size': '3167', 'roof': None, 'view': None, 'home_type': 'MultiFamily2To4', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/30-Centre-St-Dorchester-Center-MA-02124/59108880_zpid/', 'home_info': 'http://www.zillow.com/homedetails/30-Centre-St-Dorchester-Center-MA-02124/59108880_zpid/'}, u'zillow': {u'property_size': u'7405', u'bathrooms': u'4.0', u'last_sold_price': u'160000', u'zestimate_amount': u'487839', u'tax_value': u'367000.0', u'zestimate_valuation_range_high': u'512231', u'tax_year': u'2014', u'zestimate_value_change': u'43224', u'latitude': u'42.290796', u'zestimate_percentile': u'0', u'bedrooms': u'5', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59108880', u'last_sold_date': u'03/03/1998', u'year_built': u'1920', u'zestimate_valuationRange_low': u'453690', u'graph_data_link': u'http://www.zillow.com/homedetails/30-Centre-St-Dorchester-Center-MA-02124/59108880_zpid/#charts-and-data', u'home_size': u'3167', u'longitude': u'-71.070424', u'map_this_home_link': u'http://www.zillow.com/homes/59108880_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/30-Centre-St-Dorchester-Center-MA-02124/59108880_zpid/'}}, {u'status': u'Pre-Foreclosure (Auction)', u'zip': None, u'long': -1, u'prices': -1, u'address': u'Sign in for details', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.037814, u'prices': u'379,000', u'address': u'104 Paris St # 3, Boston, MA', u'lat': 42.37256199999999, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'386547', u'tax_value': None, u'zestimate_valuation_range_high': u'405874', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.372562', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096385558', u'last_sold_date': None, u'year_built': u'1910', u'zestimate_valuationRange_low': u'363354', u'graph_data_link': None, u'home_size': u'888', u'longitude': u'-71.037811', u'map_this_home_link': u'http://www.zillow.com/homes/2096385558_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/104-Paris-St-3-Boston-MA-02128/2096385558_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.037814, u'prices': u'369,000', u'address': u'104 Paris St # 2, Boston, MA', u'lat': 42.37256199999999, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'384434', u'tax_value': None, u'zestimate_valuation_range_high': u'403656', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.372562', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096385798', u'last_sold_date': None, u'year_built': u'1910', u'zestimate_valuationRange_low': u'365212', u'graph_data_link': None, u'home_size': u'842', u'longitude': u'-71.037811', u'map_this_home_link': u'http://www.zillow.com/homes/2096385798_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/104-Paris-St-2-Boston-MA-02128/2096385798_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.0785899, u'prices': u'1,475,000', u'address': u'4 Concord Sq UNIT 3, Boston, MA', u'lat': 42.3407689, u'zillow': {u'property_size': u'1479', u'bathrooms': u'3.0', u'last_sold_price': u'1030000', u'zestimate_amount': u'1514788', u'tax_value': u'943000.0', u'zestimate_valuation_range_high': u'1590527', u'tax_year': u'2014', u'zestimate_value_change': u'59837', u'latitude': u'42.340693', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59183184', u'last_sold_date': u'12/02/2010', u'year_built': u'1920', u'zestimate_valuationRange_low': u'1439049', u'graph_data_link': u'http://www.zillow.com/homedetails/4-Concord-Sq-UNIT-3-Boston-MA-02118/59183184_zpid/#charts-and-data', u'home_size': u'1479', u'longitude': u'-71.078326', u'map_this_home_link': u'http://www.zillow.com/homes/59183184_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/4-Concord-Sq-UNIT-3-Boston-MA-02118/59183184_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02131', u'long': -71.1240597, u'prices': u'489,900', u'address': u'331 Metropolitan Ave, Boston, MA', u'lat': 42.2740075, u'zillow': {u'property_size': u'6098', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'548423', u'tax_value': u'385500.0', u'zestimate_valuation_range_high': u'581328', u'tax_year': u'2014', u'zestimate_value_change': u'-223636', u'latitude': u'42.273971', u'zestimate_percentile': u'0', u'bedrooms': u'5', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59145535', u'last_sold_date': None, u'year_built': u'1880', u'zestimate_valuationRange_low': u'521002', u'graph_data_link': u'http://www.zillow.com/homedetails/331-Metropolitan-Ave-Boston-MA-02131/59145535_zpid/#charts-and-data', u'home_size': u'2234', u'longitude': u'-71.124281', u'map_this_home_link': u'http://www.zillow.com/homes/59145535_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/331-Metropolitan-Ave-Boston-MA-02131/59145535_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0347431, u'prices': u'539,000', u'address': u'743 E 4th St APT 301, South Boston, MA', u'lat': 42.3346347, 'property': {'neighborhood': None, 'bathrooms': '2.0', 'school_district': None, 'heating_sources': 'Electric', 'rooms': 'Dining room', 'home_description': 'City Point Penthouse unit in a chic schoolhouse that is well located near the Broadway shops (across from Starbucks) and within minutes to the SB Seaport area. This is a rare 3 bedroom, 2 bath unit for a schoolhouse condo and that includes 1 deeded parking space...More interior photos to come next weekend. ', 'property_size': None, 'num_floors': '3', 'heating_system': 'Baseboard', 'photo_gallery': 'http://www.zillow.com/homedetails/743-E-4th-St-APT-301-South-Boston-MA-02127/2096429009_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood', 'year_updated': '1988', 'bedrooms': '3', 'latitude': '42.33465', 'zillow_id': '2096429009', 'basement': None, 'year_built': '1910', 'home_size': '1087', 'roof': 'Other', 'view': None, 'home_type': 'Condominium', 'parking_type': 'Off-street', 'home_detail_link': 'http://www.zillow.com/homedetails/743-E-4th-St-APT-301-South-Boston-MA-02127/2096429009_zpid/', 'home_info': 'http://www.zillow.com/homedetails/743-E-4th-St-APT-301-South-Boston-MA-02127/2096429009_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'587117', u'tax_value': None, u'zestimate_valuation_range_high': u'616473', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.33465', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096429009', u'last_sold_date': None, u'year_built': u'1910', u'zestimate_valuationRange_low': u'546019', u'graph_data_link': None, u'home_size': u'1087', u'longitude': u'-71.03589', u'map_this_home_link': u'http://www.zillow.com/homes/2096429009_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/743-E-4th-St-APT-301-South-Boston-MA-02127/2096429009_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0408755, u'prices': u'579,000', u'address': u'2 Burnham Pl UNIT 2, Boston, MA', u'lat': 42.3366982, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'368000', u'zestimate_amount': u'590601', u'tax_value': u'380100.0', u'zestimate_valuation_range_high': u'620131', u'tax_year': u'2014', u'zestimate_value_change': u'5902', u'latitude': u'42.336696', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81858908', u'last_sold_date': u'02/09/2006', u'year_built': u'1905', u'zestimate_valuationRange_low': u'561071', u'graph_data_link': u'http://www.zillow.com/homedetails/2-Burnham-Pl-UNIT-2-Boston-MA-02127/81858908_zpid/#charts-and-data', u'home_size': u'927', u'longitude': u'-71.040939', u'map_this_home_link': u'http://www.zillow.com/homes/81858908_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/2-Burnham-Pl-UNIT-2-Boston-MA-02127/81858908_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02115', u'long': -71.084707, u'prices': u'850,000', u'address': u'294 Newbury St UNIT 3C, Boston, MA', u'lat': 42.3487579, u'zillow': {u'property_size': u'757', u'bathrooms': u'1.0', u'last_sold_price': u'660000', u'zestimate_amount': u'828302', u'tax_value': u'618600.0', u'zestimate_valuation_range_high': u'886283', u'tax_year': u'2014', u'zestimate_value_change': u'37986', u'latitude': u'42.348758', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'87793381', u'last_sold_date': u'02/20/2013', u'year_built': u'1900', u'zestimate_valuationRange_low': u'753755', u'graph_data_link': u'http://www.zillow.com/homedetails/294-Newbury-St-UNIT-3C-Boston-MA-02115/87793381_zpid/#charts-and-data', u'home_size': u'757', u'longitude': u'-71.084709', u'map_this_home_link': u'http://www.zillow.com/homes/87793381_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/294-Newbury-St-UNIT-3C-Boston-MA-02115/87793381_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.048833, u'prices': u'425,000', u'address': u'47 Telegraph St APT 5, Boston, MA', u'lat': 42.332917, u'zillow': {u'property_size': u'680', u'bathrooms': u'1.0', u'last_sold_price': u'319000', u'zestimate_amount': u'447378', u'tax_value': u'287200.0', u'zestimate_valuation_range_high': u'469747', u'tax_year': u'2014', u'zestimate_value_change': u'-1215', u'latitude': u'42.332917', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59151618', u'last_sold_date': u'04/26/2013', u'year_built': u'1910', u'zestimate_valuationRange_low': u'425009', u'graph_data_link': u'http://www.zillow.com/homedetails/47-Telegraph-St-APT-5-Boston-MA-02127/59151618_zpid/#charts-and-data', u'home_size': u'680', u'longitude': u'-71.048833', u'map_this_home_link': u'http://www.zillow.com/homes/59151618_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/47-Telegraph-St-APT-5-Boston-MA-02127/59151618_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02116', u'long': -71.0777294, u'prices': u'897,500', u'address': u'9 Holyoke St, Boston, MA', u'lat': 42.3446503, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': \"South End roof deck anyone? Perhaps your skyline-loving friends have been waiting until just the right unit opened up before making a move...now's the time. This 825 sq. ft. 2-bedroom condo offers a lot to like beyond the newly installed roof deck.\", 'property_size': None, 'num_floors': None, 'heating_system': 'Forced air', 'photo_gallery': 'http://www.zillow.com/homedetails/9-Holyoke-St-Boston-MA-02116/2141975969_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '2', 'latitude': '42.344783', 'zillow_id': '2141975969', 'basement': None, 'year_built': '1865', 'home_size': '825', 'roof': None, 'view': None, 'home_type': 'MultiFamily2To4', 'parking_type': 'Garage - Detached', 'home_detail_link': 'http://www.zillow.com/homedetails/9-Holyoke-St-Boston-MA-02116/2141975969_zpid/', 'home_info': 'http://www.zillow.com/homedetails/9-Holyoke-St-Boston-MA-02116/2141975969_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'795986', u'tax_value': None, u'zestimate_valuation_range_high': u'835785', u'tax_year': None, u'zestimate_value_change': u'-181600', u'latitude': u'42.344754', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2141975969', u'last_sold_date': None, u'year_built': u'1865', u'zestimate_valuationRange_low': u'756187', u'graph_data_link': None, u'home_size': u'825', u'longitude': u'-71.07758', u'map_this_home_link': u'http://www.zillow.com/homes/2141975969_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/9-Holyoke-St-Boston-MA-02116/2141975969_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.075926, u'prices': u'549,900', u'address': u'469 Shawmut Ave APT 8, Boston, MA', u'lat': 42.33895, u'zillow': {u'property_size': u'435', u'bathrooms': u'1.0', u'last_sold_price': u'445000', u'zestimate_amount': u'577825', u'tax_value': u'394100.0', u'zestimate_valuation_range_high': u'606716', u'tax_year': u'2015', u'zestimate_value_change': u'35018', u'latitude': u'42.33895', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'71505258', u'last_sold_date': u'08/16/2013', u'year_built': u'1912', u'zestimate_valuationRange_low': u'537377', u'graph_data_link': u'http://www.zillow.com/homedetails/469-Shawmut-Ave-APT-8-Boston-MA-02118/71505258_zpid/#charts-and-data', u'home_size': u'572', u'longitude': u'-71.075926', u'map_this_home_link': u'http://www.zillow.com/homes/71505258_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/469-Shawmut-Ave-APT-8-Boston-MA-02118/71505258_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0539752, u'prices': u'449,000', u'address': u'24 Thelma Rd # 1, Boston, MA', u'lat': 42.2944203, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'435566', u'tax_value': None, u'zestimate_valuation_range_high': u'457344', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.294403', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096384561', u'last_sold_date': None, u'year_built': u'1930', u'zestimate_valuationRange_low': u'405076', u'graph_data_link': None, u'home_size': u'1133', u'longitude': u'-71.05397', u'map_this_home_link': u'http://www.zillow.com/homes/2096384561_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/24-Thelma-Rd-1-Boston-MA-02122/2096384561_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.064475, u'prices': u'369,000', u'address': u'43 Fox St # 3, Boston, MA', u'lat': 42.306264, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'324900', u'zestimate_amount': u'440179', u'tax_value': None, u'zestimate_valuation_range_high': u'462188', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.30649', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097255090', u'last_sold_date': u'11/01/2016', u'year_built': u'1905', u'zestimate_valuationRange_low': u'418170', u'graph_data_link': None, u'home_size': u'1015', u'longitude': u'-71.06329', u'map_this_home_link': u'http://www.zillow.com/homes/2097255090_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/43-Fox-St-3-Boston-MA-02122/2097255090_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02130', u'long': -71.1287728, u'prices': u'899,000', u'address': u'9 Lila Rd, Boston, MA', u'lat': 42.3034353, u'zillow': {u'property_size': u'12632', u'bathrooms': u'2.0', u'last_sold_price': u'537000', u'zestimate_amount': u'963859', u'tax_value': u'503200.0', u'zestimate_valuation_range_high': u'1069883', u'tax_year': u'2014', u'zestimate_value_change': u'236176', u'latitude': u'42.303465', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59135797', u'last_sold_date': u'05/22/2002', u'year_built': u'1930', u'zestimate_valuationRange_low': u'906027', u'graph_data_link': u'http://www.zillow.com/homedetails/9-Lila-Rd-Boston-MA-02130/59135797_zpid/#charts-and-data', u'home_size': u'1440', u'longitude': u'-71.128596', u'map_this_home_link': u'http://www.zillow.com/homes/59135797_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/9-Lila-Rd-Boston-MA-02130/59135797_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02120', u'long': -71.1009, u'prices': u'1,999,000', u'address': u'17 Wensley St, Boston, MA', u'lat': 42.326983, u'zillow': {u'property_size': u'3484', u'bathrooms': u'6.0', u'last_sold_price': None, u'zestimate_amount': u'2018614', u'tax_value': None, u'zestimate_valuation_range_high': u'2139731', u'tax_year': None, u'zestimate_value_change': u'1420279', u'latitude': u'42.326983', u'zestimate_percentile': u'0', u'bedrooms': u'12', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2100057638', u'last_sold_date': None, u'year_built': u'2010', u'zestimate_valuationRange_low': u'1877311', u'graph_data_link': None, u'home_size': u'4489', u'longitude': u'-71.1009', u'map_this_home_link': u'http://www.zillow.com/homes/2100057638_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/17-Wensley-St-Boston-MA-02120/2100057638_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.157809, u'prices': u'749,000', u'address': u'46 Birchwood St, Boston, MA', u'lat': 42.258456, u'zillow': {u'property_size': u'10018', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'772863', u'tax_value': None, u'zestimate_valuation_range_high': u'842421', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.258456', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096387898', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'649205', u'graph_data_link': None, u'home_size': u'2700', u'longitude': u'-71.157809', u'map_this_home_link': u'http://www.zillow.com/homes/2096387898_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/46-Birchwood-St-Boston-MA-02132/2096387898_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02129', u'long': -71.0626935, u'prices': u'405,000', u'address': u'83 Main St APT 1, Boston, MA', u'lat': 42.3739175, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': 'Gas', 'rooms': None, 'home_description': 'Rare chance to live in the best location in Charlestown! Located right in the Gas Light district on Main Street, you are walking distance to everything Charlestown has to offer. This home features a generous layout, high ceilings, beautiful hardwood floors and new windows. The bedroom can accommodate queen sized furniture, has a ceiling fan and a large closet with custom California Closet systems. The living, dining and kitchen are all connected creating a wonderful place to entertain friends and family. The bathroom features glass sliding doors, with great storage throughout. This home has a wonderful and thoughtful layout in a central location. ', 'property_size': None, 'num_floors': None, 'heating_system': 'Baseboard', 'photo_gallery': 'http://www.zillow.com/homedetails/83-Main-St-APT-1-Boston-MA-02129/2096428171_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood, Tile', 'year_updated': None, 'bedrooms': '1', 'latitude': '42.373801', 'zillow_id': '2096428171', 'basement': None, 'year_built': None, 'home_size': '590', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': 'On-street', 'home_detail_link': 'http://www.zillow.com/homedetails/83-Main-St-APT-1-Boston-MA-02129/2096428171_zpid/', 'home_info': 'http://www.zillow.com/homedetails/83-Main-St-APT-1-Boston-MA-02129/2096428171_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'145000', u'zestimate_amount': u'516621', u'tax_value': u'235900.0', u'zestimate_valuation_range_high': u'557951', u'tax_year': u'2014', u'zestimate_value_change': None, u'latitude': u'42.373801', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096428171', u'last_sold_date': u'08/28/1998', u'year_built': u'1880', u'zestimate_valuationRange_low': u'444294', u'graph_data_link': u'http://www.zillow.com/homedetails/83-Main-St-APT-1-Boston-MA-02129/59101340_zpid/#charts-and-data', u'home_size': u'590', u'longitude': u'-71.062776', u'map_this_home_link': u'http://www.zillow.com/homes/2096428171_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/83-Main-St-APT-1-Boston-MA-02129/2096428171_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02210', u'long': -71.0429848, u'prices': u'929,000', u'address': u'437 D St APT 6B, Boston, MA', u'lat': 42.3451734, u'zillow': {u'property_size': u'1497', u'bathrooms': u'1.0', u'last_sold_price': u'257000', u'zestimate_amount': u'937275', u'tax_value': u'606200.0', u'zestimate_valuation_range_high': u'984139', u'tax_year': u'2014', u'zestimate_value_change': u'-108347', u'latitude': u'42.344982', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59148142', u'last_sold_date': u'06/18/1997', u'year_built': u'1920', u'zestimate_valuationRange_low': u'881038', u'graph_data_link': u'http://www.zillow.com/homedetails/437-D-St-APT-6B-Boston-MA-02210/59148142_zpid/#charts-and-data', u'home_size': u'1497', u'longitude': u'-71.043535', u'map_this_home_link': u'http://www.zillow.com/homes/59148142_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/437-D-St-APT-6B-Boston-MA-02210/59148142_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02119', u'long': -71.086929, u'prices': u'180,000', u'address': u'25 Alpine St UNIT 23, Boston, MA', u'lat': 42.325876, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'192500', u'zestimate_amount': u'202893', u'tax_value': u'141500.0', u'zestimate_valuation_range_high': u'219124', u'tax_year': u'2015', u'zestimate_value_change': u'-241495', u'latitude': u'42.264904', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'67398512', u'last_sold_date': u'11/05/2007', u'year_built': u'1970', u'zestimate_valuationRange_low': u'190719', u'graph_data_link': u'http://www.zillow.com/homedetails/25-Alpine-St-UNIT-23-Boston-MA-02126/67398512_zpid/#charts-and-data', u'home_size': u'906', u'longitude': u'-71.101982', u'map_this_home_link': u'http://www.zillow.com/homes/67398512_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/25-Alpine-St-UNIT-23-Boston-MA-02126/67398512_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02122', u'long': -71.05646639999999, u'prices': u'849,000', u'address': u'75 Park St, Boston, MA', u'lat': 42.30013599999999}, {u'status': u'Condo For Sale', u'zip': u'02136', u'long': -71.1355445, u'prices': u'499,900', u'address': u'32 Fleet St APT 3, Boston, MA', u'lat': 42.2388897}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.064475, u'prices': u'349,000', u'address': u'43 Fox St # 1, Boston, MA', u'lat': 42.306264, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'402484', u'tax_value': None, u'zestimate_valuation_range_high': u'426633', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.30649', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097255105', u'last_sold_date': None, u'year_built': u'1905', u'zestimate_valuationRange_low': u'358211', u'graph_data_link': None, u'home_size': u'1001', u'longitude': u'-71.06329', u'map_this_home_link': u'http://www.zillow.com/homes/2097255105_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/43-Fox-St-1-Boston-MA-02122/2097255105_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0272774, u'prices': u'589,000', u'address': u'826 E 5th St APT 4, South Boston, MA', u'lat': 42.3341901, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'140000', u'zestimate_amount': u'591351', u'tax_value': u'399800.0', u'zestimate_valuation_range_high': u'620919', u'tax_year': u'2014', u'zestimate_value_change': u'19066', u'latitude': u'42.33423', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59212970', u'last_sold_date': u'12/05/1997', u'year_built': u'1900', u'zestimate_valuationRange_low': u'561783', u'graph_data_link': u'http://www.zillow.com/homedetails/826-E-5th-St-APT-4-South-Boston-MA-02127/59212970_zpid/#charts-and-data', u'home_size': u'920', u'longitude': u'-71.027296', u'map_this_home_link': u'http://www.zillow.com/homes/59212970_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/826-E-5th-St-APT-4-South-Boston-MA-02127/59212970_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02129', u'long': -71.0523825, u'prices': u'519,000', u'address': u'42 8th St APT 4209, Boston, MA', u'lat': 42.3750209, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'439900', u'zestimate_amount': u'532085', u'tax_value': u'336000.0', u'zestimate_valuation_range_high': u'558689', u'tax_year': u'2014', u'zestimate_value_change': u'-30996', u'latitude': u'42.374939', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'67396088', u'last_sold_date': u'10/31/2006', u'year_built': u'1899', u'zestimate_valuationRange_low': u'494839', u'graph_data_link': u'http://www.zillow.com/homedetails/42-8th-St-APT-4209-Boston-MA-02129/67396088_zpid/#charts-and-data', u'home_size': u'793', u'longitude': u'-71.053014', u'map_this_home_link': u'http://www.zillow.com/homes/67396088_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/42-8th-St-APT-4209-Boston-MA-02129/67396088_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02127', u'long': -71.05332539999999, u'prices': u'1,038,888', u'address': u'109 Tudor St, Boston, MA', u'lat': 42.3362994, 'property': {'neighborhood': None, 'bathrooms': '4.0', 'school_district': None, 'heating_sources': 'Gas', 'rooms': None, 'home_description': \"Modern, luxurious custom-built, detached single family home with private rooftop deck offering amazing views of the Boston skyline and garage parking! Built in 2012, this stunning, master-crafted home also boasts two en suite Master Bedrooms, an oversized third bedroom, 3.5 baths, a private courtyard, and two entertaining decks. The second floor offers open-concept living space that is great for entertaining - relax next to the gas fireplace, indulge in a gourmet chef's kitchen featuring granite counters, stainless steel appliances, center island with a wine & beverage cooler, and enjoy formal dining next to a wall of windows with direct access to a large deck! Amazing attention to detail throughout, gleaming hardwood floors, built-in surround sound, and an abundance of natural light. Close to all major public transportation and approximately a half mile from the Broadway T. What more could you ask for? First Showings at Public Open House Saturday and Sunday from 12-2pm.\", 'property_size': '1376', 'num_floors': '3', 'heating_system': 'Forced air, Heat pump', 'photo_gallery': 'http://www.zillow.com/homedetails/109-Tudor-St-Boston-MA-02127/120937095_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood, Tile', 'year_updated': '2012', 'bedrooms': '3', 'latitude': '42.336296', 'zillow_id': '120937095', 'basement': None, 'year_built': '2012', 'home_size': '2070', 'roof': None, 'view': None, 'home_type': 'SingleFamily', 'parking_type': 'Garage - Attached', 'home_detail_link': 'http://www.zillow.com/homedetails/109-Tudor-St-Boston-MA-02127/120937095_zpid/', 'home_info': 'http://www.zillow.com/homedetails/109-Tudor-St-Boston-MA-02127/120937095_zpid/'}, u'zillow': {u'property_size': u'1376', u'bathrooms': u'4.0', u'last_sold_price': u'889900', u'zestimate_amount': u'975319', u'tax_value': u'456800.0', u'zestimate_valuation_range_high': u'1024085', u'tax_year': u'2014', u'zestimate_value_change': u'5784', u'latitude': u'42.336296', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'120937095', u'last_sold_date': u'09/30/2015', u'year_built': u'2012', u'zestimate_valuationRange_low': u'916800', u'graph_data_link': u'http://www.zillow.com/homedetails/109-Tudor-St-Boston-MA-02127/120937095_zpid/#charts-and-data', u'home_size': u'2070', u'longitude': u'-71.053321', u'map_this_home_link': u'http://www.zillow.com/homes/120937095_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/109-Tudor-St-Boston-MA-02127/120937095_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02129', u'long': -71.0674315, u'prices': u'579,000', u'address': u'334 Bunker Hill St, Charlestown, MA', u'lat': 42.3812469, u'zillow': {u'property_size': u'1049', u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'613128', u'tax_value': None, u'zestimate_valuation_range_high': u'656047', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.381294', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096429510', u'last_sold_date': None, u'year_built': u'1845', u'zestimate_valuationRange_low': u'582472', u'graph_data_link': None, u'home_size': u'1421', u'longitude': u'-71.067425', u'map_this_home_link': u'http://www.zillow.com/homes/2096429510_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/334-Bunker-Hill-St-Charlestown-MA-02129/2096429510_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02186', u'long': -71.1116527, u'prices': u'599,000', u'address': u'30 Carlson Rd, Hyde Park, MA', u'lat': 42.2569289, u'zillow': {u'property_size': u'5662', u'bathrooms': u'2.0', u'last_sold_price': u'405000', u'zestimate_amount': u'634315', u'tax_value': u'344800.0', u'zestimate_valuation_range_high': u'678717', u'tax_year': u'2014', u'zestimate_value_change': u'95368', u'latitude': u'42.256967', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59124865', u'last_sold_date': u'03/01/2010', u'year_built': u'1965', u'zestimate_valuationRange_low': u'589913', u'graph_data_link': u'http://www.zillow.com/homedetails/30-Carlson-Rd-Hyde-Park-MA-02136/59124865_zpid/#charts-and-data', u'home_size': u'1962', u'longitude': u'-71.111672', u'map_this_home_link': u'http://www.zillow.com/homes/59124865_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/30-Carlson-Rd-Hyde-Park-MA-02136/59124865_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02131', u'long': -71.1215116, u'prices': u'314,900', u'address': u'187 Florence St APT 2R, Boston, MA', u'lat': 42.28701119999999, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': 'Gas', 'rooms': 'Breakfast nook', 'home_description': \"WALK. BIKE. TRANSIT ALL OVER THE CITY...You'll absolutely love this modern and urban turn-key condo just a few blocks to Roslindale Village, commuter rail into Downtown Boston or quick bus ride to Forest Hills (orange line) and plenty of shops and restaurants within Roslindale Village. This unit is on the second floor of a 3 story walk up. Completely renovated in 2013 this unit offers a spacious open floor plan, two large bedrooms, upgraded kitchen and bath, hardwood floors and fresh paint through out. Come see what this unit has to offer, OPEN HOUSE SATURDAY- NOVEMBER 12th 12-2pm; SUNDAY - NOVEMBER 13th 12-2pm.\", 'property_size': '926', 'num_floors': '1', 'heating_system': 'Other', 'photo_gallery': 'http://www.zillow.com/homedetails/187-Florence-St-APT-2R-Boston-MA-02131/87797343_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood', 'year_updated': '2006', 'bedrooms': '2', 'latitude': '42.287002', 'zillow_id': '87797343', 'basement': None, 'year_built': '1920', 'home_size': '806', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': 'On-street', 'home_detail_link': 'http://www.zillow.com/homedetails/187-Florence-St-APT-2R-Boston-MA-02131/87797343_zpid/', 'home_info': 'http://www.zillow.com/homedetails/187-Florence-St-APT-2R-Boston-MA-02131/87797343_zpid/'}, u'zillow': {u'property_size': u'926', u'bathrooms': u'1.0', u'last_sold_price': u'195000', u'zestimate_amount': u'277396', u'tax_value': u'174700.0', u'zestimate_valuation_range_high': u'296814', u'tax_year': u'2014', u'zestimate_value_change': u'-17138', u'latitude': u'42.287002', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'87797343', u'last_sold_date': u'07/13/2007', u'year_built': u'1920', u'zestimate_valuationRange_low': u'244108', u'graph_data_link': u'http://www.zillow.com/homedetails/187-Florence-St-APT-2R-Boston-MA-02131/87797343_zpid/#charts-and-data', u'home_size': u'806', u'longitude': u'-71.121505', u'map_this_home_link': u'http://www.zillow.com/homes/87797343_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/187-Florence-St-APT-2R-Boston-MA-02131/87797343_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02114', u'long': -71.06572059999999, u'prices': u'650,000', u'address': u'31 Myrtle St APT 2, Boston, MA', u'lat': 42.3594204, u'zillow': {u'property_size': u'871', u'bathrooms': u'1.0', u'last_sold_price': u'481500', u'zestimate_amount': u'652419', u'tax_value': u'437300.0', u'zestimate_valuation_range_high': u'691564', u'tax_year': u'2014', u'zestimate_value_change': u'47010', u'latitude': u'42.359361', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59169428', u'last_sold_date': u'07/01/2014', u'year_built': u'1899', u'zestimate_valuationRange_low': u'613274', u'graph_data_link': u'http://www.zillow.com/homedetails/31-Myrtle-St-APT-2-Boston-MA-02114/59169428_zpid/#charts-and-data', u'home_size': u'655', u'longitude': u'-71.06564', u'map_this_home_link': u'http://www.zillow.com/homes/59169428_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/31-Myrtle-St-APT-2-Boston-MA-02114/59169428_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.1050814, u'prices': u'680,000', u'address': u'83 Wyman St UNIT 2, Boston, MA', u'lat': 42.3197616, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'529000', u'zestimate_amount': u'683174', u'tax_value': u'384900.0', u'zestimate_valuation_range_high': u'717333', u'tax_year': u'2014', u'zestimate_value_change': u'-18419', u'latitude': u'42.319747', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'71332405', u'last_sold_date': u'07/01/2013', u'year_built': u'2005', u'zestimate_valuationRange_low': u'649015', u'graph_data_link': u'http://www.zillow.com/homedetails/83-Wyman-St-UNIT-2-Boston-MA-02130/71332405_zpid/#charts-and-data', u'home_size': u'1406', u'longitude': u'-71.105117', u'map_this_home_link': u'http://www.zillow.com/homes/71332405_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/83-Wyman-St-UNIT-2-Boston-MA-02130/71332405_zpid/'}}, {u'status': u'Coming Soon', u'zip': u'02116', u'long': -71.0777294, u'prices': u'897,500', u'address': u'9 Holyoke St # 4, Boston, MA', u'lat': 42.3446503, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': 'Gas', 'rooms': 'Walk-in closet', 'home_description': \"South End roof deck anyone? Perhaps your skyline-loving friends have been waiting until just the right unit opened up before making a move...now's the time. This 825 sq. ft. 2-bedroom condo offers a lot to like beyond the newly installed roof deck. Wood-burning fireplace, hardwood floors, rear deck, parking for one (tandem), gas heating/cooking, new roof, professionally managed, low condo fee ($310), pet friendly and skylights. Updated kitchen and bathroom, wall A/C unit and in-unit washer/dryer.\\n\\nOnly reason it's not on the market yet (and I don't have interior photos posted here) is that the sellers are in the midst of moving to their new home and need to finish the move-out plus make some minor repairs (including refinishing the floors). Not being posted on MLS until 12/7 at the earliest but private showings are OK while finishing touches are taking place.\", 'property_size': '825', 'num_floors': '1', 'heating_system': 'Baseboard', 'photo_gallery': 'http://www.zillow.com/homedetails/9-Holyoke-St-4-Boston-MA-02116/59165219_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood', 'year_updated': '1987', 'bedrooms': '2', 'latitude': '42.344754', 'zillow_id': '59165219', 'basement': 'None', 'year_built': '1865', 'home_size': '825', 'roof': 'Other', 'view': 'City', 'home_type': 'Condominium', 'parking_type': 'Off-street', 'home_detail_link': 'http://www.zillow.com/homedetails/9-Holyoke-St-4-Boston-MA-02116/59165219_zpid/', 'home_info': 'http://www.zillow.com/homedetails/9-Holyoke-St-4-Boston-MA-02116/59165219_zpid/'}, u'zillow': {u'property_size': u'825', u'bathrooms': u'1.0', u'last_sold_price': u'547000', u'zestimate_amount': u'873299', u'tax_value': u'621400.0', u'zestimate_valuation_range_high': u'916964', u'tax_year': u'2015', u'zestimate_value_change': u'9535', u'latitude': u'42.344754', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59165219', u'last_sold_date': u'07/06/2004', u'year_built': u'1865', u'zestimate_valuationRange_low': u'829634', u'graph_data_link': u'http://www.zillow.com/homedetails/9-Holyoke-St-4-Boston-MA-02116/59165219_zpid/#charts-and-data', u'home_size': u'825', u'longitude': u'-71.07758', u'map_this_home_link': u'http://www.zillow.com/homes/59165219_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/9-Holyoke-St-4-Boston-MA-02116/59165219_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02128', u'long': -71.017793, u'prices': u'449,900', u'address': u'43 Wordsworth St, Boston, MA', u'lat': 42.384782, u'zillow': {u'property_size': u'2500', u'bathrooms': u'2.0', u'last_sold_price': u'125000', u'zestimate_amount': u'474637', u'tax_value': u'279400.0', u'zestimate_valuation_range_high': u'498369', u'tax_year': u'2015', u'zestimate_value_change': u'17025', u'latitude': u'42.384783', u'zestimate_percentile': u'0', u'bedrooms': u'6', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59122385', u'last_sold_date': u'05/15/1990', u'year_built': u'1899', u'zestimate_valuationRange_low': u'403441', u'graph_data_link': u'http://www.zillow.com/homedetails/43-Wordsworth-St-Boston-MA-02128/59122385_zpid/#charts-and-data', u'home_size': u'1894', u'longitude': u'-71.017793', u'map_this_home_link': u'http://www.zillow.com/homes/59122385_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/43-Wordsworth-St-Boston-MA-02128/59122385_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02215', u'long': -71.0980333, u'prices': u'455,000', u'address': u'131 Park Dr APT 12, Boston, MA', u'lat': 42.3416995, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': 'Breakfast nook', 'home_description': 'Perfect One Bedroom Split on desirable Park Drive.\\nCurrently used as a 2 Bedroom and leased until 8/31/17 for $2,200/month. \\nLow condo fees.\\nSecond floor, High ceilings, fabulous sunlight and hardwood floors.\\nProfessionally managed association in elevator building with common laundry.\\n\\nCall or Text Emily for more info or to schedule a showing 603-305-1342\\n\\n', 'property_size': '500', 'num_floors': '1', 'heating_system': 'Forced air', 'photo_gallery': 'http://www.zillow.com/homedetails/131-Park-Dr-APT-12-Boston-MA-02215/59168174_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood', 'year_updated': '1986', 'bedrooms': '1', 'latitude': '42.341585', 'zillow_id': '59168174', 'basement': None, 'year_built': '1910', 'home_size': '500', 'roof': 'Asphalt', 'view': None, 'home_type': 'Condominium', 'parking_type': 'On-street', 'home_detail_link': 'http://www.zillow.com/homedetails/131-Park-Dr-APT-12-Boston-MA-02215/59168174_zpid/', 'home_info': 'http://www.zillow.com/homedetails/131-Park-Dr-APT-12-Boston-MA-02215/59168174_zpid/'}, u'zillow': {u'property_size': u'500', u'bathrooms': u'1.0', u'last_sold_price': u'242000', u'zestimate_amount': u'460100', u'tax_value': u'274200.0', u'zestimate_valuation_range_high': u'487706', u'tax_year': u'2015', u'zestimate_value_change': u'10127', u'latitude': u'42.341585', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59168174', u'last_sold_date': u'06/09/2006', u'year_built': u'1910', u'zestimate_valuationRange_low': u'377282', u'graph_data_link': u'http://www.zillow.com/homedetails/131-Park-Dr-APT-12-Boston-MA-02215/59168174_zpid/#charts-and-data', u'home_size': u'500', u'longitude': u'-71.097823', u'map_this_home_link': u'http://www.zillow.com/homes/59168174_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/131-Park-Dr-APT-12-Boston-MA-02215/59168174_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02125', u'long': -71.0614724, u'prices': u'509,000', u'address': u'71 Sawyer Ave # 2, Boston, MA', u'lat': 42.3125071, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'523514', u'tax_value': None, u'zestimate_valuation_range_high': u'549690', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.31253', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2115628012', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'486868', u'graph_data_link': None, u'home_size': u'1079', u'longitude': u'-71.061454', u'map_this_home_link': u'http://www.zillow.com/homes/2115628012_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/71-Sawyer-Ave-2-Boston-MA-02125/2115628012_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02114', u'long': -71.0661835, u'prices': u'450,000', u'address': u'2 Hawthorne Pl APT 15M, Boston, MA', u'lat': 42.36381859999999, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'93750', u'zestimate_amount': u'468419', u'tax_value': u'341272.0', u'zestimate_valuation_range_high': u'510577', u'tax_year': u'2014', u'zestimate_value_change': u'5574', u'latitude': u'42.36353', u'zestimate_percentile': u'0', u'bedrooms': u'0', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59180101', u'last_sold_date': u'10/02/1996', u'year_built': u'1967', u'zestimate_valuationRange_low': u'435630', u'graph_data_link': u'http://www.zillow.com/homedetails/2-Hawthorne-Pl-APT-15M-Boston-MA-02114/59180101_zpid/#charts-and-data', u'home_size': u'715', u'longitude': u'-71.066499', u'map_this_home_link': u'http://www.zillow.com/homes/59180101_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/2-Hawthorne-Pl-APT-15M-Boston-MA-02114/59180101_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02129', u'long': -71.0671057, u'prices': u'679,000', u'address': u'21 Walker St UNIT 1, Boston, MA', u'lat': 42.3786989, u'zillow': {u'property_size': u'1181', u'bathrooms': u'2.0', u'last_sold_price': u'485000', u'zestimate_amount': u'721125', u'tax_value': u'447400.0', u'zestimate_valuation_range_high': u'764393', u'tax_year': u'2014', u'zestimate_value_change': u'-68770', u'latitude': u'42.378693', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'113389499', u'last_sold_date': u'05/24/2012', u'year_built': u'1840', u'zestimate_valuationRange_low': u'677857', u'graph_data_link': u'http://www.zillow.com/homedetails/21-Walker-St-UNIT-1-Boston-MA-02129/113389499_zpid/#charts-and-data', u'home_size': u'1181', u'longitude': u'-71.067116', u'map_this_home_link': u'http://www.zillow.com/homes/113389499_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/21-Walker-St-UNIT-1-Boston-MA-02129/113389499_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02127', u'long': -71.0425723, u'prices': u'725,000', u'address': u'461 E 8th St, South Boston, MA', u'lat': 42.3312048, u'zillow': {u'property_size': u'1306', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'738961', u'tax_value': u'441200.0', u'zestimate_valuation_range_high': u'812857', u'tax_year': u'2014', u'zestimate_value_change': u'-10833', u'latitude': u'42.331198', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59151090', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'657675', u'graph_data_link': u'http://www.zillow.com/homedetails/461-E-8th-St-South-Boston-MA-02127/59151090_zpid/#charts-and-data', u'home_size': u'2087', u'longitude': u'-71.042579', u'map_this_home_link': u'http://www.zillow.com/homes/59151090_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/461-E-8th-St-South-Boston-MA-02127/59151090_zpid/'}}, {u'status': u'Auction', u'zip': u'02126', u'long': -71.100437, u'prices': -1, u'address': u'105 Itasca St, Boston, MA', u'lat': 42.275751, u'zillow': {u'property_size': u'5227', u'bathrooms': u'1.5', u'last_sold_price': u'138000', u'zestimate_amount': u'326105', u'tax_value': u'222800.0', u'zestimate_valuation_range_high': u'348932', u'tax_year': u'2014', u'zestimate_value_change': u'9203', u'latitude': u'42.275738', u'zestimate_percentile': u'0', u'bedrooms': u'5', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59137872', u'last_sold_date': u'10/17/1997', u'year_built': u'1950', u'zestimate_valuationRange_low': u'306539', u'graph_data_link': u'http://www.zillow.com/homedetails/105-Itasca-St-Boston-MA-02126/59137872_zpid/#charts-and-data', u'home_size': u'1160', u'longitude': u'-71.10045', u'map_this_home_link': u'http://www.zillow.com/homes/59137872_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/105-Itasca-St-Boston-MA-02126/59137872_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.076328, u'prices': u'1,975,000', u'address': u'191 Beacon St APT 2, Boston, MA', u'lat': 42.3541294, 'property': {'neighborhood': None, 'bathrooms': '2.0', 'school_district': None, 'heating_sources': None, 'rooms': 'Breakfast nook, Family room, Laundry room, Master bath, Walk-in closet', 'home_description': 'Two bedroom two bathroom duplex home(first and second floor) in top Back Bay location between Berkeley and Clarendon. Close proximity allows for a short walk to all of the best restaurants, shops and retail in both the Back Bay and Beacon Hill as well as MGH, Prudential, Esplanade, Charles, Common and the Financial District. Property amenities include high ceilings, hardwood floors throughout, two decorative fire places, central air heat and air conditioning, in-unit washer dryer, wet bar and an abundance of detail. The open kitchen comes equipped with stainless steel appliances, granite counter tops and a breakfast bar. The home has two marble bathrooms, a large master bedroom with walk-in closet designed by California Closets and one deeded parking space. Professional management. ', 'property_size': '1580', 'num_floors': '2', 'heating_system': 'Forced air', 'photo_gallery': 'http://www.zillow.com/homedetails/191-Beacon-St-APT-2-Boston-MA-02116/87794066_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood', 'year_updated': '2007', 'bedrooms': '2', 'latitude': '42.354118', 'zillow_id': '87794066', 'basement': None, 'year_built': '1905', 'home_size': '1580', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': 'Off-street', 'home_detail_link': 'http://www.zillow.com/homedetails/191-Beacon-St-APT-2-Boston-MA-02116/87794066_zpid/', 'home_info': 'http://www.zillow.com/homedetails/191-Beacon-St-APT-2-Boston-MA-02116/87794066_zpid/'}, u'zillow': {u'property_size': u'1580', u'bathrooms': u'2.0', u'last_sold_price': u'1075000', u'zestimate_amount': u'1964359', u'tax_value': u'1251600.0', u'zestimate_valuation_range_high': u'2141151', u'tax_year': u'2014', u'zestimate_value_change': u'7219', u'latitude': u'42.354118', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'87794066', u'last_sold_date': u'12/14/2007', u'year_built': u'1905', u'zestimate_valuationRange_low': u'1826854', u'graph_data_link': u'http://www.zillow.com/homedetails/191-Beacon-St-APT-2-Boston-MA-02116/87794066_zpid/#charts-and-data', u'home_size': u'1580', u'longitude': u'-71.076339', u'map_this_home_link': u'http://www.zillow.com/homes/87794066_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/191-Beacon-St-APT-2-Boston-MA-02116/87794066_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02136', u'long': -71.1254639, u'prices': u'379,900', u'address': u'162 Sherrin St, Boston, MA', u'lat': 42.265968, u'zillow': {u'property_size': u'4791', u'bathrooms': u'2.0', u'last_sold_price': u'2500', u'zestimate_amount': u'394639', u'tax_value': u'282900.0', u'zestimate_valuation_range_high': u'418317', u'tax_year': u'2015', u'zestimate_value_change': u'7578', u'latitude': u'42.265968', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59126222', u'last_sold_date': u'02/25/2016', u'year_built': u'1956', u'zestimate_valuationRange_low': u'374907', u'graph_data_link': u'http://www.zillow.com/homedetails/162-Sherrin-St-Boston-MA-02136/59126222_zpid/#charts-and-data', u'home_size': u'1224', u'longitude': u'-71.125465', u'map_this_home_link': u'http://www.zillow.com/homes/59126222_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/162-Sherrin-St-Boston-MA-02136/59126222_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.064475, u'prices': u'359,000', u'address': u'43 Fox St # 2, Boston, MA', u'lat': 42.306264, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'309900', u'zestimate_amount': u'440179', u'tax_value': None, u'zestimate_valuation_range_high': u'462188', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.30649', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097255094', u'last_sold_date': u'11/01/2016', u'year_built': u'1905', u'zestimate_valuationRange_low': u'418170', u'graph_data_link': None, u'home_size': u'1015', u'longitude': u'-71.06329', u'map_this_home_link': u'http://www.zillow.com/homes/2097255094_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/43-Fox-St-2-Boston-MA-02122/2097255094_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02115', u'long': -71.08850249999999, u'prices': u'425,000', u'address': u'12 Stoneholm St APT 307, Boston, MA', u'lat': 42.3458507, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'245500', u'zestimate_amount': u'398376', u'tax_value': u'239800.0', u'zestimate_valuation_range_high': u'470084', u'tax_year': u'2014', u'zestimate_value_change': None, u'latitude': u'42.345768', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'82242207', u'last_sold_date': u'05/12/2008', u'year_built': u'2006', u'zestimate_valuationRange_low': u'302766', u'graph_data_link': u'http://www.zillow.com/homedetails/12-Stoneholm-St-APT-307-Boston-MA-02115/82242207_zpid/#charts-and-data', u'home_size': u'355', u'longitude': u'-71.08819', u'map_this_home_link': u'http://www.zillow.com/homes/82242207_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/12-Stoneholm-St-APT-307-Boston-MA-02115/82242207_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02127', u'long': -71.0413049, u'prices': u'699,900', u'address': u'78 H St, South Boston, MA', u'lat': 42.3351069, u'zillow': {u'property_size': u'1306', u'bathrooms': u'3.0', u'last_sold_price': u'400000', u'zestimate_amount': u'682670', u'tax_value': u'421800.0', u'zestimate_valuation_range_high': u'716803', u'tax_year': u'2014', u'zestimate_value_change': u'-327232', u'latitude': u'42.335111', u'zestimate_percentile': u'0', u'bedrooms': u'5', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59149188', u'last_sold_date': u'04/02/2003', u'year_built': u'1890', u'zestimate_valuationRange_low': u'648537', u'graph_data_link': u'http://www.zillow.com/homedetails/78-H-St-South-Boston-MA-02127/59149188_zpid/#charts-and-data', u'home_size': u'2208', u'longitude': u'-71.04131', u'map_this_home_link': u'http://www.zillow.com/homes/59149188_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/78-H-St-South-Boston-MA-02127/59149188_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.02761799999999, u'prices': u'379,000', u'address': u'325 E Eagle St # 3, Boston, MA', u'lat': 42.3811765, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'365249', u'tax_value': None, u'zestimate_valuation_range_high': u'394469', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.38116', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096406857', u'last_sold_date': None, u'year_built': u'1890', u'zestimate_valuationRange_low': u'346987', u'graph_data_link': None, u'home_size': u'826', u'longitude': u'-71.027664', u'map_this_home_link': u'http://www.zillow.com/homes/2096406857_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/325-E-Eagle-St-3-Boston-MA-02128/2096406857_zpid/'}}, {u'status': u'Coming Soon', u'zip': u'02130', u'long': -71.1159892, u'prices': u'299,000', u'address': u'37 Hampstead Rd UNIT 2, Boston, MA', u'lat': 42.3036946, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'Jamaica Plain Condo located close the Arnold Arboretum Parks and Trails. Currently being completely renovated with New Kitchen, New Bathroom, Recessed lighting and new floors throughout! Washer/Dryer on site and beautiful common yard. Close to Public Transportation. Great starter condo, WHY pay rent?? Coming soon!', 'property_size': '590', 'num_floors': '1', 'heating_system': 'Other', 'photo_gallery': 'http://www.zillow.com/homedetails/37-Hampstead-Rd-UNIT-2-Boston-MA-02130/59210334_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': '1999', 'bedrooms': '1', 'latitude': '42.303795', 'zillow_id': '59210334', 'basement': None, 'year_built': '1986', 'home_size': '590', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/37-Hampstead-Rd-UNIT-2-Boston-MA-02130/59210334_zpid/', 'home_info': 'http://www.zillow.com/homedetails/37-Hampstead-Rd-UNIT-2-Boston-MA-02130/59210334_zpid/'}, u'zillow': {u'property_size': u'590', u'bathrooms': u'1.0', u'last_sold_price': u'89900', u'zestimate_amount': u'283936', u'tax_value': u'182100.0', u'zestimate_valuation_range_high': u'298133', u'tax_year': u'2014', u'zestimate_value_change': u'3151', u'latitude': u'42.303795', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59210334', u'last_sold_date': u'01/07/2000', u'year_built': u'1986', u'zestimate_valuationRange_low': u'264060', u'graph_data_link': u'http://www.zillow.com/homedetails/37-Hampstead-Rd-UNIT-2-Boston-MA-02130/59210334_zpid/#charts-and-data', u'home_size': u'590', u'longitude': u'-71.116193', u'map_this_home_link': u'http://www.zillow.com/homes/59210334_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/37-Hampstead-Rd-UNIT-2-Boston-MA-02130/59210334_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.037814, u'prices': u'369,000', u'address': u'104 Paris St # 1, Boston, MA', u'lat': 42.37256199999999, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'373131', u'tax_value': None, u'zestimate_valuation_range_high': u'391788', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.372528', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097246437', u'last_sold_date': None, u'year_built': u'1910', u'zestimate_valuationRange_low': u'354474', u'graph_data_link': None, u'home_size': u'790', u'longitude': u'-71.03774', u'map_this_home_link': u'http://www.zillow.com/homes/2097246437_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/104-Paris-St-1-Boston-MA-02128/2097246437_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02136', u'long': -71.119394, u'prices': u'114,900', u'address': u'175 Clare Ave APT C3, Boston, MA', u'lat': 42.2719637, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'774', u'zestimate_amount': u'157706', u'tax_value': u'103300.0', u'zestimate_valuation_range_high': u'165591', u'tax_year': u'2015', u'zestimate_value_change': u'-381', u'latitude': u'42.271836', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59129939', u'last_sold_date': u'01/27/2011', u'year_built': u'1960', u'zestimate_valuationRange_low': u'143512', u'graph_data_link': u'http://www.zillow.com/homedetails/175-Clare-Ave-APT-C3-Boston-MA-02136/59129939_zpid/#charts-and-data', u'home_size': u'650', u'longitude': u'-71.119156', u'map_this_home_link': u'http://www.zillow.com/homes/59129939_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/175-Clare-Ave-APT-C3-Boston-MA-02136/59129939_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.0333022, u'prices': u'329,000', u'address': u'276 Paris St # 2, Boston, MA', u'lat': 42.37633719999999, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'315112', u'tax_value': None, u'zestimate_valuation_range_high': u'343472', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.376312', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096465882', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'267845', u'graph_data_link': None, u'home_size': u'800', u'longitude': u'-71.033325', u'map_this_home_link': u'http://www.zillow.com/homes/2096465882_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/276-Paris-St-2-Boston-MA-02128/2096465882_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02135', u'long': -71.1653511, u'prices': u'929,000', u'address': u'580 Washington St UNIT 3F, Boston, MA', u'lat': 42.3500543, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'640000', u'zestimate_amount': u'927010', u'tax_value': u'642000.0', u'zestimate_valuation_range_high': u'973360', u'tax_year': u'2015', u'zestimate_value_change': u'-2897', u'latitude': u'42.353388', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'123845837', u'last_sold_date': u'02/27/2014', u'year_built': u'2013', u'zestimate_valuationRange_low': u'880660', u'graph_data_link': u'http://www.zillow.com/homedetails/580-Washington-St-UNIT-3F-Boston-MA-02111/123845837_zpid/#charts-and-data', u'home_size': u'855', u'longitude': u'-71.062437', u'map_this_home_link': u'http://www.zillow.com/homes/123845837_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/580-Washington-St-UNIT-3F-Boston-MA-02111/123845837_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02115', u'long': -71.09148420000001, u'prices': u'535,000', u'address': u'74 Fenway APT 34, Boston, MA', u'lat': 42.3427187, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': 'Oil', 'rooms': 'Dining room', 'home_description': 'Rarely available! Spacious 1 bedroom in highly sought after On The Fens Condominiums. Located along serene Back Bay Fens park area, this regal greek revival building offers grand marble entryway, elevator, community laundry facilities, deeded storage, and high owner occupancy. Unit offers high functionality and ergonomic flow, no space is wasted. Kitchen boasts marble countertops, full size dishwasher and a full dining area. Dining room, living room, bedroom and bathroom boast a total of 8 windows for all the light one could ask for. High ceilings, traditional Boston detail, and rich hardwood floors complete this wonderful home. *Taxes shown include residential exemption\\n\\nCall or Text Emily for more info or to schedule a showing 603-305-1342', 'property_size': '595', 'num_floors': '1', 'heating_system': 'Other', 'photo_gallery': 'http://www.zillow.com/homedetails/74-Fenway-APT-34-Boston-MA-02115/59176858_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood', 'year_updated': '1981', 'bedrooms': '1', 'latitude': '42.342842', 'zillow_id': '59176858', 'basement': None, 'year_built': '1925', 'home_size': '595', 'roof': 'Asphalt', 'view': None, 'home_type': 'Condominium', 'parking_type': 'On-street', 'home_detail_link': 'http://www.zillow.com/homedetails/74-Fenway-APT-34-Boston-MA-02115/59176858_zpid/', 'home_info': 'http://www.zillow.com/homedetails/74-Fenway-APT-34-Boston-MA-02115/59176858_zpid/'}, u'zillow': {u'property_size': u'595', u'bathrooms': u'1.0', u'last_sold_price': u'339000', u'zestimate_amount': u'431668', u'tax_value': u'303800.0', u'zestimate_valuation_range_high': u'505052', u'tax_year': u'2014', u'zestimate_value_change': u'1327', u'latitude': u'42.342842', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59176858', u'last_sold_date': u'06/01/2006', u'year_built': u'1925', u'zestimate_valuationRange_low': u'388501', u'graph_data_link': u'http://www.zillow.com/homedetails/74-Fenway-APT-34-Boston-MA-02115/59176858_zpid/#charts-and-data', u'home_size': u'595', u'longitude': u'-71.091111', u'map_this_home_link': u'http://www.zillow.com/homes/59176858_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/74-Fenway-APT-34-Boston-MA-02115/59176858_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.07359, u'prices': u'1,499,000', u'address': u'48 Commonwealth Ave APT 1C, Boston, MA', u'lat': 42.352647, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'2600000', u'zestimate_amount': u'1230287', u'tax_value': u'728600.0', u'zestimate_valuation_range_high': u'1353316', u'tax_year': u'2014', u'zestimate_value_change': u'332447', u'latitude': u'42.352891', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'87796314', u'last_sold_date': u'12/17/2010', u'year_built': u'2006', u'zestimate_valuationRange_low': u'1033441', u'graph_data_link': u'http://www.zillow.com/homedetails/48-Commonwealth-Ave-APT-1C-Boston-MA-02116/87796314_zpid/#charts-and-data', u'home_size': u'798', u'longitude': u'-71.073684', u'map_this_home_link': u'http://www.zillow.com/homes/87796314_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/48-Commonwealth-Ave-APT-1C-Boston-MA-02116/87796314_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02121', u'long': -71.077457, u'prices': u'995,000', u'address': u'11-15 Fernboro St, Boston, MA', u'lat': 42.311442, u'zillow': {u'property_size': u'7840', u'bathrooms': u'6.0', u'last_sold_price': None, u'zestimate_amount': u'1064871', u'tax_value': None, u'zestimate_valuation_range_high': u'1160709', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.311534', u'zestimate_percentile': u'0', u'bedrooms': u'16', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096387885', u'last_sold_date': None, u'year_built': u'1905', u'zestimate_valuationRange_low': u'937086', u'graph_data_link': None, u'home_size': u'7500', u'longitude': u'-71.077346', u'map_this_home_link': u'http://www.zillow.com/homes/2096387885_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/11-15-Fernboro-St-Boston-MA-02121/2096387885_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.01138, u'prices': u'369,000', u'address': u'910 Saratoga St # 1, Boston, MA', u'lat': 42.386308, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'378246', u'tax_value': None, u'zestimate_valuation_range_high': u'397158', u'tax_year': None, u'zestimate_value_change': u'37264', u'latitude': u'42.386308', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2138049945', u'last_sold_date': None, u'year_built': u'2009', u'zestimate_valuationRange_low': u'359334', u'graph_data_link': None, u'home_size': u'952', u'longitude': u'-71.011379', u'map_this_home_link': u'http://www.zillow.com/homes/2138049945_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/910-Saratoga-St-1-Boston-MA-02128/2138049945_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02129', u'long': -71.062415, u'prices': u'2,750,000', u'address': u'31 High St, Boston, MA', u'lat': 42.376329, u'zillow': {u'property_size': u'1306', u'bathrooms': u'5.0', u'last_sold_price': u'925000', u'zestimate_amount': u'2949271', u'tax_value': u'1445900.0', u'zestimate_valuation_range_high': u'3096735', u'tax_year': u'2014', u'zestimate_value_change': u'78439', u'latitude': u'42.376339', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59101027', u'last_sold_date': u'04/25/2000', u'year_built': u'1863', u'zestimate_valuationRange_low': u'2801807', u'graph_data_link': u'http://www.zillow.com/homedetails/31-High-St-Boston-MA-02129/59101027_zpid/#charts-and-data', u'home_size': u'3958', u'longitude': u'-71.062409', u'map_this_home_link': u'http://www.zillow.com/homes/59101027_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/31-High-St-Boston-MA-02129/59101027_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02132', u'long': -71.170962, u'prices': u'369,900', u'address': u'1216 Vfw Pkwy APT 49, Boston, MA', u'lat': 42.2789235, u'zillow': {u'property_size': u'871', u'bathrooms': u'2.0', u'last_sold_price': u'299000', u'zestimate_amount': u'385628', u'tax_value': u'230800.0', u'zestimate_valuation_range_high': u'420335', u'tax_year': u'2014', u'zestimate_value_change': u'2060', u'latitude': u'42.278772', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59153544', u'last_sold_date': u'07/29/2013', u'year_built': u'1986', u'zestimate_valuationRange_low': u'343209', u'graph_data_link': u'http://www.zillow.com/homedetails/1216-Vfw-Pkwy-APT-49-Boston-MA-02132/59153544_zpid/#charts-and-data', u'home_size': u'1072', u'longitude': u'-71.171331', u'map_this_home_link': u'http://www.zillow.com/homes/59153544_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1216-Vfw-Pkwy-APT-49-Boston-MA-02132/59153544_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.05210699999999, u'prices': u'215,000', u'address': u'135 Neponset Ave APT 46, Dorchester, MA', u'lat': 42.293773, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'229011', u'tax_value': None, u'zestimate_valuation_range_high': u'240462', u'tax_year': None, u'zestimate_value_change': u'-32841', u'latitude': u'42.29379', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2104313147', u'last_sold_date': None, u'year_built': u'1965', u'zestimate_valuationRange_low': u'217560', u'graph_data_link': None, u'home_size': u'737', u'longitude': u'-71.05167', u'map_this_home_link': u'http://www.zillow.com/homes/2104313147_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/135-Neponset-Ave-APT-46-Dorchester-MA-02122/2104313147_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02134', u'long': -71.063154, u'prices': u'899,000', u'address': u'48 Allston St, Boston, MA', u'lat': 42.381114, 'property': {'neighborhood': None, 'bathrooms': '5.5', 'school_district': None, 'heating_sources': 'Gas', 'rooms': 'Walk-in closet', 'home_description': 'MASSIVE MULTI-FAMILY INCOME PROPERTY w/ $108,000 GROSS INCOME PER YEAR in PRIME ALLSTON RENTAL LOCATION Includes EXTREMELY RARE DOUBLE-SIZED 10,000+ SF LOT w/ 9+ PARKING SPOTS & HUGE YARD. 4 Finished Levels. All Huge Bedrooms w/ High Ceilings, Nice Window Exposure & Large Closets Throughout. LARGE Eat-In-Kitchens w/ Oversized Baths in ALL Units. Hardwood Floors. Separate Updated Systems & Electric. Tenants Pays For Heat & Electric. Common Coin-Opp Laundry Room. 2 Car Garage. Near Everything: T, Buses, Mass Pike, Universities, Shopping & Restaurants. Just Collect Rents.', 'property_size': '1018', 'num_floors': '3', 'heating_system': 'Baseboard', 'photo_gallery': 'http://www.zillow.com/homedetails/48-Allston-St-Boston-MA-02134/59088443_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood, Tile', 'year_updated': None, 'bedrooms': '11', 'latitude': '42.351506', 'zillow_id': '59088443', 'basement': 'Finished', 'year_built': '1890', 'home_size': '4372', 'roof': 'Asphalt', 'view': 'Territorial', 'home_type': 'MultiFamily2To4', 'parking_type': 'Garage - Detached, Off-street', 'home_detail_link': 'http://www.zillow.com/homedetails/48-Allston-St-Boston-MA-02134/59088443_zpid/', 'home_info': 'http://www.zillow.com/homedetails/48-Allston-St-Boston-MA-02134/59088443_zpid/'}, u'zillow': {u'property_size': u'1018', u'bathrooms': u'5.5', u'last_sold_price': u'205000', u'zestimate_amount': u'794966', u'tax_value': u'638200.0', u'zestimate_valuation_range_high': u'834714', u'tax_year': u'2011', u'zestimate_value_change': u'25648', u'latitude': u'42.351506', u'zestimate_percentile': u'0', u'bedrooms': u'11', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59088443', u'last_sold_date': u'11/15/2011', u'year_built': u'1890', u'zestimate_valuationRange_low': u'755218', u'graph_data_link': u'http://www.zillow.com/homedetails/48-Allston-St-Boston-MA-02134/59088443_zpid/#charts-and-data', u'home_size': u'4372', u'longitude': u'-71.135391', u'map_this_home_link': u'http://www.zillow.com/homes/59088443_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/48-Allston-St-Boston-MA-02134/59088443_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02110', u'long': -71.05059899999999, u'prices': u'1,995,000', u'address': u'28 Atlantic Ave # 434, Boston, MA', u'lat': 42.363346, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'2030326', u'tax_value': None, u'zestimate_valuation_range_high': u'2131842', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.363842', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096444760', u'last_sold_date': None, u'year_built': u'1830', u'zestimate_valuationRange_low': u'1908506', u'graph_data_link': None, u'home_size': u'1680', u'longitude': u'-71.050984', u'map_this_home_link': u'http://www.zillow.com/homes/2096444760_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/28-Atlantic-Ave-434-Boston-MA-02110/2096444760_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -70.9979479, u'prices': u'389,900', u'address': u'1203 Bennington St # 1, Boston, MA', u'lat': 42.388927, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'409538', u'tax_value': None, u'zestimate_valuation_range_high': u'430015', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.388927', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096391255', u'last_sold_date': None, u'year_built': u'1910', u'zestimate_valuationRange_low': u'380870', u'graph_data_link': None, u'home_size': u'1608', u'longitude': u'-70.997947', u'map_this_home_link': u'http://www.zillow.com/homes/2096391255_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1203-Bennington-St-1-Boston-MA-02128/2096391255_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02124', u'long': -71.0651299, u'prices': u'689,000', u'address': u'26 Upland Ave, Dorchester Center, MA', u'lat': 42.2967516, u'zillow': {u'property_size': u'6534', u'bathrooms': u'2.0', u'last_sold_price': u'571000', u'zestimate_amount': u'698786', u'tax_value': u'533500.0', u'zestimate_valuation_range_high': u'740713', u'tax_year': u'2014', u'zestimate_value_change': u'57574', u'latitude': u'42.296724', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59105049', u'last_sold_date': u'05/25/2005', u'year_built': u'1922', u'zestimate_valuationRange_low': u'663847', u'graph_data_link': u'http://www.zillow.com/homedetails/26-Upland-Ave-Dorchester-Center-MA-02124/59105049_zpid/#charts-and-data', u'home_size': u'2657', u'longitude': u'-71.065177', u'map_this_home_link': u'http://www.zillow.com/homes/59105049_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/26-Upland-Ave-Dorchester-Center-MA-02124/59105049_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02108', u'long': -71.067244, u'prices': u'969,000', u'address': u'21 Chestnut St UNIT 1, Boston, MA', u'lat': 42.3577722, u'zillow': {u'property_size': u'1537', u'bathrooms': u'2.0', u'last_sold_price': u'500000', u'zestimate_amount': u'992372', u'tax_value': u'514335.0', u'zestimate_valuation_range_high': u'1041991', u'tax_year': u'2014', u'zestimate_value_change': u'-23580', u'latitude': u'42.374206', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59212287', u'last_sold_date': u'06/15/2011', u'year_built': u'1875', u'zestimate_valuationRange_low': u'932830', u'graph_data_link': u'http://www.zillow.com/homedetails/21-Chestnut-St-UNIT-1-Boston-MA-02129/59212287_zpid/#charts-and-data', u'home_size': u'1537', u'longitude': u'-71.058746', u'map_this_home_link': u'http://www.zillow.com/homes/59212287_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/21-Chestnut-St-UNIT-1-Boston-MA-02129/59212287_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0357925, u'prices': u'1,100,000', u'address': u'1650 Columbia Rd # 1, Boston, MA', u'lat': 42.3297241, 'property': {'neighborhood': None, 'bathrooms': '3.0', 'school_district': None, 'heating_sources': 'Gas', 'rooms': 'Dining room, Family room, Master bath, Office', 'home_description': None, 'property_size': '6301', 'num_floors': '2', 'heating_system': 'Forced air', 'photo_gallery': 'http://www.zillow.com/homedetails/1650-Columbia-Rd-1-Boston-MA-02127/2096432914_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood', 'year_updated': '2016', 'bedrooms': '3', 'latitude': '42.32961', 'zillow_id': '2096432914', 'basement': 'Finished', 'year_built': '1917', 'home_size': '2380', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': 'Garage - Detached, Off-street, On-street', 'home_detail_link': 'http://www.zillow.com/homedetails/1650-Columbia-Rd-1-Boston-MA-02127/2096432914_zpid/', 'home_info': 'http://www.zillow.com/homedetails/1650-Columbia-Rd-1-Boston-MA-02127/2096432914_zpid/'}, u'zillow': {u'property_size': u'6301', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'1167241', u'tax_value': None, u'zestimate_valuation_range_high': u'1283965', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.32961', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096432914', u'last_sold_date': None, u'year_built': u'1917', u'zestimate_valuationRange_low': u'887103', u'graph_data_link': None, u'home_size': u'2380', u'longitude': u'-71.03587', u'map_this_home_link': u'http://www.zillow.com/homes/2096432914_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1650-Columbia-Rd-1-Boston-MA-02127/2096432914_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02127', u'long': -71.0426438, u'prices': u'725,000', u'address': u'459 E 8th St, South Boston, MA', u'lat': 42.3312024, u'zillow': {u'property_size': u'871', u'bathrooms': u'1.0', u'last_sold_price': u'275000', u'zestimate_amount': u'709656', u'tax_value': u'425300.0', u'zestimate_valuation_range_high': u'759332', u'tax_year': u'2014', u'zestimate_value_change': u'-18302', u'latitude': u'42.331196', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59151089', u'last_sold_date': u'06/06/2011', u'year_built': u'1900', u'zestimate_valuationRange_low': u'624497', u'graph_data_link': u'http://www.zillow.com/homedetails/459-E-8th-St-South-Boston-MA-02127/59151089_zpid/#charts-and-data', u'home_size': u'2062', u'longitude': u'-71.042652', u'map_this_home_link': u'http://www.zillow.com/homes/59151089_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/459-E-8th-St-South-Boston-MA-02127/59151089_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.02761799999999, u'prices': u'359,000', u'address': u'325 E Eagle St # 1, Boston, MA', u'lat': 42.3811765, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'344957', u'tax_value': None, u'zestimate_valuation_range_high': u'376003', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.38123', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096434629', u'last_sold_date': None, u'year_built': u'1890', u'zestimate_valuationRange_low': u'300113', u'graph_data_link': None, u'home_size': u'702', u'longitude': u'-71.02738', u'map_this_home_link': u'http://www.zillow.com/homes/2096434629_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/325-E-Eagle-St-1-Boston-MA-02128/2096434629_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.063773, u'prices': u'1,249,000', u'address': u'32 Traveler St #210, Boston, MA', u'lat': 42.3444386, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'1146000', u'zestimate_amount': u'1257388', u'tax_value': None, u'zestimate_valuation_range_high': u'1659752', u'tax_year': None, u'zestimate_value_change': u'-153450', u'latitude': u'42.3446', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2099183237', u'last_sold_date': u'11/17/2015', u'year_built': u'2015', u'zestimate_valuationRange_low': u'1119075', u'graph_data_link': None, u'home_size': u'1104', u'longitude': u'-71.0643', u'map_this_home_link': u'http://www.zillow.com/homes/2099183237_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/32-Traveler-St-210-Boston-MA-02118/2099183237_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02129', u'long': -71.05027369999999, u'prices': u'1,850,000', u'address': u'19 Constellation Wharf # 19, Boston, MA', u'lat': 42.3745586, u'zillow': {u'property_size': None, u'bathrooms': u'4.0', u'last_sold_price': None, u'zestimate_amount': u'1831880', u'tax_value': None, u'zestimate_valuation_range_high': u'1923474', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.374417', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096434580', u'last_sold_date': None, u'year_built': u'1987', u'zestimate_valuationRange_low': u'1648692', u'graph_data_link': None, u'home_size': u'2513', u'longitude': u'-71.050234', u'map_this_home_link': u'http://www.zillow.com/homes/2096434580_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/19-Constellation-Wharf-19-Boston-MA-02129/2096434580_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02128', u'long': -71.0306797, u'prices': u'839,900', u'address': u'249 Lexington St, Boston, MA', u'lat': 42.3800627, u'zillow': {u'property_size': u'1742', u'bathrooms': u'3.0', u'last_sold_price': u'60000', u'zestimate_amount': u'842835', u'tax_value': u'263300.0', u'zestimate_valuation_range_high': u'884977', u'tax_year': u'2014', u'zestimate_value_change': u'227023', u'latitude': u'42.380063', u'zestimate_percentile': u'0', u'bedrooms': u'8', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59119384', u'last_sold_date': u'11/20/1987', u'year_built': u'1900', u'zestimate_valuationRange_low': u'792265', u'graph_data_link': u'http://www.zillow.com/homedetails/249-Lexington-St-Boston-MA-02128/59119384_zpid/#charts-and-data', u'home_size': u'3084', u'longitude': u'-71.030729', u'map_this_home_link': u'http://www.zillow.com/homes/59119384_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/249-Lexington-St-Boston-MA-02128/59119384_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.0390517, u'prices': u'749,000', u'address': u'447 Meridian St # 2, Boston, MA', u'lat': 42.3818743, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'616986', u'tax_value': None, u'zestimate_valuation_range_high': u'647835', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.38187', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096458855', u'last_sold_date': None, u'year_built': u'1910', u'zestimate_valuationRange_low': u'579967', u'graph_data_link': None, u'home_size': u'2000', u'longitude': u'-71.039001', u'map_this_home_link': u'http://www.zillow.com/homes/2096458855_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/447-Meridian-St-2-Boston-MA-02128/2096458855_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0431028, u'prices': u'859,000', u'address': u'530 E Broadway # 2, Boston, MA', u'lat': 42.3356751, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'786503', u'tax_value': None, u'zestimate_valuation_range_high': u'912343', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.335853', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096458580', u'last_sold_date': None, u'year_built': u'1910', u'zestimate_valuationRange_low': u'715718', u'graph_data_link': None, u'home_size': u'1082', u'longitude': u'-71.043159', u'map_this_home_link': u'http://www.zillow.com/homes/2096458580_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/530-E-Broadway-2-Boston-MA-02127/2096458580_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.0635677, u'prices': u'1,379,000', u'address': u'40 Traveler St # 308, Boston, MA', u'lat': 42.3443934, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'1374679', u'tax_value': None, u'zestimate_valuation_range_high': u'1539640', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.344594', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096419562', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'1305945', u'graph_data_link': None, u'home_size': u'1254', u'longitude': u'-71.064406', u'map_this_home_link': u'http://www.zillow.com/homes/2096419562_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/40-Traveler-St-308-Boston-MA-02118/2096419562_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02114', u'long': -71.06047699999999, u'prices': u'897,000', u'address': u'121 Portland St # 603, Boston, MA', u'lat': 42.3635949, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'943308', u'tax_value': None, u'zestimate_valuation_range_high': u'1065938', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.363594', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096390798', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'716914', u'graph_data_link': None, u'home_size': u'826', u'longitude': u'-71.060478', u'map_this_home_link': u'http://www.zillow.com/homes/2096390798_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/121-Portland-St-603-Boston-MA-02114/2096390798_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02128', u'long': -71.0386268, u'prices': u'875,000', u'address': u'23 Eutaw St, Boston, MA', u'lat': 42.3786735, u'zillow': {u'property_size': u'2613', u'bathrooms': u'3.0', u'last_sold_price': u'525000', u'zestimate_amount': u'781928', u'tax_value': u'347200.0', u'zestimate_valuation_range_high': u'821024', u'tax_year': u'2014', u'zestimate_value_change': u'109497', u'latitude': u'42.378587', u'zestimate_percentile': u'0', u'bedrooms': u'8', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59213171', u'last_sold_date': u'10/28/2004', u'year_built': u'1910', u'zestimate_valuationRange_low': u'742832', u'graph_data_link': u'http://www.zillow.com/homedetails/23-Eutaw-St-Boston-MA-02128/59213171_zpid/#charts-and-data', u'home_size': u'3102', u'longitude': u'-71.038663', u'map_this_home_link': u'http://www.zillow.com/homes/59213171_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/23-Eutaw-St-Boston-MA-02128/59213171_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0357925, u'prices': u'899,000', u'address': u'1650 Columbia Rd # 2, Boston, MA', u'lat': 42.3297241, 'property': {'neighborhood': None, 'bathrooms': '2.0', 'school_district': None, 'heating_sources': None, 'rooms': 'Family room, Master bath, Walk-in closet', 'home_description': None, 'property_size': '6301', 'num_floors': '1', 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/1650-Columbia-Rd-2-Boston-MA-02127/2096432712_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood', 'year_updated': '2016', 'bedrooms': '3', 'latitude': '42.329594', 'zillow_id': '2096432712', 'basement': None, 'year_built': '1917', 'home_size': '1315', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': 'On-street', 'home_detail_link': 'http://www.zillow.com/homedetails/1650-Columbia-Rd-2-Boston-MA-02127/2096432712_zpid/', 'home_info': 'http://www.zillow.com/homedetails/1650-Columbia-Rd-2-Boston-MA-02127/2096432712_zpid/'}, u'zillow': {u'property_size': u'6301', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'880708', u'tax_value': None, u'zestimate_valuation_range_high': u'1004007', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.329594', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096432712', u'last_sold_date': None, u'year_built': u'1917', u'zestimate_valuationRange_low': u'616496', u'graph_data_link': None, u'home_size': u'1315', u'longitude': u'-71.035886', u'map_this_home_link': u'http://www.zillow.com/homes/2096432712_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1650-Columbia-Rd-2-Boston-MA-02127/2096432712_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02122', u'long': -71.0555626, u'prices': u'788,000', u'address': u'29 Neponset Ave, Dorchester, MA', u'lat': 42.2963709, u'zillow': {u'property_size': u'5662', u'bathrooms': u'3.0', u'last_sold_price': u'759', u'zestimate_amount': u'608571', u'tax_value': u'336800.0', u'zestimate_valuation_range_high': u'876342', u'tax_year': u'2015', u'zestimate_value_change': u'90873', u'latitude': u'42.296354', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59106792', u'last_sold_date': u'02/01/2011', u'year_built': u'2016', u'zestimate_valuationRange_low': u'395571', u'graph_data_link': u'http://www.zillow.com/homedetails/29-Neponset-Ave-Dorchester-MA-02122/59106792_zpid/#charts-and-data', u'home_size': u'2270', u'longitude': u'-71.055572', u'map_this_home_link': u'http://www.zillow.com/homes/59106792_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/29-Neponset-Ave-Dorchester-MA-02122/59106792_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02128', u'long': -71.03217099999999, u'prices': u'849,000', u'address': u'225 E Eagle St, East Boston, MA', u'lat': 42.38111000000001, u'zillow': {u'property_size': u'6098', u'bathrooms': u'3.0', u'last_sold_price': u'285000', u'zestimate_amount': u'709426', u'tax_value': u'294500.0', u'zestimate_valuation_range_high': u'794557', u'tax_year': u'2014', u'zestimate_value_change': u'97680', u'latitude': u'42.38111', u'zestimate_percentile': u'0', u'bedrooms': u'7', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59121945', u'last_sold_date': u'08/02/2000', u'year_built': u'1900', u'zestimate_valuationRange_low': u'645578', u'graph_data_link': u'http://www.zillow.com/homedetails/225-E-Eagle-St-East-Boston-MA-02128/59121945_zpid/#charts-and-data', u'home_size': u'2728', u'longitude': u'-71.032171', u'map_this_home_link': u'http://www.zillow.com/homes/59121945_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/225-E-Eagle-St-East-Boston-MA-02128/59121945_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.06860859999999, u'prices': u'690,000', u'address': u'1241-1255 Adams St # WM104, Boston, MA', u'lat': 42.2710088, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'703723', u'tax_value': None, u'zestimate_valuation_range_high': u'738909', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.271663', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096434273', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'661500', u'graph_data_link': None, u'home_size': u'1554', u'longitude': u'-71.069465', u'map_this_home_link': u'http://www.zillow.com/homes/2096434273_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1241-1255-Adams-St-WM104-Boston-MA-02124/2096434273_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.037336, u'prices': u'619,900', u'address': u'65 Lexington # 3, Boston, MA', u'lat': 42.377548, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'551807', u'tax_value': None, u'zestimate_valuation_range_high': u'778048', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.377548', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096464097', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'441446', u'graph_data_link': None, u'home_size': u'1188', u'longitude': u'-71.037338', u'map_this_home_link': u'http://www.zillow.com/homes/2096464097_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/65-Lexington-3-Boston-MA-02128/2096464097_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02127', u'long': -71.0426438, u'prices': u'1,450,000', u'address': u'461/459 East # 8TH, Boston, MA', u'lat': 42.3312024, u'zillow': {u'property_size': u'2178', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'1408503', u'tax_value': None, u'zestimate_valuation_range_high': u'1577523', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.331195', u'zestimate_percentile': u'0', u'bedrooms': u'6', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096390286', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'1323993', u'graph_data_link': None, u'home_size': u'4149', u'longitude': u'-71.042648', u'map_this_home_link': u'http://www.zillow.com/homes/2096390286_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/461-459-East-8TH-Boston-MA-02127/2096390286_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0357925, u'prices': u'1,300,000', u'address': u'1650 Columbia Rd # 3, Boston, MA', u'lat': 42.3297241, 'property': {'neighborhood': None, 'bathrooms': '2.0', 'school_district': None, 'heating_sources': None, 'rooms': 'Family room, Master bath, Walk-in closet', 'home_description': None, 'property_size': '6301', 'num_floors': '1', 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/1650-Columbia-Rd-3-Boston-MA-02127/2096432567_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood', 'year_updated': '2016', 'bedrooms': '3', 'latitude': '42.32959', 'zillow_id': '2096432567', 'basement': None, 'year_built': '1907', 'home_size': '1317', 'roof': None, 'view': 'City, Water', 'home_type': 'Condominium', 'parking_type': 'Garage - Detached, Off-street, On-street', 'home_detail_link': 'http://www.zillow.com/homedetails/1650-Columbia-Rd-3-Boston-MA-02127/2096432567_zpid/', 'home_info': 'http://www.zillow.com/homedetails/1650-Columbia-Rd-3-Boston-MA-02127/2096432567_zpid/'}, u'zillow': {u'property_size': u'6301', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'1002552', u'tax_value': None, u'zestimate_valuation_range_high': u'1142909', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.32959', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096432567', u'last_sold_date': None, u'year_built': u'1907', u'zestimate_valuationRange_low': u'701786', u'graph_data_link': None, u'home_size': u'1317', u'longitude': u'-71.035865', u'map_this_home_link': u'http://www.zillow.com/homes/2096432567_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1650-Columbia-Rd-3-Boston-MA-02127/2096432567_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.0322932, u'prices': u'599,900', u'address': u'46 Lamson St # 3, Boston, MA', u'lat': 42.3670608, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'603197', u'tax_value': None, u'zestimate_valuation_range_high': u'753996', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.367069', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096449902', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'446366', u'graph_data_link': None, u'home_size': u'1350', u'longitude': u'-71.032333', u'map_this_home_link': u'http://www.zillow.com/homes/2096449902_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/46-Lamson-St-3-Boston-MA-02128/2096449902_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02121', u'long': -71.09126789999999, u'prices': u'1,125,000', u'address': u'37 Abbotsford St, Dorchester, MA', u'lat': 42.3140367, u'zillow': {u'property_size': u'1838', u'bathrooms': u'3.0', u'last_sold_price': u'335000', u'zestimate_amount': u'631591', u'tax_value': u'147400.0', u'zestimate_valuation_range_high': u'701066', u'tax_year': u'2014', u'zestimate_value_change': u'70706', u'latitude': u'42.314037', u'zestimate_percentile': u'0', u'bedrooms': u'8', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59114244', u'last_sold_date': u'09/11/2014', u'year_built': u'1920', u'zestimate_valuationRange_low': u'568432', u'graph_data_link': u'http://www.zillow.com/homedetails/37-Abbotsford-St-Dorchester-MA-02121/59114244_zpid/#charts-and-data', u'home_size': u'4500', u'longitude': u'-71.091266', u'map_this_home_link': u'http://www.zillow.com/homes/59114244_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/37-Abbotsford-St-Dorchester-MA-02121/59114244_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02128', u'long': -71.0307699, u'prices': u'600,000', u'address': u'216 Everett St, Boston, MA', u'lat': 42.3659367, 'property': {'neighborhood': None, 'bathrooms': '3.0', 'school_district': None, 'heating_sources': 'Gas', 'rooms': None, 'home_description': 'Hot Jeffries Point 2-family for sale! Here is a 2/2 bi-level owners unit that was gutted to the studs a few years ago with a 1/1 first floor apartment that will bring in extra income. There is a finished room in the basement, so why not bi-level that unit too for even more money? Why buy a condo when you can buy a two family for the same price? Please see the video, pictures, floor plans, former income and expenses and improvements to become familiar with the property before coming to view it. The property will be delivered vacant. Cash and as is sales will be highly considered, however a higher sales price will be considered if the price. terms and conditions are acceptable to the sellers. All offers due by Monday at 12:00 and will be answered on Monday evening at 8PM. Property will be delivered vacant. Fast Close for cash as-is will be put to the front of the line. Open house this Saturday and Sunday from 9-11AM. Look at the pictures and watch the video!', 'property_size': '435', 'num_floors': '4', 'heating_system': 'Baseboard, Forced air', 'photo_gallery': 'http://www.zillow.com/homedetails/216-Everett-St-Boston-MA-02128/59121131_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Laminate', 'year_updated': '2010', 'bedrooms': '3', 'latitude': '42.36591', 'zillow_id': '59121131', 'basement': 'Partially finished', 'year_built': '1900', 'home_size': '1620', 'roof': None, 'view': None, 'home_type': 'MultiFamily2To4', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/216-Everett-St-Boston-MA-02128/59121131_zpid/', 'home_info': 'http://www.zillow.com/homedetails/216-Everett-St-Boston-MA-02128/59121131_zpid/'}, u'zillow': {u'property_size': u'435', u'bathrooms': u'3.0', u'last_sold_price': u'300189', u'zestimate_amount': u'546023', u'tax_value': u'261600.0', u'zestimate_valuation_range_high': u'595165', u'tax_year': u'2014', u'zestimate_value_change': u'5109', u'latitude': u'42.36591', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59121131', u'last_sold_date': u'02/14/2008', u'year_built': u'1900', u'zestimate_valuationRange_low': u'507801', u'graph_data_link': u'http://www.zillow.com/homedetails/216-Everett-St-Boston-MA-02128/59121131_zpid/#charts-and-data', u'home_size': u'1620', u'longitude': u'-71.030736', u'map_this_home_link': u'http://www.zillow.com/homes/59121131_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/216-Everett-St-Boston-MA-02128/59121131_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0297992, u'prices': u'899,999', u'address': u'768 E 5th St # 2, Boston, MA', u'lat': 42.3341991, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'868071', u'tax_value': None, u'zestimate_valuation_range_high': u'911475', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.334274', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2105220284', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'815987', u'graph_data_link': None, u'home_size': u'1112', u'longitude': u'-71.029785', u'map_this_home_link': u'http://www.zillow.com/homes/2105220284_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/768-E-5th-St-2-Boston-MA-02127/2105220284_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.016921, u'prices': u'449,900', u'address': u'69 Horace St UNIT 1, East Boston, MA', u'lat': 42.382093, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'464571', u'tax_value': None, u'zestimate_valuation_range_high': u'506382', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.382091', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096449916', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'367011', u'graph_data_link': None, u'home_size': u'900', u'longitude': u'-71.016921', u'map_this_home_link': u'http://www.zillow.com/homes/2096449916_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/69-Horace-St-UNIT-1-East-Boston-MA-02128/2096449916_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02136', u'long': -71.11516499999999, u'prices': u'585,000', u'address': u'57 Highland St, Boston, MA', u'lat': 42.251413, u'zillow': {u'property_size': u'12196', u'bathrooms': u'2.0', u'last_sold_price': u'130000', u'zestimate_amount': u'617392', u'tax_value': u'419100.0', u'zestimate_valuation_range_high': u'648262', u'tax_year': u'2014', u'zestimate_value_change': u'-18017', u'latitude': u'42.251413', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59127182', u'last_sold_date': u'01/14/1994', u'year_built': u'1905', u'zestimate_valuationRange_low': u'586522', u'graph_data_link': u'http://www.zillow.com/homedetails/57-Highland-St-Boston-MA-02136/59127182_zpid/#charts-and-data', u'home_size': u'4167', u'longitude': u'-71.115165', u'map_this_home_link': u'http://www.zillow.com/homes/59127182_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/57-Highland-St-Boston-MA-02136/59127182_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.016921, u'prices': u'459,900', u'address': u'69 Horace St UNIT 2, East Boston, MA', u'lat': 42.382093, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'464571', u'tax_value': None, u'zestimate_valuation_range_high': u'506382', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.382091', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096449911', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'367011', u'graph_data_link': None, u'home_size': u'900', u'longitude': u'-71.016921', u'map_this_home_link': u'http://www.zillow.com/homes/2096449911_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/69-Horace-St-UNIT-2-East-Boston-MA-02128/2096449911_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.05210699999999, u'prices': u'210,000', u'address': u'135 Neponset Ave APT 45, Dorchester, MA', u'lat': 42.293773, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'160000', u'zestimate_amount': u'220838', u'tax_value': u'106800.0', u'zestimate_valuation_range_high': u'231880', u'tax_year': u'2014', u'zestimate_value_change': u'10550', u'latitude': u'42.293834', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81947069', u'last_sold_date': u'07/31/2015', u'year_built': u'1965', u'zestimate_valuationRange_low': u'203171', u'graph_data_link': u'http://www.zillow.com/homedetails/135-Neponset-Ave-APT-45-Dorchester-MA-02122/81947069_zpid/#charts-and-data', u'home_size': u'725', u'longitude': u'-71.052022', u'map_this_home_link': u'http://www.zillow.com/homes/81947069_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/135-Neponset-Ave-APT-45-Dorchester-MA-02122/81947069_zpid/'}}, {u'status': u'Pre-Foreclosure', u'zip': None, u'long': -1, u'prices': -1, u'address': u'Sign in for details', u'lat': -1}, {u'status': u'Apartment For Sale', u'zip': u'02136', u'long': -71.119036, u'prices': u'540,000', u'address': u'124 Central Ave, Boston, MA', u'lat': 42.262398, u'zillow': {u'property_size': u'5227', u'bathrooms': u'3.0', u'last_sold_price': u'427500', u'zestimate_amount': u'497701', u'tax_value': u'258800.0', u'zestimate_valuation_range_high': u'527563', u'tax_year': u'2014', u'zestimate_value_change': u'17599', u'latitude': u'42.262398', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59126388', u'last_sold_date': u'08/14/2015', u'year_built': u'1905', u'zestimate_valuationRange_low': u'437977', u'graph_data_link': u'http://www.zillow.com/homedetails/124-Central-Ave-Boston-MA-02136/59126388_zpid/#charts-and-data', u'home_size': u'2048', u'longitude': u'-71.119036', u'map_this_home_link': u'http://www.zillow.com/homes/59126388_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/124-Central-Ave-Boston-MA-02136/59126388_zpid/'}}, {u'status': u'Lot/Land For Sale', u'zip': u'02126', u'long': -71.08933999999999, u'prices': u'400,000', u'address': u'769-771 Morton St, Boston, MA', u'lat': 42.283062, u'zillow': {u'property_size': u'8712', u'bathrooms': None, u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.283199', u'zestimate_percentile': u'0', u'bedrooms': None, u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096444339', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': None, u'longitude': u'-71.089133', u'map_this_home_link': u'http://www.zillow.com/homes/2096444339_zpid/', u'home_type': u'VacantResidentialLand', u'home_detail_link': u'http://www.zillow.com/homedetails/769-771-Morton-St-Boston-MA-02126/2096444339_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.02761799999999, u'prices': u'369,000', u'address': u'325 E Eagle St # 2, Boston, MA', u'lat': 42.3811765, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'324083', u'tax_value': None, u'zestimate_valuation_range_high': u'346769', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.38116', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096406858', u'last_sold_date': None, u'year_built': u'1890', u'zestimate_valuationRange_low': u'298156', u'graph_data_link': None, u'home_size': u'732', u'longitude': u'-71.027664', u'map_this_home_link': u'http://www.zillow.com/homes/2096406858_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/325-E-Eagle-St-2-Boston-MA-02128/2096406858_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02135', u'long': -71.1498763, u'prices': u'399,000', u'address': u'42 Orkney Rd APT 4, Boston, MA', u'lat': 42.336801, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'Fantastic location close to all 3 trains (B,C,D) in Cleveland Circle. This spacious 2 bedroom unit with high ceilings and hardwood floors throughout, features updated kitchen, large closets, updated bathroom, laundry in unit and private balcony. Extra storage in basement. Steps to Brookline, shops, community pool , parks and reservoir. ', 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/42-Orkney-Rd-APT-4-Boston-MA-02135/2096602470_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '2', 'latitude': '42.33728', 'zillow_id': '2096602470', 'basement': None, 'year_built': '1910', 'home_size': '828', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/42-Orkney-Rd-APT-4-Boston-MA-02135/2096602470_zpid/', 'home_info': 'http://www.zillow.com/homedetails/42-Orkney-Rd-APT-4-Boston-MA-02135/2096602470_zpid/'}, u'zillow': {u'property_size': u'828', u'bathrooms': u'1.0', u'last_sold_price': u'305000', u'zestimate_amount': u'425907', u'tax_value': u'259600.0', u'zestimate_valuation_range_high': u'451461', u'tax_year': u'2014', u'zestimate_value_change': None, u'latitude': u'42.33728', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096602470', u'last_sold_date': u'04/27/2012', u'year_built': u'1910', u'zestimate_valuationRange_low': u'391834', u'graph_data_link': u'http://www.zillow.com/homedetails/42-Orkney-Rd-APT-4-Boston-MA-02135/59095032_zpid/#charts-and-data', u'home_size': u'828', u'longitude': u'-71.14814', u'map_this_home_link': u'http://www.zillow.com/homes/2096602470_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/42-Orkney-Rd-APT-4-Boston-MA-02135/2096602470_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02126', u'long': -71.0935988, u'prices': u'299,000', u'address': u'47 Goodale Rd # 2, Boston, MA', u'lat': 42.283885, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'376982', u'tax_value': None, u'zestimate_valuation_range_high': u'508926', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.283602', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096537260', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'248808', u'graph_data_link': None, u'home_size': u'1322', u'longitude': u'-71.093373', u'map_this_home_link': u'http://www.zillow.com/homes/2096537260_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/47-Goodale-Rd-2-Boston-MA-02126/2096537260_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02113', u'long': -71.056105, u'prices': u'849,500', u'address': u'60 Salem St # 02, Boston, MA', u'lat': 42.363265, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'834708', u'tax_value': None, u'zestimate_valuation_range_high': u'959914', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.363359', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096509050', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'759584', u'graph_data_link': None, u'home_size': u'851', u'longitude': u'-71.056088', u'map_this_home_link': u'http://www.zillow.com/homes/2096509050_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/60-Salem-St-02-Boston-MA-02113/2096509050_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.03253819999999, u'prices': u'378,274', u'address': u'156 Porter St APT 312, Boston, MA', u'lat': 42.3713341, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'345000', u'zestimate_amount': u'391858', u'tax_value': u'236400.0', u'zestimate_valuation_range_high': u'415369', u'tax_year': u'2014', u'zestimate_value_change': u'-8913', u'latitude': u'42.371398', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'71489731', u'last_sold_date': u'11/30/2015', u'year_built': u'1910', u'zestimate_valuationRange_low': u'372265', u'graph_data_link': u'http://www.zillow.com/homedetails/156-Porter-St-APT-312-Boston-MA-02128/71489731_zpid/#charts-and-data', u'home_size': u'1018', u'longitude': u'-71.032432', u'map_this_home_link': u'http://www.zillow.com/homes/71489731_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/156-Porter-St-APT-312-Boston-MA-02128/71489731_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02135', u'long': -71.163325, u'prices': u'434,000', u'address': u'141 Brooks St UNIT 3, Boston, MA', u'lat': 42.3526507, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'322500', u'zestimate_amount': u'461022', u'tax_value': u'278000.0', u'zestimate_valuation_range_high': u'488683', u'tax_year': u'2014', u'zestimate_value_change': u'6762', u'latitude': u'42.352818', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59094837', u'last_sold_date': u'10/22/2004', u'year_built': u'1920', u'zestimate_valuationRange_low': u'428750', u'graph_data_link': u'http://www.zillow.com/homedetails/141-Brooks-St-UNIT-3-Boston-MA-02135/59094837_zpid/#charts-and-data', u'home_size': u'1301', u'longitude': u'-71.163192', u'map_this_home_link': u'http://www.zillow.com/homes/59094837_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/141-Brooks-St-UNIT-3-Boston-MA-02135/59094837_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02115', u'long': -71.089246, u'prices': u'575,000', u'address': u'483 Beacon St APT 66, Boston, MA', u'lat': 42.350837, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'Gorgeous corner 1 bedroom, totally renovated with high ceilings and crown moldings. Fabulous city views from all the rooms. Living room with open Kitchen has beautiful granite counter tops and a small breakfast bar. Cherry cabinets, Bosch dishwasher and stainless refrigerator. Beautiful stained oak hardwood floors in immaculate condition. Tiled bathroom with views of the city and whirlpool tub. Storage avail for rent in building, elevator building has common laundry and central A/C. Pets O.K. Best location very close to The Charles River, MIT, Newbury Street and Public transportation as well as Kenmore Square.\\n***Principals only please. No real estate agents.***', 'property_size': '475', 'num_floors': '1', 'heating_system': 'Forced air', 'photo_gallery': 'http://www.zillow.com/homedetails/483-Beacon-St-APT-66-Boston-MA-02115/59169185_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood', 'year_updated': '2008', 'bedrooms': '1', 'latitude': '42.350909', 'zillow_id': '59169185', 'basement': None, 'year_built': '1880', 'home_size': '475', 'roof': None, 'view': 'City', 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/483-Beacon-St-APT-66-Boston-MA-02115/59169185_zpid/', 'home_info': 'http://www.zillow.com/homedetails/483-Beacon-St-APT-66-Boston-MA-02115/59169185_zpid/'}, u'zillow': {u'property_size': u'475', u'bathrooms': u'1.0', u'last_sold_price': u'498000', u'zestimate_amount': u'523507', u'tax_value': u'346400.0', u'zestimate_valuation_range_high': u'560152', u'tax_year': u'2014', u'zestimate_value_change': u'-26041', u'latitude': u'42.350909', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59169185', u'last_sold_date': u'09/29/2014', u'year_built': u'1880', u'zestimate_valuationRange_low': u'486862', u'graph_data_link': u'http://www.zillow.com/homedetails/483-Beacon-St-APT-66-Boston-MA-02115/59169185_zpid/#charts-and-data', u'home_size': u'475', u'longitude': u'-71.08914', u'map_this_home_link': u'http://www.zillow.com/homes/59169185_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/483-Beacon-St-APT-66-Boston-MA-02115/59169185_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02190', u'long': -71.057655, u'prices': u'615,000', u'address': u'10 Dorset Park Ln, Weymouth, MA', u'lat': 42.323413, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.170749', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096513671', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'1852', u'longitude': u'-70.942791', u'map_this_home_link': u'http://www.zillow.com/homes/2096513671_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/10-Dorset-Park-Ln-UNIT-16-Weymouth-MA-02190/2096513671_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.0796163, u'prices': u'979,000', u'address': u'534 Massachusetts Ave APT 3, Boston, MA', u'lat': 42.33856309999999, u'zillow': {u'property_size': u'1240', u'bathrooms': u'1.0', u'last_sold_price': u'624000', u'zestimate_amount': u'951697', u'tax_value': u'688800.0', u'zestimate_valuation_range_high': u'1008799', u'tax_year': u'2015', u'zestimate_value_change': u'-58618', u'latitude': u'42.338671', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59184339', u'last_sold_date': u'06/07/2010', u'year_built': u'1840', u'zestimate_valuationRange_low': u'894595', u'graph_data_link': u'http://www.zillow.com/homedetails/534-Massachusetts-Ave-APT-3-Boston-MA-02118/59184339_zpid/#charts-and-data', u'home_size': u'1240', u'longitude': u'-71.07904', u'map_this_home_link': u'http://www.zillow.com/homes/59184339_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/534-Massachusetts-Ave-APT-3-Boston-MA-02118/59184339_zpid/'}}, {u'status': u'Auction', u'zip': u'02124', u'long': -71.05962199999999, u'prices': u'280K', u'address': u'51 Florida St UNIT 2, Dorchester Center, MA', u'lat': 42.290135, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': None, 'property_size': '1120', 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/51-Florida-St-UNIT-2-Dorchester-Center-MA-02124/71496770_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '3', 'latitude': '42.290134', 'zillow_id': '71496770', 'basement': None, 'year_built': '1905', 'home_size': '1120', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/51-Florida-St-UNIT-2-Dorchester-Center-MA-02124/71496770_zpid/', 'home_info': 'http://www.zillow.com/homedetails/51-Florida-St-UNIT-2-Dorchester-Center-MA-02124/71496770_zpid/'}, u'zillow': {u'property_size': u'1120', u'bathrooms': u'1.0', u'last_sold_price': u'268500', u'zestimate_amount': u'377581', u'tax_value': u'213900.0', u'zestimate_valuation_range_high': u'404012', u'tax_year': u'2014', u'zestimate_value_change': u'8511', u'latitude': u'42.290134', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'71496770', u'last_sold_date': u'05/17/2010', u'year_built': u'1905', u'zestimate_valuationRange_low': u'351150', u'graph_data_link': u'http://www.zillow.com/homedetails/51-Florida-St-UNIT-2-Dorchester-Center-MA-02124/71496770_zpid/#charts-and-data', u'home_size': u'1120', u'longitude': u'-71.059623', u'map_this_home_link': u'http://www.zillow.com/homes/71496770_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/51-Florida-St-UNIT-2-Dorchester-Center-MA-02124/71496770_zpid/'}}, {u'status': u'For Sale by Owner', u'zip': u'02120', u'long': -71.10445399999999, u'prices': u'420,000', u'address': u'10 Bucknam St # FL 2ND, Boston, MA', u'lat': 42.327238, u'zillow': {u'property_size': u'1099', u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'537726', u'tax_value': None, u'zestimate_valuation_range_high': u'564612', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.327511', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096674704', u'last_sold_date': None, u'year_built': u'1905', u'zestimate_valuationRange_low': u'483953', u'graph_data_link': None, u'home_size': u'1099', u'longitude': u'-71.104202', u'map_this_home_link': u'http://www.zillow.com/homes/2096674704_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/10-Bucknam-St-FL-2ND-Boston-MA-02120/2096674704_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0504325, u'prices': u'529,000', u'address': u'156 I St UNIT 3, South Boston, MA', u'lat': 42.3400624, u'zillow': {u'property_size': u'695', u'bathrooms': u'1.0', u'last_sold_price': u'412000', u'zestimate_amount': u'514361', u'tax_value': u'316900.0', u'zestimate_valuation_range_high': u'550366', u'tax_year': u'2014', u'zestimate_value_change': u'39052', u'latitude': u'42.332798', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'87796048', u'last_sold_date': u'06/05/2013', u'year_built': u'1905', u'zestimate_valuationRange_low': u'478356', u'graph_data_link': u'http://www.zillow.com/homedetails/156-I-St-UNIT-3-South-Boston-MA-02127/87796048_zpid/#charts-and-data', u'home_size': u'695', u'longitude': u'-71.039642', u'map_this_home_link': u'http://www.zillow.com/homes/87796048_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/156-I-St-UNIT-3-South-Boston-MA-02127/87796048_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02113', u'long': -71.0551855, u'prices': u'10,000,000', u'address': u'215-217 Hanover St, Boston, MA', u'lat': 42.362764, 'property': {'neighborhood': None, 'bathrooms': None, 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': '215-217 Hanover Street\\nBuilding and turnkey restaurant included.\\n\\nPrime location! Rare opportunity to own a three story brick building and restaurant in the North End of Boston. This 14k + - sqft commercial property is located on the desirable Hanover Street just steps away from the Rose Kennedy Greenway and Faneuil Hall Market. \\nCall: Toni Gilardi 617-529-4461 or Maria Paola 617-953-4647', 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/215-217-Hanover-St-Boston-MA-02113/2096575932_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': None, 'latitude': '42.365335', 'zillow_id': '2096575932', 'basement': None, 'year_built': None, 'home_size': '14000', 'roof': None, 'view': None, 'home_type': 'Miscellaneous', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/215-217-Hanover-St-Boston-MA-02113/2096575932_zpid/', 'home_info': 'http://www.zillow.com/homedetails/215-217-Hanover-St-Boston-MA-02113/2096575932_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': None, u'last_sold_price': None, u'zestimate_amount': u'1577842', u'tax_value': None, u'zestimate_valuation_range_high': u'1735626', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.365335', u'zestimate_percentile': u'0', u'bedrooms': u'0', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096575932', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'1498950', u'graph_data_link': None, u'home_size': u'14000', u'longitude': u'-71.055147', u'map_this_home_link': u'http://www.zillow.com/homes/2096575932_zpid/', u'home_type': u'Miscellaneous', u'home_detail_link': u'http://www.zillow.com/homedetails/215-217-Hanover-St-Boston-MA-02113/2096575932_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0399334, u'prices': u'385,000', u'address': u'67 Park Dr # G-1, Boston, MA', u'lat': 42.3358628, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': None, 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/67-Park-Dr-G-1-Boston-MA-02215/2096475779_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '1', 'latitude': '42.34402', 'zillow_id': '2096475779', 'basement': None, 'year_built': None, 'home_size': '530', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/67-Park-Dr-G-1-Boston-MA-02215/2096475779_zpid/', 'home_info': 'http://www.zillow.com/homedetails/67-Park-Dr-G-1-Boston-MA-02215/2096475779_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'472682', u'tax_value': None, u'zestimate_valuation_range_high': u'619213', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.34402', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096475779', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'392326', u'graph_data_link': None, u'home_size': u'530', u'longitude': u'-71.0948', u'map_this_home_link': u'http://www.zillow.com/homes/2096475779_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/67-Park-Dr-G-1-Boston-MA-02215/2096475779_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02119', u'long': -71.0756287, u'prices': u'279,999', u'address': u'235 Eustis St UNIT 3, Roxbury, MA', u'lat': 42.3271119, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'Great Location! Less than 10 Minutes to Downtown Boston. Great views of Boston from Living Room and Private Patio. Central A/C, S.S. Appliances, Maple Cabinets, Granite Counter, Tiled Bath, All Hardwood Floors, Private Patio/Deck, Washer/Dryer hookup and Storage in Basement, 2 Car Parking. EASY ACCESS to Highway and other Amenities.', 'property_size': '778', 'num_floors': '1', 'heating_system': 'Forced air', 'photo_gallery': 'http://www.zillow.com/homedetails/235-Eustis-St-UNIT-3-Roxbury-MA-02119/71505221_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': '2005', 'bedrooms': '3', 'latitude': '42.327102', 'zillow_id': '71505221', 'basement': None, 'year_built': '2004', 'home_size': '1100', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/235-Eustis-St-UNIT-3-Roxbury-MA-02119/71505221_zpid/', 'home_info': 'http://www.zillow.com/homedetails/235-Eustis-St-UNIT-3-Roxbury-MA-02119/71505221_zpid/'}, u'zillow': {u'property_size': u'778', u'bathrooms': u'1.0', u'last_sold_price': u'156900', u'zestimate_amount': u'379683', u'tax_value': u'190900.0', u'zestimate_valuation_range_high': u'402464', u'tax_year': u'2014', u'zestimate_value_change': u'2779', u'latitude': u'42.327102', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'71505221', u'last_sold_date': u'04/02/2008', u'year_built': u'2004', u'zestimate_valuationRange_low': u'360699', u'graph_data_link': u'http://www.zillow.com/homedetails/235-Eustis-St-UNIT-3-Roxbury-MA-02119/71505221_zpid/#charts-and-data', u'home_size': u'1100', u'longitude': u'-71.075645', u'map_this_home_link': u'http://www.zillow.com/homes/71505221_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/235-Eustis-St-UNIT-3-Roxbury-MA-02119/71505221_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02129', u'long': -71.07775079999999, u'prices': u'499,000', u'address': u'83 Cambridge St UNIT 1, Boston, MA', u'lat': 42.3829635, u'zillow': {u'property_size': u'1240', u'bathrooms': u'3.0', u'last_sold_price': u'272500', u'zestimate_amount': u'655586', u'tax_value': u'281880.0', u'zestimate_valuation_range_high': u'1311172', u'tax_year': u'2014', u'zestimate_value_change': u'-195773', u'latitude': u'42.382792', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59098262', u'last_sold_date': u'04/29/2011', u'year_built': u'1875', u'zestimate_valuationRange_low': u'367128', u'graph_data_link': u'http://www.zillow.com/homedetails/83-Cambridge-St-UNIT-1-Boston-MA-02129/59098262_zpid/#charts-and-data', u'home_size': u'1240', u'longitude': u'-71.077726', u'map_this_home_link': u'http://www.zillow.com/homes/59098262_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/83-Cambridge-St-UNIT-1-Boston-MA-02129/59098262_zpid/'}}, {u'status': u'Auction', u'zip': u'02131', u'long': -71.11324259999999, u'prices': -1, u'address': u'822 Canterbury St, Boston, MA', u'lat': 42.2817283, 'property': {'neighborhood': None, 'bathrooms': '3.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': None, 'property_size': '4356', 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/822-Canterbury-St-Boston-MA-02131/59146961_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '4', 'latitude': '42.281719', 'zillow_id': '59146961', 'basement': None, 'year_built': '1950', 'home_size': '1666', 'roof': None, 'view': None, 'home_type': 'SingleFamily', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/822-Canterbury-St-Boston-MA-02131/59146961_zpid/', 'home_info': 'http://www.zillow.com/homedetails/822-Canterbury-St-Boston-MA-02131/59146961_zpid/'}, u'zillow': {u'property_size': u'4356', u'bathrooms': u'3.0', u'last_sold_price': u'100000', u'zestimate_amount': u'456524', u'tax_value': u'254600.0', u'zestimate_valuation_range_high': u'502176', u'tax_year': u'2015', u'zestimate_value_change': u'21114', u'latitude': u'42.281719', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59146961', u'last_sold_date': u'09/15/1995', u'year_built': u'1950', u'zestimate_valuationRange_low': u'378915', u'graph_data_link': u'http://www.zillow.com/homedetails/822-Canterbury-St-Boston-MA-02131/59146961_zpid/#charts-and-data', u'home_size': u'1666', u'longitude': u'-71.113263', u'map_this_home_link': u'http://www.zillow.com/homes/59146961_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/822-Canterbury-St-Boston-MA-02131/59146961_zpid/'}}, {u'status': u'Coming Soon', u'zip': u'02121', u'long': -71.09135400000001, u'prices': u'299,900', u'address': u'81 Ruthven St # 1, Dorchester, MA', u'lat': 42.3130359, 'property': {'neighborhood': None, 'bathrooms': None, 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': None, 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/81-Ruthven-St-1-Dorchester-MA-02121/2096609979_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': None, 'latitude': '42.31294', 'zillow_id': '2096609979', 'basement': None, 'year_built': None, 'home_size': None, 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/81-Ruthven-St-1-Dorchester-MA-02121/2096609979_zpid/', 'home_info': 'http://www.zillow.com/homedetails/81-Ruthven-St-1-Dorchester-MA-02121/2096609979_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': None, u'last_sold_price': None, u'zestimate_amount': u'690458', u'tax_value': None, u'zestimate_valuation_range_high': u'724981', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.31294', u'zestimate_percentile': u'0', u'bedrooms': u'0', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096609979', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'649031', u'graph_data_link': None, u'home_size': None, u'longitude': u'-71.09079', u'map_this_home_link': u'http://www.zillow.com/homes/2096609979_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/81-Ruthven-St-1-Dorchester-MA-02121/2096609979_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.163887, u'prices': u'399,000', u'address': u'63 Baker St, Boston, MA', u'lat': 42.272445, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'To settle an estate,this home is looking for a new owner and being sold in \"as is\" condition. Built in the 1930\\'s the owners have resided in their home for 36 years. The home offers 7 rooms, 4 bedrooms, 1 bath, and a small heated sunroom. It has good bones and generous size rooms, and a fenced in yard. Wall to wall carpeting covers most of the floors but there appears to be hardwood floors underneath. Large kitchen, fireplace living room, and dining room with built in china cabinet. Roof is 15 yrs. old, boiler 20 yrs. old, water heater 3 yrs. old, and 2 yr. old deck. On the bus line, convenient location to schools, and shopping.', 'property_size': '5662', 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/63-Baker-St-Boston-MA-02132/59159472_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '4', 'latitude': '42.272448', 'zillow_id': '59159472', 'basement': None, 'year_built': '1930', 'home_size': '1347', 'roof': None, 'view': None, 'home_type': 'SingleFamily', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/63-Baker-St-Boston-MA-02132/59159472_zpid/', 'home_info': 'http://www.zillow.com/homedetails/63-Baker-St-Boston-MA-02132/59159472_zpid/'}, u'zillow': {u'property_size': u'5662', u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'458855', u'tax_value': u'324100.0', u'zestimate_valuation_range_high': u'486386', u'tax_year': u'2014', u'zestimate_value_change': u'-1838', u'latitude': u'42.272448', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59159472', u'last_sold_date': None, u'year_built': u'1930', u'zestimate_valuationRange_low': u'417558', u'graph_data_link': u'http://www.zillow.com/homedetails/63-Baker-St-Boston-MA-02132/59159472_zpid/#charts-and-data', u'home_size': u'1347', u'longitude': u'-71.163886', u'map_this_home_link': u'http://www.zillow.com/homes/59159472_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/63-Baker-St-Boston-MA-02132/59159472_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.0339767, u'prices': u'309,000', u'address': u'56-3 Seaver St # 3, Boston, MA', u'lat': 42.365808, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'327968', u'tax_value': None, u'zestimate_valuation_range_high': u'347646', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.311912', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096566578', u'last_sold_date': None, u'year_built': u'1920', u'zestimate_valuationRange_low': u'311570', u'graph_data_link': None, u'home_size': u'975', u'longitude': u'-71.093208', u'map_this_home_link': u'http://www.zillow.com/homes/2096566578_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/56-3-Seaver-St-3-Boston-MA-02121/2096566578_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02115', u'long': -71.0855584, u'prices': u'11,900,000', u'address': u'401 Beacon St # 2/3, Boston, MA', u'lat': 42.3517359, u'zillow': {u'property_size': None, u'bathrooms': u'6.0', u'last_sold_price': None, u'zestimate_amount': u'10870525', u'tax_value': None, u'zestimate_valuation_range_high': u'11414051', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.35165', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096483650', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'1195758', u'graph_data_link': None, u'home_size': u'5750', u'longitude': u'-71.08554', u'map_this_home_link': u'http://www.zillow.com/homes/2096483650_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/401-Beacon-St-2-3-Boston-MA-02115/2096483650_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0746841, u'prices': u'585,000', u'address': u'150 Chandler St APT 6, Boston, MA', u'lat': 42.3458216, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'409000', u'zestimate_amount': u'596527', u'tax_value': u'358900.0', u'zestimate_valuation_range_high': u'632319', u'tax_year': u'2014', u'zestimate_value_change': u'9475', u'latitude': u'42.346074', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59164894', u'last_sold_date': u'11/24/2008', u'year_built': u'1899', u'zestimate_valuationRange_low': u'566701', u'graph_data_link': u'http://www.zillow.com/homedetails/150-Chandler-St-APT-6-Boston-MA-02116/59164894_zpid/#charts-and-data', u'home_size': u'600', u'longitude': u'-71.074061', u'map_this_home_link': u'http://www.zillow.com/homes/59164894_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/150-Chandler-St-APT-6-Boston-MA-02116/59164894_zpid/'}}, {u'status': u'Foreclosed', u'zip': u'02136', u'long': -71.12598899999999, u'prices': -1, u'address': u'6 Magee St, Boston, MA', u'lat': 42.264238, u'zillow': {u'property_size': u'5662', u'bathrooms': u'1.0', u'last_sold_price': u'319000', u'zestimate_amount': u'362471', u'tax_value': u'222100.0', u'zestimate_valuation_range_high': u'380595', u'tax_year': u'2014', u'zestimate_value_change': u'2683', u'latitude': u'42.264238', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59126241', u'last_sold_date': u'07/29/2005', u'year_built': u'1942', u'zestimate_valuationRange_low': u'344347', u'graph_data_link': u'http://www.zillow.com/homedetails/6-Magee-St-Boston-MA-02136/59126241_zpid/#charts-and-data', u'home_size': u'907', u'longitude': u'-71.125989', u'map_this_home_link': u'http://www.zillow.com/homes/59126241_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/6-Magee-St-Boston-MA-02136/59126241_zpid/'}}, {u'status': u'Pre-Foreclosure', u'zip': None, u'long': -1, u'prices': -1, u'address': u'Sign in for details', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02215', u'long': -71.09308949999999, u'prices': u'800,000', u'address': u'464 Commonwealth Ave APT 55, Boston, MA', u'lat': 42.3485852, u'zillow': {u'property_size': u'982', u'bathrooms': u'2.0', u'last_sold_price': u'525000', u'zestimate_amount': u'737122', u'tax_value': u'441000.0', u'zestimate_valuation_range_high': u'773978', u'tax_year': u'2014', u'zestimate_value_change': u'9455', u'latitude': u'42.348769', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59178148', u'last_sold_date': u'12/02/2013', u'year_built': u'1916', u'zestimate_valuationRange_low': u'685523', u'graph_data_link': u'http://www.zillow.com/homedetails/464-Commonwealth-Ave-APT-55-Boston-MA-02215/59178148_zpid/#charts-and-data', u'home_size': u'982', u'longitude': u'-71.093212', u'map_this_home_link': u'http://www.zillow.com/homes/59178148_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/464-Commonwealth-Ave-APT-55-Boston-MA-02215/59178148_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.035957, u'prices': u'390,000', u'address': u'683 E 2nd St UNIT 2, South Boston, MA', u'lat': 42.337126, u'zillow': {u'property_size': u'523', u'bathrooms': u'1.0', u'last_sold_price': u'307500', u'zestimate_amount': u'411484', u'tax_value': u'261700.0', u'zestimate_valuation_range_high': u'440288', u'tax_year': u'2015', u'zestimate_value_change': u'16986', u'latitude': u'42.337128', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'67096125', u'last_sold_date': u'03/12/2014', u'year_built': u'1890', u'zestimate_valuationRange_low': u'374450', u'graph_data_link': u'http://www.zillow.com/homedetails/683-E-2nd-St-UNIT-2-South-Boston-MA-02127/67096125_zpid/#charts-and-data', u'home_size': u'532', u'longitude': u'-71.035957', u'map_this_home_link': u'http://www.zillow.com/homes/67096125_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/683-E-2nd-St-UNIT-2-South-Boston-MA-02127/67096125_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02215', u'long': -71.0974212, u'prices': u'515,000', u'address': u'82 Jersey St UNIT B2, Boston, MA', u'lat': 42.3440912, u'zillow': {u'property_size': u'776', u'bathrooms': u'2.0', u'last_sold_price': u'247000', u'zestimate_amount': u'592059', u'tax_value': u'309600.0', u'zestimate_valuation_range_high': u'651265', u'tax_year': u'2014', u'zestimate_value_change': u'-65448', u'latitude': u'42.344108', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59179598', u'last_sold_date': u'05/07/2010', u'year_built': u'1920', u'zestimate_valuationRange_low': u'544694', u'graph_data_link': u'http://www.zillow.com/homedetails/82-Jersey-St-UNIT-B2-Boston-MA-02215/59179598_zpid/#charts-and-data', u'home_size': u'800', u'longitude': u'-71.09732', u'map_this_home_link': u'http://www.zillow.com/homes/59179598_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/82-Jersey-St-UNIT-B2-Boston-MA-02215/59179598_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02131', u'long': -71.1315135, u'prices': u'419,000', u'address': u'550 Poplar St, Boston, MA', u'lat': 42.2718733, u'zillow': {u'property_size': u'6098', u'bathrooms': u'1.0', u'last_sold_price': u'290000', u'zestimate_amount': u'438237', u'tax_value': u'295600.0', u'zestimate_valuation_range_high': u'464531', u'tax_year': u'2015', u'zestimate_value_change': u'12880', u'latitude': u'42.271877', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59146575', u'last_sold_date': u'02/26/2010', u'year_built': u'1942', u'zestimate_valuationRange_low': u'411943', u'graph_data_link': u'http://www.zillow.com/homedetails/550-Poplar-St-Boston-MA-02131/59146575_zpid/#charts-and-data', u'home_size': u'1304', u'longitude': u'-71.131548', u'map_this_home_link': u'http://www.zillow.com/homes/59146575_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/550-Poplar-St-Boston-MA-02131/59146575_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02124', u'long': -71.07654269999999, u'prices': u'400,000', u'address': u'586 Park St, Dorchester Center, MA', u'lat': 42.2945706, u'zillow': {u'property_size': u'3920', u'bathrooms': u'3.0', u'last_sold_price': u'218000', u'zestimate_amount': u'462501', u'tax_value': u'249600.0', u'zestimate_valuation_range_high': u'541126', u'tax_year': u'2014', u'zestimate_value_change': u'-35508', u'latitude': u'42.294537', u'zestimate_percentile': u'0', u'bedrooms': u'7', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59106001', u'last_sold_date': u'11/16/2000', u'year_built': u'1910', u'zestimate_valuationRange_low': u'383876', u'graph_data_link': u'http://www.zillow.com/homedetails/586-Park-St-Dorchester-Center-MA-02124/59106001_zpid/#charts-and-data', u'home_size': u'3007', u'longitude': u'-71.07652', u'map_this_home_link': u'http://www.zillow.com/homes/59106001_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/586-Park-St-Dorchester-Center-MA-02124/59106001_zpid/'}}, {u'status': u'Pre-Foreclosure', u'zip': None, u'long': -1, u'prices': -1, u'address': u'Sign in for details', u'lat': -1}, {u'status': u'Lot/Land For Sale', u'zip': u'02115', u'long': -71.0860598, u'prices': u'320,000', u'address': u'411 Beacon St, Boston, MA', u'lat': 42.3517538, u'zillow': {u'property_size': None, u'bathrooms': None, u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.351534', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2106032314', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': None, u'longitude': u'-71.085955', u'map_this_home_link': u'http://www.zillow.com/homes/2106032314_zpid/', u'home_type': u'VacantResidentialLand', u'home_detail_link': u'http://www.zillow.com/homedetails/411-Beacon-St-Boston-MA-02115/2106032314_zpid/'}}, {u'status': u'Lot/Land For Sale', u'zip': u'35960', u'long': -85.7141889, u'prices': u'99,900', u'address': u'3 County Road 514, Centre, AL', u'lat': 34.18062159999999}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0369923, u'prices': u'449,000', u'address': u'1 Beckler Ave APT 3, Boston, MA', u'lat': 42.3333827, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'465939', u'tax_value': None, u'zestimate_valuation_range_high': u'493895', u'tax_year': None, u'zestimate_value_change': u'25655', u'latitude': u'42.333381', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2131055054', u'last_sold_date': None, u'year_built': u'1890', u'zestimate_valuationRange_low': u'442642', u'graph_data_link': None, u'home_size': u'593', u'longitude': u'-71.036979', u'map_this_home_link': u'http://www.zillow.com/homes/2131055054_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1-Beckler-Ave-APT-3-Boston-MA-02127/2131055054_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02119', u'long': -71.09595399999999, u'prices': u'349,000', u'address': u'17 Beech Glen St # 17, Boston, MA', u'lat': 42.325636, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'354299', u'tax_value': None, u'zestimate_valuation_range_high': u'372014', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.325637', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096649845', u'last_sold_date': None, u'year_built': u'1999', u'zestimate_valuationRange_low': u'336584', u'graph_data_link': None, u'home_size': u'525', u'longitude': u'-71.095954', u'map_this_home_link': u'http://www.zillow.com/homes/2096649845_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/17-Beech-Glen-St-17-Boston-MA-02119/2096649845_zpid/'}}, {u'status': u'Pre-Foreclosure', u'zip': None, u'long': -1, u'prices': -1, u'address': u'Sign in for details', u'lat': -1}, {u'status': u'Townhouse For Sale', u'zip': u'02128', u'long': -71.0302562, u'prices': u'674,900', u'address': u'5 Ardee St # 5, Boston, MA', u'lat': 42.366188, u'zillow': {u'property_size': None, u'bathrooms': u'25.0', u'last_sold_price': None, u'zestimate_amount': u'617990', u'tax_value': None, u'zestimate_valuation_range_high': u'648889', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.366092', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096500491', u'last_sold_date': None, u'year_built': u'1999', u'zestimate_valuationRange_low': u'580911', u'graph_data_link': None, u'home_size': u'1836', u'longitude': u'-71.030326', u'map_this_home_link': u'http://www.zillow.com/homes/2096500491_zpid/', u'home_type': u'Townhouse', u'home_detail_link': u'http://www.zillow.com/homedetails/5-Ardee-St-5-Boston-MA-02128/2096500491_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02108', u'long': -71.071984, u'prices': u'2,690,000', u'address': u'107 Chestnut St APT 2, Boston, MA', u'lat': 42.356597, u'zillow': {u'property_size': u'2178', u'bathrooms': u'3.0', u'last_sold_price': u'1725000', u'zestimate_amount': u'2750578', u'tax_value': u'1322800.0', u'zestimate_valuation_range_high': u'2888107', u'tax_year': u'2014', u'zestimate_value_change': u'-14974', u'latitude': u'42.356597', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59172853', u'last_sold_date': u'07/26/2013', u'year_built': u'1900', u'zestimate_valuationRange_low': u'2613049', u'graph_data_link': u'http://www.zillow.com/homedetails/107-Chestnut-St-APT-2-Boston-MA-02108/59172853_zpid/#charts-and-data', u'home_size': u'2040', u'longitude': u'-71.071984', u'map_this_home_link': u'http://www.zillow.com/homes/59172853_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/107-Chestnut-St-APT-2-Boston-MA-02108/59172853_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02131', u'long': -71.1341644, u'prices': u'629,000', u'address': u'44 Winton St, Boston, MA', u'lat': 42.274543, u'zillow': {u'property_size': u'6969', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'645233', u'tax_value': None, u'zestimate_valuation_range_high': u'748470', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.275072', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096562314', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'516186', u'graph_data_link': None, u'home_size': u'2000', u'longitude': u'-71.133469', u'map_this_home_link': u'http://www.zillow.com/homes/2096562314_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/44-Winton-St-Boston-MA-02131/2096562314_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02215', u'long': -71.0980333, u'prices': u'689,000', u'address': u'131 Park Dr UNIT G2, Boston, MA', u'lat': 42.3416995, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'280000', u'zestimate_amount': u'694669', u'tax_value': u'272300.0', u'zestimate_valuation_range_high': u'729402', u'tax_year': u'2014', u'zestimate_value_change': u'70487', u'latitude': u'42.341585', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59168207', u'last_sold_date': u'10/31/2005', u'year_built': u'1910', u'zestimate_valuationRange_low': u'639095', u'graph_data_link': u'http://www.zillow.com/homedetails/131-Park-Dr-UNIT-G2-Boston-MA-02215/59168207_zpid/#charts-and-data', u'home_size': u'812', u'longitude': u'-71.097823', u'map_this_home_link': u'http://www.zillow.com/homes/59168207_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/131-Park-Dr-UNIT-G2-Boston-MA-02215/59168207_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0400287, u'prices': u'267,047', u'address': u'37 Circuit St UNIT 1, Roxbury, MA', u'lat': 42.3368779, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'152401', u'zestimate_amount': u'243312', u'tax_value': u'170900.0', u'zestimate_valuation_range_high': u'255478', u'tax_year': u'2015', u'zestimate_value_change': u'-101440', u'latitude': u'42.323645', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59185103', u'last_sold_date': u'02/26/2007', u'year_built': u'1989', u'zestimate_valuationRange_low': u'223847', u'graph_data_link': u'http://www.zillow.com/homedetails/37-Circuit-St-UNIT-1-Roxbury-MA-02119/59185103_zpid/#charts-and-data', u'home_size': u'1097', u'longitude': u'-71.085987', u'map_this_home_link': u'http://www.zillow.com/homes/59185103_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/37-Circuit-St-UNIT-1-Roxbury-MA-02119/59185103_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.07207369999999, u'prices': u'1,650,000', u'address': u'49 Union Park # 3, Boston, MA', u'lat': 42.3434004, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'975000', u'zestimate_amount': u'1582479', u'tax_value': u'919000.0', u'zestimate_valuation_range_high': u'1661603', u'tax_year': u'2015', u'zestimate_value_change': u'-36140', u'latitude': u'42.340937', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59182437', u'last_sold_date': u'06/30/2009', u'year_built': u'1850', u'zestimate_valuationRange_low': u'1503355', u'graph_data_link': u'http://www.zillow.com/homedetails/49-Union-Park-3-Boston-MA-02118/59182437_zpid/#charts-and-data', u'home_size': u'1500', u'longitude': u'-71.069082', u'map_this_home_link': u'http://www.zillow.com/homes/59182437_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/49-Union-Park-3-Boston-MA-02118/59182437_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.07609339999999, u'prices': u'366,295', u'address': u'5 Coleus Park, Dorchester, MA', u'lat': 42.3100642, u'zillow': {u'property_size': u'3049', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'404339', u'tax_value': u'271300.0', u'zestimate_valuation_range_high': u'428599', u'tax_year': u'2014', u'zestimate_value_change': u'2394', u'latitude': u'42.31084', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81856431', u'last_sold_date': None, u'year_built': u'2006', u'zestimate_valuationRange_low': u'380079', u'graph_data_link': u'http://www.zillow.com/homedetails/5-Coleus-Park-Dorchester-MA-02121/81856431_zpid/#charts-and-data', u'home_size': u'1546', u'longitude': u'-71.075343', u'map_this_home_link': u'http://www.zillow.com/homes/81856431_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/5-Coleus-Park-Dorchester-MA-02121/81856431_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02110', u'long': -71.0499222, u'prices': u'1,088,000', u'address': u'59 Commercial Wharf APT 4, Boston, MA', u'lat': 42.3620899, u'zillow': {u'property_size': u'1321', u'bathrooms': u'1.0', u'last_sold_price': u'805000', u'zestimate_amount': u'1150655', u'tax_value': u'875038.0', u'zestimate_valuation_range_high': u'1208188', u'tax_year': u'2014', u'zestimate_value_change': u'-34750', u'latitude': u'42.361741', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59174579', u'last_sold_date': u'05/27/2005', u'year_built': u'1850', u'zestimate_valuationRange_low': u'1081616', u'graph_data_link': u'http://www.zillow.com/homedetails/59-Commercial-Wharf-APT-4-Boston-MA-02110/59174579_zpid/#charts-and-data', u'home_size': u'1321', u'longitude': u'-71.049569', u'map_this_home_link': u'http://www.zillow.com/homes/59174579_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/59-Commercial-Wharf-APT-4-Boston-MA-02110/59174579_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02135', u'long': -71.1485867, u'prices': u'399,500', u'address': u'35 Glencoe St APT 31, Brighton, MA', u'lat': 42.3542931, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'Spacious 2 bedroom apartment in Brighton. Heat and hot water included. No pets. This place will go quickly, so call today for details!', 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/35-Glencoe-St-APT-31-Brighton-MA-02135/2097046465_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '2', 'latitude': '42.354372', 'zillow_id': '2097046465', 'basement': None, 'year_built': '1965', 'home_size': '805', 'roof': None, 'view': None, 'home_type': 'Apartment', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/35-Glencoe-St-APT-31-Brighton-MA-02135/2097046465_zpid/', 'home_info': 'http://www.zillow.com/homedetails/35-Glencoe-St-APT-31-Brighton-MA-02135/2097046465_zpid/'}, u'zillow': {u'property_size': u'2', u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.354372', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2097046465', u'last_sold_date': None, u'year_built': u'1965', u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'805', u'longitude': u'-71.148837', u'map_this_home_link': u'http://www.zillow.com/homes/2097046465_zpid/', u'home_type': u'Apartment', u'home_detail_link': u'http://www.zillow.com/homedetails/35-Glencoe-St-APT-31-Brighton-MA-02135/2097046465_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02115', u'long': -71.08850249999999, u'prices': u'599,000', u'address': u'12 Stoneholm St APT 301, Boston, MA', u'lat': 42.3458507, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'343000', u'zestimate_amount': u'609127', u'tax_value': u'392200.0', u'zestimate_valuation_range_high': u'737044', u'tax_year': u'2014', u'zestimate_value_change': u'60315', u'latitude': u'42.345768', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81857201', u'last_sold_date': u'01/05/2007', u'year_built': u'2006', u'zestimate_valuationRange_low': u'414206', u'graph_data_link': u'http://www.zillow.com/homedetails/12-Stoneholm-St-APT-301-Boston-MA-02115/81857201_zpid/#charts-and-data', u'home_size': u'735', u'longitude': u'-71.08819', u'map_this_home_link': u'http://www.zillow.com/homes/81857201_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/12-Stoneholm-St-APT-301-Boston-MA-02115/81857201_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02132', u'long': -71.165733, u'prices': u'309,999', u'address': u'266 Vermont St UNIT 1, West Roxbury, MA', u'lat': 42.286972, u'zillow': {u'property_size': u'905', u'bathrooms': u'1.0', u'last_sold_price': u'213000', u'zestimate_amount': u'373030', u'tax_value': u'202000.0', u'zestimate_valuation_range_high': u'410333', u'tax_year': u'2014', u'zestimate_value_change': u'1226', u'latitude': u'42.286972', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'90139250', u'last_sold_date': u'05/19/2009', u'year_built': u'1880', u'zestimate_valuationRange_low': u'331997', u'graph_data_link': u'http://www.zillow.com/homedetails/266-Vermont-St-UNIT-1-West-Roxbury-MA-02132/90139250_zpid/#charts-and-data', u'home_size': u'905', u'longitude': u'-71.165733', u'map_this_home_link': u'http://www.zillow.com/homes/90139250_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/266-Vermont-St-UNIT-1-West-Roxbury-MA-02132/90139250_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02125', u'long': -71.05177139999999, u'prices': u'309,900', u'address': u'400 Savin Hill Ave APT 27, Dorchester, MA', u'lat': 42.3124, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'204500', u'zestimate_amount': u'288834', u'tax_value': u'132500.0', u'zestimate_valuation_range_high': u'317717', u'tax_year': u'2014', u'zestimate_value_change': u'38347', u'latitude': u'42.312216', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59101889', u'last_sold_date': u'07/25/2016', u'year_built': u'1965', u'zestimate_valuationRange_low': u'259951', u'graph_data_link': u'http://www.zillow.com/homedetails/400-Savin-Hill-Ave-APT-27-Dorchester-MA-02125/59101889_zpid/#charts-and-data', u'home_size': u'665', u'longitude': u'-71.051977', u'map_this_home_link': u'http://www.zillow.com/homes/59101889_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/400-Savin-Hill-Ave-APT-27-Dorchester-MA-02125/59101889_zpid/'}}, {u'status': u'Make Me Move\\xae', u'zip': u'02118', u'long': -71.0736529, u'prices': u'775,000', u'address': u'37 W Newton St APT 4, Boston, MA', u'lat': 42.3388775, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': 'Electric', 'rooms': None, 'home_description': 'This is a stunning, bright 2 bedroom 1 bathroom apartment overlooking Blackstone Square in the South End. Great apartment for roommates or someone looking for a 1 bed + office. Features large living room with separate dining area, hardwood floors throughout, updated kitchen, and washer/dryer in unit. \\n\\nThe unit is located in a great area of the South End, in close proximity to many of the neighborhoods best restaurants, bakeries, and shops.\\n\\nThe unit is currently rented through August 2017.', 'property_size': '1742', 'num_floors': '1', 'heating_system': 'Baseboard', 'photo_gallery': 'http://www.zillow.com/homedetails/37-W-Newton-St-APT-4-Boston-MA-02118/59184048_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Tile, Hardwood', 'year_updated': '1992', 'bedrooms': '2', 'latitude': '42.33943', 'zillow_id': '59184048', 'basement': None, 'year_built': '1890', 'home_size': '850', 'roof': None, 'view': 'City, Park', 'home_type': 'MultiFamily5Plus', 'parking_type': 'On-street', 'home_detail_link': 'http://www.zillow.com/homedetails/37-W-Newton-St-APT-4-Boston-MA-02118/59184048_zpid/', 'home_info': 'http://www.zillow.com/homedetails/37-W-Newton-St-APT-4-Boston-MA-02118/59184048_zpid/'}, u'zillow': {u'property_size': u'1742', u'bathrooms': u'1.0', u'last_sold_price': u'570000', u'zestimate_amount': None, u'tax_value': u'472400.0', u'zestimate_valuation_range_high': None, u'tax_year': u'2014', u'zestimate_value_change': None, u'latitude': u'42.33943', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'59184048', u'last_sold_date': u'06/06/2013', u'year_built': u'1890', u'zestimate_valuationRange_low': None, u'graph_data_link': u'http://www.zillow.com/homedetails/37-W-Newton-St-APT-4-Boston-MA-02118/59184048_zpid/#charts-and-data', u'home_size': u'850', u'longitude': u'-71.074258', u'map_this_home_link': u'http://www.zillow.com/homes/59184048_zpid/', u'home_type': u'MultiFamily5Plus', u'home_detail_link': u'http://www.zillow.com/homedetails/37-W-Newton-St-APT-4-Boston-MA-02118/59184048_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02131', u'long': -71.1184288, u'prices': u'250,000', u'address': u'416 Hyde Park Ave # ONE, Roslindale, MA', u'lat': 42.2862661, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'343345', u'tax_value': None, u'zestimate_valuation_range_high': u'360512', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.286348', u'zestimate_percentile': u'0', u'bedrooms': u'0', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096546435', u'last_sold_date': None, u'year_built': u'1950', u'zestimate_valuationRange_low': u'322744', u'graph_data_link': None, u'home_size': u'800', u'longitude': u'-71.118555', u'map_this_home_link': u'http://www.zillow.com/homes/2096546435_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/416-Hyde-Park-Ave-ONE-Roslindale-MA-02131/2096546435_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02129', u'long': -71.0669599, u'prices': u'545,000', u'address': u'68 Russell St UNIT 2, Boston, MA', u'lat': 42.3799172, u'zillow': {u'property_size': u'871', u'bathrooms': u'1.0', u'last_sold_price': u'342000', u'zestimate_amount': u'537676', u'tax_value': u'308900.0', u'zestimate_valuation_range_high': u'564560', u'tax_year': u'2014', u'zestimate_value_change': u'17671', u'latitude': u'42.379947', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59100425', u'last_sold_date': u'06/06/2012', u'year_built': u'1800', u'zestimate_valuationRange_low': u'505415', u'graph_data_link': u'http://www.zillow.com/homedetails/68-Russell-St-UNIT-2-Boston-MA-02129/59100425_zpid/#charts-and-data', u'home_size': u'785', u'longitude': u'-71.066997', u'map_this_home_link': u'http://www.zillow.com/homes/59100425_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/68-Russell-St-UNIT-2-Boston-MA-02129/59100425_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02131', u'long': -71.13874299999999, u'prices': u'549,900', u'address': u'33 Orange St, Boston, MA', u'lat': 42.284025, u'zillow': {u'property_size': u'6534', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'578809', u'tax_value': u'334100.0', u'zestimate_valuation_range_high': u'607749', u'tax_year': u'2014', u'zestimate_value_change': u'8826', u'latitude': u'42.284025', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59143928', u'last_sold_date': None, u'year_built': u'1969', u'zestimate_valuationRange_low': u'549869', u'graph_data_link': u'http://www.zillow.com/homedetails/33-Orange-St-Boston-MA-02131/59143928_zpid/#charts-and-data', u'home_size': u'1484', u'longitude': u'-71.138745', u'map_this_home_link': u'http://www.zillow.com/homes/59143928_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/33-Orange-St-Boston-MA-02131/59143928_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02130', u'long': -71.125778, u'prices': u'899,000', u'address': u'135 Moss Hill Rd, Boston, MA', u'lat': 42.3072019, u'zillow': {u'property_size': u'8207', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'1030763', u'tax_value': u'728400.0', u'zestimate_valuation_range_high': u'1144147', u'tax_year': u'2014', u'zestimate_value_change': u'-35996', u'latitude': u'42.307226', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59135083', u'last_sold_date': None, u'year_built': u'1960', u'zestimate_valuationRange_low': u'958610', u'graph_data_link': u'http://www.zillow.com/homedetails/135-Moss-Hill-Rd-Boston-MA-02130/59135083_zpid/#charts-and-data', u'home_size': u'2954', u'longitude': u'-71.12577', u'map_this_home_link': u'http://www.zillow.com/homes/59135083_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/135-Moss-Hill-Rd-Boston-MA-02130/59135083_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02129', u'long': -71.0523825, u'prices': u'629,000', u'address': u'42 8th St APT 5310, Boston, MA', u'lat': 42.3750209, 'property': {'neighborhood': None, 'bathrooms': '2.0', 'school_district': None, 'heating_sources': 'Gas', 'rooms': 'Master bath, Family room, Laundry room', 'home_description': \"Enjoy city living in the Charlestown Navy Yard's Parris Landing. This unit offers 2 spacious bedrooms & 2 bathrooms, 1000+ s/f of living space and 1 covered garage parking spot. (#232) Kitchen boasts stainless steel appliances, granite counters and a huge walk-in pantry/coat closet. Parris Landing is a full-service building with all the amenities: 24 hour concierge, on-site maintenance staff, 3,000 sq/ft state-of-the-art gym, heated seasonal swimming pool and much more! Convenient to all major highways, public transportation and the Partners Health Care Shuttle Bus. Parris Landing is a non-smoking building. Very easy to show. Please call or text Pete Guiney at 617-504-4003\\n\\n\\n\\n\\n\\n\\n\\n\", 'property_size': '1014', 'num_floors': '1', 'heating_system': 'Forced air', 'photo_gallery': 'http://www.zillow.com/homedetails/42-8th-St-APT-5310-Boston-MA-02129/67095758_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Carpet', 'year_updated': '2004', 'bedrooms': '2', 'latitude': '42.374939', 'zillow_id': '67095758', 'basement': 'None', 'year_built': '1899', 'home_size': '1014', 'roof': None, 'view': None, 'home_type': 'MultiFamily5Plus', 'parking_type': 'Garage - Attached, Off-street', 'home_detail_link': 'http://www.zillow.com/homedetails/42-8th-St-APT-5310-Boston-MA-02129/67095758_zpid/', 'home_info': 'http://www.zillow.com/homedetails/42-8th-St-APT-5310-Boston-MA-02129/67095758_zpid/'}, u'zillow': {u'property_size': u'1014', u'bathrooms': u'2.0', u'last_sold_price': u'462900', u'zestimate_amount': None, u'tax_value': u'398300.0', u'zestimate_valuation_range_high': None, u'tax_year': u'2014', u'zestimate_value_change': None, u'latitude': u'42.374939', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'67095758', u'last_sold_date': u'03/25/2005', u'year_built': u'1899', u'zestimate_valuationRange_low': None, u'graph_data_link': u'http://www.zillow.com/homedetails/42-8th-St-APT-5310-Boston-MA-02129/67095758_zpid/#charts-and-data', u'home_size': u'1014', u'longitude': u'-71.053014', u'map_this_home_link': u'http://www.zillow.com/homes/67095758_zpid/', u'home_type': u'MultiFamily5Plus', u'home_detail_link': u'http://www.zillow.com/homedetails/42-8th-St-APT-5310-Boston-MA-02129/67095758_zpid/'}}, {u'status': u'Pre-Foreclosure', u'zip': None, u'long': -1, u'prices': -1, u'address': u'Sign in for details', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02136', u'long': -71.131984, u'prices': u'309,000', u'address': u'1565 River St # 1, Boston, MA', u'lat': 42.24868499999999, u'zillow': {u'property_size': u'9999', u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'321467', u'tax_value': None, u'zestimate_valuation_range_high': u'337540', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.248683', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2115695004', u'last_sold_date': None, u'year_built': u'1910', u'zestimate_valuationRange_low': u'298964', u'graph_data_link': None, u'home_size': u'1200', u'longitude': u'-71.13198', u'map_this_home_link': u'http://www.zillow.com/homes/2115695004_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1565-River-St-1-Boston-MA-02136/2115695004_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.07510599999999, u'prices': u'965,000', u'address': u'130 Appleton St APT 3H, Boston, MA', u'lat': 42.34490599999999, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'1046249', u'tax_value': u'629100.0', u'zestimate_valuation_range_high': u'1161336', u'tax_year': u'2014', u'zestimate_value_change': u'-15417', u'latitude': u'42.344979', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59172435', u'last_sold_date': None, u'year_built': u'1866', u'zestimate_valuationRange_low': u'983474', u'graph_data_link': u'http://www.zillow.com/homedetails/130-Appleton-St-APT-3H-Boston-MA-02116/59172435_zpid/#charts-and-data', u'home_size': u'1046', u'longitude': u'-71.075141', u'map_this_home_link': u'http://www.zillow.com/homes/59172435_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/130-Appleton-St-APT-3H-Boston-MA-02116/59172435_zpid/'}}, {u'status': u'Co-op For Sale', u'zip': u'02114', u'long': -71.0641088, u'prices': u'999,000', u'address': u'150 Staniford St APT 205, Boston, MA', u'lat': 42.3644346, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'1037097', u'tax_value': None, u'zestimate_valuation_range_high': u'1088952', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.364303', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096553771', u'last_sold_date': None, u'year_built': u'1998', u'zestimate_valuationRange_low': u'974871', u'graph_data_link': None, u'home_size': u'1435', u'longitude': u'-71.064102', u'map_this_home_link': u'http://www.zillow.com/homes/2096553771_zpid/', u'home_type': u'Cooperative', u'home_detail_link': u'http://www.zillow.com/homedetails/150-Staniford-St-APT-205-Boston-MA-02114/2096553771_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0523379, u'prices': u'415,000', u'address': u'183 W 8th St UNIT 2, South Boston, MA', u'lat': 42.333618, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'315000', u'zestimate_amount': u'410738', u'tax_value': u'233500.0', u'zestimate_valuation_range_high': u'439490', u'tax_year': u'2014', u'zestimate_value_change': u'18813', u'latitude': u'42.333626', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'87798161', u'last_sold_date': u'01/22/2015', u'year_built': u'1900', u'zestimate_valuationRange_low': u'377879', u'graph_data_link': u'http://www.zillow.com/homedetails/183-W-8th-St-UNIT-2-South-Boston-MA-02127/87798161_zpid/#charts-and-data', u'home_size': u'582', u'longitude': u'-71.052338', u'map_this_home_link': u'http://www.zillow.com/homes/87798161_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/183-W-8th-St-UNIT-2-South-Boston-MA-02127/87798161_zpid/'}}, {u'status': u'Lot/Land For Sale', u'zip': u'02119', u'long': -71.0784233, u'prices': u'250,000', u'address': u'20 Forest St, Boston, MA', u'lat': 42.3274611, u'zillow': {u'property_size': u'3920', u'bathrooms': None, u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.327472', u'zestimate_percentile': u'0', u'bedrooms': None, u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096524067', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': None, u'longitude': u'-71.078414', u'map_this_home_link': u'http://www.zillow.com/homes/2096524067_zpid/', u'home_type': u'VacantResidentialLand', u'home_detail_link': u'http://www.zillow.com/homedetails/20-Forest-St-Boston-MA-02119/2096524067_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02110', u'long': -71.0528044, u'prices': u'699,900', u'address': u'80 Broad St UNIT 608, Boston, MA', u'lat': 42.3577317, u'zillow': {u'property_size': u'708', u'bathrooms': u'1.0', u'last_sold_price': u'385000', u'zestimate_amount': u'666570', u'tax_value': u'450300.0', u'zestimate_valuation_range_high': u'713230', u'tax_year': u'2014', u'zestimate_value_change': u'14830', u'latitude': u'42.357677', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81857485', u'last_sold_date': u'12/06/2011', u'year_built': u'2006', u'zestimate_valuationRange_low': u'633242', u'graph_data_link': u'http://www.zillow.com/homedetails/80-Broad-St-UNIT-608-Boston-MA-02110/81857485_zpid/#charts-and-data', u'home_size': u'708', u'longitude': u'-71.052726', u'map_this_home_link': u'http://www.zillow.com/homes/81857485_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/80-Broad-St-UNIT-608-Boston-MA-02110/81857485_zpid/'}}, {u'status': u'Pre-Foreclosure', u'zip': None, u'long': -1, u'prices': -1, u'address': u'Sign in for details', u'lat': -1}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.16779, u'prices': u'619,000', u'address': u'92 Lasell St, West Roxbury, MA', u'lat': 42.288487, 'property': {'neighborhood': None, 'bathrooms': '2.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': \"Finally the home you've been looking for! Come see this charming 4 bedroom, 2 bath Cape on pretty tree lined street. This home has so much to offer; Beautiful new kitchen boasts of granite, stainless steel, designer style tile and custom built in desk. The fireplaced living room has the sought after open concept to the dining area and is just perfect for entertaining or relaxing by the fire. Wonderful sunlight and beautiful hardwood floors shine throughout the home. First floor master bedroom comes complete with lovely master bath and two closets. The second floor includes 3 bedrooms and a beautifully renovated bath. Enjoy the family room with built-ins on the lower level and a wonderful fenced in yard ....there truly is a space for everyone! Move right in and you'll be ready for the holidays! First showings at Open House on Sunday, November 6th, 12-3.\", 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/92-Lasell-St-West-Roxbury-MA-02132/2096484539_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '4', 'latitude': '42.28886', 'zillow_id': '2096484539', 'basement': None, 'year_built': None, 'home_size': '1823', 'roof': None, 'view': None, 'home_type': 'SingleFamily', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/92-Lasell-St-West-Roxbury-MA-02132/2096484539_zpid/', 'home_info': 'http://www.zillow.com/homedetails/92-Lasell-St-West-Roxbury-MA-02132/2096484539_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'600025', u'tax_value': None, u'zestimate_valuation_range_high': u'630026', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.28886', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096484539', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'552023', u'graph_data_link': None, u'home_size': u'1823', u'longitude': u'-71.16712', u'map_this_home_link': u'http://www.zillow.com/homes/2096484539_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/92-Lasell-St-West-Roxbury-MA-02132/2096484539_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02135', u'long': -71.1410557, u'prices': u'580,000', u'address': u'1518 Commonwealth Ave UNIT 3, Boston, MA', u'lat': 42.3455568, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'360000', u'zestimate_amount': u'610932', u'tax_value': u'312400.0', u'zestimate_valuation_range_high': u'641479', u'tax_year': u'2014', u'zestimate_value_change': u'37184', u'latitude': u'42.345499', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'60112183', u'last_sold_date': u'11/30/2012', u'year_built': u'1930', u'zestimate_valuationRange_low': u'574276', u'graph_data_link': u'http://www.zillow.com/homedetails/1518-Commonwealth-Ave-UNIT-3-Boston-MA-02135/60112183_zpid/#charts-and-data', u'home_size': u'1100', u'longitude': u'-71.141314', u'map_this_home_link': u'http://www.zillow.com/homes/60112183_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1518-Commonwealth-Ave-UNIT-3-Boston-MA-02135/60112183_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.15979879999999, u'prices': u'875,000', u'address': u'5 Houston St, Boston, MA', u'lat': 42.2878398, u'zillow': {u'property_size': u'6969', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'882949', u'tax_value': u'542600.0', u'zestimate_valuation_range_high': u'927096', u'tax_year': u'2014', u'zestimate_value_change': u'80627', u'latitude': u'42.287884', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59155942', u'last_sold_date': None, u'year_built': u'1910', u'zestimate_valuationRange_low': u'838802', u'graph_data_link': u'http://www.zillow.com/homedetails/5-Houston-St-Boston-MA-02132/59155942_zpid/#charts-and-data', u'home_size': u'2358', u'longitude': u'-71.159748', u'map_this_home_link': u'http://www.zillow.com/homes/59155942_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/5-Houston-St-Boston-MA-02132/59155942_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0316309, u'prices': u'629,000', u'address': u'801 E 4th St # 801, Boston, MA', u'lat': 42.3348139, u'zillow': {u'property_size': u'1312', u'bathrooms': u'3.0', u'last_sold_price': u'200000', u'zestimate_amount': u'681465', u'tax_value': u'445100.0', u'zestimate_valuation_range_high': u'735982', u'tax_year': u'2014', u'zestimate_value_change': None, u'latitude': u'42.334678', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096664102', u'last_sold_date': u'12/11/2003', u'year_built': u'1920', u'zestimate_valuationRange_low': u'633762', u'graph_data_link': u'http://www.zillow.com/homedetails/801-E-4th-St-UNIT-801-South-Boston-MA-02127/81855120_zpid/#charts-and-data', u'home_size': u'1374', u'longitude': u'-71.031471', u'map_this_home_link': u'http://www.zillow.com/homes/2096664102_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/801-E-4th-St-801-Boston-MA-02127/2096664102_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.10616499999999, u'prices': u'599,000', u'address': u'74 Brookley Rd # 3, Boston, MA', u'lat': 42.303354, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'615279', u'tax_value': None, u'zestimate_valuation_range_high': u'738335', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.303352', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096488028', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'498376', u'graph_data_link': None, u'home_size': u'1293', u'longitude': u'-71.106163', u'map_this_home_link': u'http://www.zillow.com/homes/2096488028_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/74-Brookley-Rd-3-Boston-MA-02130/2096488028_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02125', u'long': -71.05605609999999, u'prices': u'465,000', u'address': u'40 Buttonwood St # 1, Boston, MA', u'lat': 42.3206699, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'476320', u'tax_value': None, u'zestimate_valuation_range_high': u'500136', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.320541', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096486647', u'last_sold_date': None, u'year_built': u'1932', u'zestimate_valuationRange_low': u'452504', u'graph_data_link': None, u'home_size': u'980', u'longitude': u'-71.055905', u'map_this_home_link': u'http://www.zillow.com/homes/2096486647_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/40-Buttonwood-St-1-Boston-MA-02125/2096486647_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02190', u'long': -71.057342, u'prices': u'620,000', u'address': u'6 Dorset Park Ln, Weymouth, MA', u'lat': 42.323326}, {u'status': u'House For Sale', u'zip': u'02136', u'long': -71.14087239999999, u'prices': u'569,900', u'address': u'11 Sanford St, Boston, MA', u'lat': 42.2426134, u'zillow': {u'property_size': u'6098', u'bathrooms': u'3.0', u'last_sold_price': u'350000', u'zestimate_amount': u'595408', u'tax_value': u'392800.0', u'zestimate_valuation_range_high': u'625178', u'tax_year': u'2014', u'zestimate_value_change': u'18514', u'latitude': u'42.242651', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'60113093', u'last_sold_date': u'12/17/2001', u'year_built': u'2001', u'zestimate_valuationRange_low': u'559684', u'graph_data_link': u'http://www.zillow.com/homedetails/11-Sanford-St-Boston-MA-02136/60113093_zpid/#charts-and-data', u'home_size': u'2408', u'longitude': u'-71.140814', u'map_this_home_link': u'http://www.zillow.com/homes/60113093_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/11-Sanford-St-Boston-MA-02136/60113093_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02215', u'long': -71.09510999999999, u'prices': u'385,000', u'address': u'67 Park Dr UNIT 1, Boston, MA', u'lat': 42.3425678, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'INVESTORS TAKE NOTICE! This 1 Bed PLUS Study offer amazing Fenway location, close to everything Boston has to offer! Renovations through out the entire unit! Gleaming hardwood floors, new granite counter tops and breakfast bar, new dishwasher, bathroom with new vanity. Large windows bring the sun through this cozy home. Pre renovation this unit rented for $2250 - 2400 per month. New rent roll expected to easily top $2500 per month making this a 5% or better ROI. Monthly leasing permitted by association, readily 3,000 per month, making the potential ROI on short term rentals 13% or more. Longwood Medical area, universities, including BU and North Eastern, Emerson, Wentworth, Simmons, MCPHS, and more! Walk to games and concerts at Fenway Park and enjoy nightlife on Landsdown St, Newbury, and Boylston St. Groceries, a scenic park great for walking and bike riding and restaurants are nearby!', 'property_size': '530', 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/67-Park-Dr-UNIT-1-Boston-MA-02215/59179717_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '1', 'latitude': '42.342501', 'zillow_id': '59179717', 'basement': None, 'year_built': '1910', 'home_size': '530', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/67-Park-Dr-UNIT-1-Boston-MA-02215/59179717_zpid/', 'home_info': 'http://www.zillow.com/homedetails/67-Park-Dr-UNIT-1-Boston-MA-02215/59179717_zpid/'}, u'zillow': {u'property_size': u'530', u'bathrooms': u'1.0', u'last_sold_price': u'250000', u'zestimate_amount': u'353791', u'tax_value': u'245000.0', u'zestimate_valuation_range_high': u'378556', u'tax_year': u'2014', u'zestimate_value_change': u'17210', u'latitude': u'42.342501', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59179717', u'last_sold_date': u'03/29/2013', u'year_built': u'1910', u'zestimate_valuationRange_low': u'332564', u'graph_data_link': u'http://www.zillow.com/homedetails/67-Park-Dr-UNIT-1-Boston-MA-02215/59179717_zpid/#charts-and-data', u'home_size': u'530', u'longitude': u'-71.095222', u'map_this_home_link': u'http://www.zillow.com/homes/59179717_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/67-Park-Dr-UNIT-1-Boston-MA-02215/59179717_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.1509743, u'prices': u'689,000', u'address': u'10 Gilmore Ter, Boston, MA', u'lat': 42.281635, 'property': {'neighborhood': None, 'bathrooms': '2.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'Come see this gorgeous stucco colonial with slate roof in great, family friendly neighborhood on a dead end street. Large living room and dining room with beamed ceilings and natural woodwork, hardwood floors, high ceilings, and ceiling fans throughout. Well insulated with Harvey windows. 4th bedroom is large with abundant closet space. Easy walk to train, restaurants, and grocery store.', 'property_size': '4356', 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/10-Gilmore-Ter-Boston-MA-02132/59156619_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '4', 'latitude': '42.281635', 'zillow_id': '59156619', 'basement': None, 'year_built': '1920', 'home_size': '1980', 'roof': None, 'view': None, 'home_type': 'SingleFamily', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/10-Gilmore-Ter-Boston-MA-02132/59156619_zpid/', 'home_info': 'http://www.zillow.com/homedetails/10-Gilmore-Ter-Boston-MA-02132/59156619_zpid/'}, u'zillow': {u'property_size': u'4356', u'bathrooms': u'2.0', u'last_sold_price': u'475000', u'zestimate_amount': u'694517', u'tax_value': u'456800.0', u'zestimate_valuation_range_high': u'736188', u'tax_year': u'2014', u'zestimate_value_change': u'20238', u'latitude': u'42.281635', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59156619', u'last_sold_date': u'09/28/2007', u'year_built': u'1920', u'zestimate_valuationRange_low': u'659791', u'graph_data_link': u'http://www.zillow.com/homedetails/10-Gilmore-Ter-Boston-MA-02132/59156619_zpid/#charts-and-data', u'home_size': u'1980', u'longitude': u'-71.150961', u'map_this_home_link': u'http://www.zillow.com/homes/59156619_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/10-Gilmore-Ter-Boston-MA-02132/59156619_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.07132039999999, u'prices': u'2,250,000', u'address': u'327 Shawmut Ave # 2, Boston, MA', u'lat': 42.3419437, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'2209172', u'tax_value': None, u'zestimate_valuation_range_high': u'2341722', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.341941', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096558180', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'2054530', u'graph_data_link': None, u'home_size': u'1630', u'longitude': u'-71.071319', u'map_this_home_link': u'http://www.zillow.com/homes/2096558180_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/327-Shawmut-Ave-2-Boston-MA-02118/2096558180_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02134', u'long': -71.1385287, u'prices': u'449,000', u'address': u'9 High Rock Way # 3, Boston, MA', u'lat': 42.3514374, u'zillow': {u'property_size': u'1178', u'bathrooms': u'1.0', u'last_sold_price': u'171500', u'zestimate_amount': u'471829', u'tax_value': u'345300.0', u'zestimate_valuation_range_high': u'495420', u'tax_year': u'2014', u'zestimate_value_change': None, u'latitude': u'42.351385', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096688337', u'last_sold_date': u'09/16/1987', u'year_built': u'1899', u'zestimate_valuationRange_low': u'443519', u'graph_data_link': u'http://www.zillow.com/homedetails/9-High-Rock-Way-UNIT-3-Boston-MA-02134/59086280_zpid/#charts-and-data', u'home_size': u'1178', u'longitude': u'-71.138665', u'map_this_home_link': u'http://www.zillow.com/homes/2096688337_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/9-High-Rock-Way-3-Boston-MA-02134/2096688337_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02132', u'long': -71.14458979999999, u'prices': u'364,000', u'address': u'20 Lagrange St UNIT 1, Boston, MA', u'lat': 42.273562, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'398234', u'tax_value': u'232300.0', u'zestimate_valuation_range_high': u'418146', u'tax_year': u'2014', u'zestimate_value_change': u'8815', u'latitude': u'42.27354', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'67396346', u'last_sold_date': None, u'year_built': u'1925', u'zestimate_valuationRange_low': u'362393', u'graph_data_link': u'http://www.zillow.com/homedetails/20-Lagrange-St-UNIT-1-Boston-MA-02132/67396346_zpid/#charts-and-data', u'home_size': u'1041', u'longitude': u'-71.144584', u'map_this_home_link': u'http://www.zillow.com/homes/67396346_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/20-Lagrange-St-UNIT-1-Boston-MA-02132/67396346_zpid/'}}, {u'status': u'Pre-Foreclosure', u'zip': None, u'long': -1, u'prices': -1, u'address': u'Sign in for details', u'lat': -1}, {u'status': u'Apartment For Sale', u'zip': u'02125', u'long': -71.0556327, u'prices': u'1,339,000', u'address': u'20 Sudan St, Dorchester, MA', u'lat': 42.3169099, u'zillow': {u'property_size': u'3484', u'bathrooms': u'3.0', u'last_sold_price': u'460000', u'zestimate_amount': u'951651', u'tax_value': u'538500.0', u'zestimate_valuation_range_high': u'1037300', u'tax_year': u'2015', u'zestimate_value_change': u'126333', u'latitude': u'42.316912', u'zestimate_percentile': u'0', u'bedrooms': u'11', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59110706', u'last_sold_date': u'04/10/2012', u'year_built': u'1905', u'zestimate_valuationRange_low': u'818420', u'graph_data_link': u'http://www.zillow.com/homedetails/20-Sudan-St-Dorchester-MA-02125/59110706_zpid/#charts-and-data', u'home_size': u'3732', u'longitude': u'-71.055627', u'map_this_home_link': u'http://www.zillow.com/homes/59110706_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/20-Sudan-St-Dorchester-MA-02125/59110706_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02115', u'long': -71.0809838, u'prices': u'1,395,000', u'address': u'17 Durham St APT 5, Boston, MA', u'lat': 42.3436496, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'935000', u'zestimate_amount': u'1423435', u'tax_value': u'823500.0', u'zestimate_valuation_range_high': u'1508841', u'tax_year': u'2014', u'zestimate_value_change': u'82358', u'latitude': u'42.343601', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'71546657', u'last_sold_date': u'07/15/2005', u'year_built': u'1880', u'zestimate_valuationRange_low': u'1323795', u'graph_data_link': u'http://www.zillow.com/homedetails/17-Durham-St-APT-5-Boston-MA-02115/71546657_zpid/#charts-and-data', u'home_size': u'1217', u'longitude': u'-71.080955', u'map_this_home_link': u'http://www.zillow.com/homes/71546657_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/17-Durham-St-APT-5-Boston-MA-02115/71546657_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.07446399999999, u'prices': u'1,325,000', u'address': u'63 Dartmouth St UNIT 1, Boston, MA', u'lat': 42.344752, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': u'1225000', u'zestimate_amount': u'1314060', u'tax_value': u'770400.0', u'zestimate_valuation_range_high': u'1379763', u'tax_year': u'2014', u'zestimate_value_change': u'34968', u'latitude': u'42.344624', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'87793618', u'last_sold_date': u'05/16/2016', u'year_built': u'1910', u'zestimate_valuationRange_low': u'1248357', u'graph_data_link': u'http://www.zillow.com/homedetails/63-Dartmouth-St-UNIT-1-Boston-MA-02116/87793618_zpid/#charts-and-data', u'home_size': u'1250', u'longitude': u'-71.074558', u'map_this_home_link': u'http://www.zillow.com/homes/87793618_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/63-Dartmouth-St-UNIT-1-Boston-MA-02116/87793618_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02121', u'long': -71.0740115, u'prices': u'489,000', u'address': u'6 Mallon Rd, Dorchester, MA', u'lat': 42.3026544, u'zillow': {u'property_size': u'5227', u'bathrooms': u'2.0', u'last_sold_price': u'170000', u'zestimate_amount': u'544601', u'tax_value': u'286500.0', u'zestimate_valuation_range_high': u'577277', u'tax_year': u'2014', u'zestimate_value_change': u'-6045', u'latitude': u'42.302617', u'zestimate_percentile': u'0', u'bedrooms': u'9', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59108071', u'last_sold_date': u'07/02/2012', u'year_built': u'1900', u'zestimate_valuationRange_low': u'490141', u'graph_data_link': u'http://www.zillow.com/homedetails/6-Mallon-Rd-Dorchester-MA-02121/59108071_zpid/#charts-and-data', u'home_size': u'3654', u'longitude': u'-71.073934', u'map_this_home_link': u'http://www.zillow.com/homes/59108071_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/6-Mallon-Rd-Dorchester-MA-02121/59108071_zpid/'}}, {u'status': u'Pre-Foreclosure', u'zip': None, u'long': -1, u'prices': -1, u'address': u'Sign in for details', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.103312, u'prices': u'436,000', u'address': u'103 Lamartine St UNIT 2, Boston, MA', u'lat': 42.319334, u'zillow': {u'property_size': u'951', u'bathrooms': u'1.0', u'last_sold_price': u'362000', u'zestimate_amount': u'494260', u'tax_value': u'299200.0', u'zestimate_valuation_range_high': u'518973', u'tax_year': u'2014', u'zestimate_value_change': u'18014', u'latitude': u'42.319334', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81859501', u'last_sold_date': u'04/14/2014', u'year_built': u'2006', u'zestimate_valuationRange_low': u'469547', u'graph_data_link': u'http://www.zillow.com/homedetails/103-Lamartine-St-UNIT-2-Boston-MA-02130/81859501_zpid/#charts-and-data', u'home_size': u'951', u'longitude': u'-71.103312', u'map_this_home_link': u'http://www.zillow.com/homes/81859501_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/103-Lamartine-St-UNIT-2-Boston-MA-02130/81859501_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02125', u'long': -71.052714, u'prices': u'539,000', u'address': u'84 Romsey St # 1, Dorchester, MA', u'lat': 42.31579, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'568398', u'tax_value': None, u'zestimate_valuation_range_high': u'613870', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.315799', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2103668002', u'last_sold_date': None, u'year_built': u'1905', u'zestimate_valuationRange_low': u'511558', u'graph_data_link': None, u'home_size': u'1134', u'longitude': u'-71.052696', u'map_this_home_link': u'http://www.zillow.com/homes/2103668002_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/84-Romsey-St-1-Dorchester-MA-02125/2103668002_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02129', u'long': -71.0523825, u'prices': u'615,000', u'address': u'42 8th St APT 3315, Boston, MA', u'lat': 42.3750209, u'zillow': {u'property_size': u'9999', u'bathrooms': u'2.0', u'last_sold_price': u'454447', u'zestimate_amount': u'604042', u'tax_value': u'435000.0', u'zestimate_valuation_range_high': u'634244', u'tax_year': u'2015', u'zestimate_value_change': u'-24926', u'latitude': u'42.374795', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'67096109', u'last_sold_date': u'07/27/2005', u'year_built': u'1899', u'zestimate_valuationRange_low': u'573840', u'graph_data_link': u'http://www.zillow.com/homedetails/42-8th-St-APT-3315-Boston-MA-02129/67096109_zpid/#charts-and-data', u'home_size': u'938', u'longitude': u'-71.0529', u'map_this_home_link': u'http://www.zillow.com/homes/67096109_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/42-8th-St-APT-3315-Boston-MA-02129/67096109_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02125', u'long': -71.05605609999999, u'prices': u'485,000', u'address': u'40 Buttonwood St # 2, Boston, MA', u'lat': 42.3206699, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'512298', u'tax_value': None, u'zestimate_valuation_range_high': u'543036', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.320541', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096486646', u'last_sold_date': None, u'year_built': u'1932', u'zestimate_valuationRange_low': u'476437', u'graph_data_link': None, u'home_size': u'969', u'longitude': u'-71.055905', u'map_this_home_link': u'http://www.zillow.com/homes/2096486646_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/40-Buttonwood-St-2-Boston-MA-02125/2096486646_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.06393469999999, u'prices': u'195,000', u'address': u'22 Branchfield St APT A4, Dorchester Center, MA', u'lat': 42.2717137, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'154000', u'zestimate_amount': u'203819', u'tax_value': u'121600.0', u'zestimate_valuation_range_high': u'214010', u'tax_year': u'2015', u'zestimate_value_change': u'10493', u'latitude': u'42.271949', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59103000', u'last_sold_date': u'08/11/2015', u'year_built': u'1970', u'zestimate_valuationRange_low': u'187513', u'graph_data_link': u'http://www.zillow.com/homedetails/22-Branchfield-St-APT-A4-Dorchester-Center-MA-02124/59103000_zpid/#charts-and-data', u'home_size': u'562', u'longitude': u'-71.063934', u'map_this_home_link': u'http://www.zillow.com/homes/59103000_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/22-Branchfield-St-APT-A4-Dorchester-Center-MA-02124/59103000_zpid/'}}, {u'status': u'Pre-Foreclosure', u'zip': None, u'long': -1, u'prices': -1, u'address': u'Sign in for details', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.08369499999999, u'prices': u'149,000', u'address': u'65-69 Nightingale St UNIT 1B, Boston, MA', u'lat': 42.295204, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'235000', u'zestimate_amount': u'105153', u'tax_value': u'73400.0', u'zestimate_valuation_range_high': u'115668', u'tax_year': u'2014', u'zestimate_value_change': u'-75187', u'latitude': u'42.295348', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59102087', u'last_sold_date': u'03/28/2005', u'year_built': u'1900', u'zestimate_valuationRange_low': u'90432', u'graph_data_link': u'http://www.zillow.com/homedetails/65-69-Nightingale-St-UNIT-1B-Boston-MA-02124/59102087_zpid/#charts-and-data', u'home_size': u'902', u'longitude': u'-71.083803', u'map_this_home_link': u'http://www.zillow.com/homes/59102087_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/65-69-Nightingale-St-UNIT-1B-Boston-MA-02124/59102087_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02120', u'long': -71.1045329, u'prices': u'585,000', u'address': u'111 Fisher Ave # 3, Roxbury Crossing, MA', u'lat': 42.3279038, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'529000', u'zestimate_amount': u'605731', u'tax_value': None, u'zestimate_valuation_range_high': u'636018', u'tax_year': None, u'zestimate_value_change': u'-4369', u'latitude': u'42.328102', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2137189534', u'last_sold_date': u'08/01/2014', u'year_built': u'2008', u'zestimate_valuationRange_low': u'575444', u'graph_data_link': None, u'home_size': u'1073', u'longitude': u'-71.105026', u'map_this_home_link': u'http://www.zillow.com/homes/2137189534_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/111-Fisher-Ave-3-Roxbury-Crossing-MA-02120/2137189534_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.035687, u'prices': u'475,000', u'address': u'186-188 Paris St # 1, Boston, MA', u'lat': 42.374401, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'497660', u'tax_value': None, u'zestimate_valuation_range_high': u'597192', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.374401', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096572247', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'393151', u'graph_data_link': None, u'home_size': u'945', u'longitude': u'-71.03569', u'map_this_home_link': u'http://www.zillow.com/homes/2096572247_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/186-188-Paris-St-1-Boston-MA-02128/2096572247_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.07774049999999, u'prices': u'2,100,000', u'address': u'429-A Columbus Ave # 1, Boston, MA', u'lat': 42.3441143, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'2140687', u'tax_value': None, u'zestimate_valuation_range_high': u'2247721', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.344139', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096651087', u'last_sold_date': None, u'year_built': u'1899', u'zestimate_valuationRange_low': u'2033653', u'graph_data_link': None, u'home_size': u'1893', u'longitude': u'-71.077796', u'map_this_home_link': u'http://www.zillow.com/homes/2096651087_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/429-A-Columbus-Ave-1-Boston-MA-02118/2096651087_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0568823, u'prices': u'179,000', u'address': u'549 Adams St UNIT 5, Dorchester, MA', u'lat': 42.2909858, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'232110', u'tax_value': None, u'zestimate_valuation_range_high': u'243715', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.291009', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096635290', u'last_sold_date': None, u'year_built': u'1965', u'zestimate_valuationRange_low': u'215862', u'graph_data_link': None, u'home_size': u'686', u'longitude': u'-71.057253', u'map_this_home_link': u'http://www.zillow.com/homes/2096635290_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/549-Adams-St-UNIT-5-Dorchester-MA-02122/2096635290_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0475392, u'prices': u'469,000', u'address': u'322 Athens St # 5, Boston, MA', u'lat': 42.3374996, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'473807', u'tax_value': None, u'zestimate_valuation_range_high': u'497497', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.337501', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096553772', u'last_sold_date': None, u'year_built': u'1920', u'zestimate_valuationRange_low': u'445379', u'graph_data_link': None, u'home_size': u'614', u'longitude': u'-71.047531', u'map_this_home_link': u'http://www.zillow.com/homes/2096553772_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/322-Athens-St-5-Boston-MA-02127/2096553772_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02119', u'long': -71.073476, u'prices': u'1,100,000', u'address': u'477-477A Dudley St, Boston, MA', u'lat': 42.3232661, u'zillow': {u'property_size': u'1742', u'bathrooms': u'4.0', u'last_sold_price': None, u'zestimate_amount': u'1128600', u'tax_value': None, u'zestimate_valuation_range_high': u'1185030', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.323154', u'zestimate_percentile': u'0', u'bedrooms': u'15', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096492211', u'last_sold_date': None, u'year_built': u'1899', u'zestimate_valuationRange_low': u'1072170', u'graph_data_link': None, u'home_size': u'6440', u'longitude': u'-71.073684', u'map_this_home_link': u'http://www.zillow.com/homes/2096492211_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/477-477A-Dudley-St-Boston-MA-02119/2096492211_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02129', u'long': -71.067201, u'prices': u'1,049,000', u'address': u'77 Russell St, Boston, MA', u'lat': 42.380384, u'zillow': {u'property_size': u'3049', u'bathrooms': u'2.0', u'last_sold_price': u'515000', u'zestimate_amount': u'1001620', u'tax_value': u'588500.0', u'zestimate_valuation_range_high': u'1171895', u'tax_year': u'2015', u'zestimate_value_change': u'53314', u'latitude': u'42.380387', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59100365', u'last_sold_date': u'10/31/2006', u'year_built': u'1814', u'zestimate_valuationRange_low': u'931507', u'graph_data_link': u'http://www.zillow.com/homedetails/77-Russell-St-Boston-MA-02129/59100365_zpid/#charts-and-data', u'home_size': u'1481', u'longitude': u'-71.067198', u'map_this_home_link': u'http://www.zillow.com/homes/59100365_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/77-Russell-St-Boston-MA-02129/59100365_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02114', u'long': -71.0682762, u'prices': u'2,500,000', u'address': u'103 Myrtle St, Boston, MA', u'lat': 42.35937209999999, u'zillow': {u'property_size': u'871', u'bathrooms': u'4.0', u'last_sold_price': u'1788000', u'zestimate_amount': u'1695457', u'tax_value': u'1124300.0', u'zestimate_valuation_range_high': u'1780230', u'tax_year': u'2014', u'zestimate_value_change': None, u'latitude': u'42.35937', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59173626', u'last_sold_date': u'02/19/2016', u'year_built': u'1890', u'zestimate_valuationRange_low': u'1610684', u'graph_data_link': u'http://www.zillow.com/homedetails/103-Myrtle-St-Boston-MA-02114/59173626_zpid/#charts-and-data', u'home_size': u'2192', u'longitude': u'-71.068276', u'map_this_home_link': u'http://www.zillow.com/homes/59173626_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/103-Myrtle-St-Boston-MA-02114/59173626_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.06849129999999, u'prices': u'1,375,000', u'address': u'1313 Washington St APT 423, Boston, MA', u'lat': 42.3420501, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'1344440', u'tax_value': None, u'zestimate_valuation_range_high': u'1438551', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.342105', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096650733', u'last_sold_date': None, u'year_built': u'2002', u'zestimate_valuationRange_low': u'1277218', u'graph_data_link': None, u'home_size': u'1521', u'longitude': u'-71.068458', u'map_this_home_link': u'http://www.zillow.com/homes/2096650733_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1313-Washington-St-APT-423-Boston-MA-02118/2096650733_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02120', u'long': -71.0974762, u'prices': u'899,000', u'address': u'80-84 Terrace St, Boston, MA', u'lat': 42.32930409999999, u'zillow': {u'property_size': u'4791', u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'866852', u'tax_value': None, u'zestimate_valuation_range_high': u'944869', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.329395', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096504828', u'last_sold_date': None, u'year_built': u'1920', u'zestimate_valuationRange_low': u'780167', u'graph_data_link': None, u'home_size': u'1191', u'longitude': u'-71.097442', u'map_this_home_link': u'http://www.zillow.com/homes/2096504828_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/80-84-Terrace-St-Boston-MA-02120/2096504828_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02115', u'long': -71.0886952, u'prices': u'829,900', u'address': u'95 Gainsborough St APT 307, Boston, MA', u'lat': 42.3425176, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'515000', u'zestimate_amount': u'720288', u'tax_value': u'429600.0', u'zestimate_valuation_range_high': u'770708', u'tax_year': u'2014', u'zestimate_value_change': u'21696', u'latitude': u'42.342339', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59177579', u'last_sold_date': u'04/12/2013', u'year_built': u'1915', u'zestimate_valuationRange_low': u'669868', u'graph_data_link': u'http://www.zillow.com/homedetails/95-Gainsborough-St-APT-307-Boston-MA-02115/59177579_zpid/#charts-and-data', u'home_size': u'851', u'longitude': u'-71.08817', u'map_this_home_link': u'http://www.zillow.com/homes/59177579_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/95-Gainsborough-St-APT-307-Boston-MA-02115/59177579_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02135', u'long': -71.1493959, u'prices': u'625,000', u'address': u'100 Nottinghill Rd UNIT 1, Boston, MA', u'lat': 42.3437503, u'zillow': {u'property_size': u'2189', u'bathrooms': u'2.0', u'last_sold_price': u'347822', u'zestimate_amount': u'623074', u'tax_value': u'339000.0', u'zestimate_valuation_range_high': u'691612', u'tax_year': u'2015', u'zestimate_value_change': None, u'latitude': u'42.343591', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59090263', u'last_sold_date': u'08/23/2007', u'year_built': u'1900', u'zestimate_valuationRange_low': u'535844', u'graph_data_link': u'http://www.zillow.com/homedetails/100-Nottinghill-Rd-UNIT-1-Boston-MA-02135/59090263_zpid/#charts-and-data', u'home_size': u'2000', u'longitude': u'-71.149421', u'map_this_home_link': u'http://www.zillow.com/homes/59090263_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/100-Nottinghill-Rd-UNIT-1-Boston-MA-02135/59090263_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.16972620000001, u'prices': u'419,500', u'address': u'83 Oakmere St, Boston, MA', u'lat': 42.26950660000001, 'property': {'neighborhood': None, 'bathrooms': '2.0', 'school_district': None, 'heating_sources': None, 'rooms': 'Dining room', 'home_description': None, 'property_size': '4725', 'num_floors': '1', 'heating_system': 'Baseboard', 'photo_gallery': 'http://www.zillow.com/homedetails/83-Oakmere-St-Boston-MA-02132/59160497_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Carpet, Hardwood', 'year_updated': None, 'bedrooms': '2', 'latitude': '42.269486', 'zillow_id': '59160497', 'basement': 'Partially finished', 'year_built': '1960', 'home_size': '1080', 'roof': 'Asphalt', 'view': None, 'home_type': 'SingleFamily', 'parking_type': 'Off-street', 'home_detail_link': 'http://www.zillow.com/homedetails/83-Oakmere-St-Boston-MA-02132/59160497_zpid/', 'home_info': 'http://www.zillow.com/homedetails/83-Oakmere-St-Boston-MA-02132/59160497_zpid/'}, u'zillow': {u'property_size': u'4725', u'bathrooms': u'2.0', u'last_sold_price': u'144000', u'zestimate_amount': u'443722', u'tax_value': u'290800.0', u'zestimate_valuation_range_high': u'465908', u'tax_year': u'2015', u'zestimate_value_change': u'33', u'latitude': u'42.269486', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59160497', u'last_sold_date': u'01/08/1997', u'year_built': u'1960', u'zestimate_valuationRange_low': u'403787', u'graph_data_link': u'http://www.zillow.com/homedetails/83-Oakmere-St-Boston-MA-02132/59160497_zpid/#charts-and-data', u'home_size': u'1080', u'longitude': u'-71.169751', u'map_this_home_link': u'http://www.zillow.com/homes/59160497_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/83-Oakmere-St-Boston-MA-02132/59160497_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02115', u'long': -71.0889785, u'prices': u'5,950,000', u'address': u'474 Beacon St # 1, Boston, MA', u'lat': 42.3513584, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'5069166', u'tax_value': None, u'zestimate_valuation_range_high': u'5322624', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.351444', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096577205', u'last_sold_date': None, u'year_built': u'1899', u'zestimate_valuationRange_low': u'405533', u'graph_data_link': None, u'home_size': u'2710', u'longitude': u'-71.088447', u'map_this_home_link': u'http://www.zillow.com/homes/2096577205_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/474-Beacon-St-1-Boston-MA-02115/2096577205_zpid/'}}, {u'status': u'Pre-Foreclosure', u'zip': None, u'long': -1, u'prices': -1, u'address': u'Sign in for details', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.057159, u'prices': u'495,000', u'address': u'95 Dix St APT 1, Dorchester, MA', u'lat': 42.295881, u'zillow': {u'property_size': u'9000', u'bathrooms': u'2.0', u'last_sold_price': u'372000', u'zestimate_amount': u'506080', u'tax_value': u'283800.0', u'zestimate_valuation_range_high': u'561749', u'tax_year': u'2014', u'zestimate_value_change': u'24725', u'latitude': u'42.295879', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81854485', u'last_sold_date': u'01/04/2007', u'year_built': u'1905', u'zestimate_valuationRange_low': u'440290', u'graph_data_link': u'http://www.zillow.com/homedetails/95-Dix-St-APT-1-Dorchester-MA-02122/81854485_zpid/#charts-and-data', u'home_size': u'2030', u'longitude': u'-71.057159', u'map_this_home_link': u'http://www.zillow.com/homes/81854485_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/95-Dix-St-APT-1-Dorchester-MA-02122/81854485_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02116', u'long': -71.0723326, u'prices': u'3,495,000', u'address': u'80 Chandler St, Boston, MA', u'lat': 42.3464377, u'zillow': {u'property_size': u'1306', u'bathrooms': u'4.0', u'last_sold_price': u'1060000', u'zestimate_amount': u'3487650', u'tax_value': u'1401800.0', u'zestimate_valuation_range_high': u'3731786', u'tax_year': u'2014', u'zestimate_value_change': u'337059', u'latitude': u'42.346425', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59175930', u'last_sold_date': u'01/12/2004', u'year_built': u'1880', u'zestimate_valuationRange_low': u'3173761', u'graph_data_link': u'http://www.zillow.com/homedetails/80-Chandler-St-Boston-MA-02116/59175930_zpid/#charts-and-data', u'home_size': u'3203', u'longitude': u'-71.072327', u'map_this_home_link': u'http://www.zillow.com/homes/59175930_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/80-Chandler-St-Boston-MA-02116/59175930_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.07822380000002, u'prices': u'6,250,000', u'address': u'1 Huntington Ave APT 1802, Boston, MA', u'lat': 42.3486664, u'zillow': {u'property_size': None, u'bathrooms': u'4.0', u'last_sold_price': None, u'zestimate_amount': u'5214817', u'tax_value': None, u'zestimate_valuation_range_high': u'5475558', u'tax_year': None, u'zestimate_value_change': u'2073797', u'latitude': u'42.348719', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2138631422', u'last_sold_date': None, u'year_built': u'1999', u'zestimate_valuationRange_low': u'312889', u'graph_data_link': None, u'home_size': u'2864', u'longitude': u'-71.078259', u'map_this_home_link': u'http://www.zillow.com/homes/2138631422_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1-Huntington-Ave-APT-1802-Boston-MA-02116/2138631422_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.1456719, u'prices': u'629,900', u'address': u'41 Woodard Rd, Boston, MA', u'lat': 42.2795267, u'zillow': {u'property_size': u'4791', u'bathrooms': u'2.0', u'last_sold_price': u'415000', u'zestimate_amount': u'624570', u'tax_value': u'373800.0', u'zestimate_valuation_range_high': u'674536', u'tax_year': u'2014', u'zestimate_value_change': u'51510', u'latitude': u'42.279533', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59156205', u'last_sold_date': u'06/30/2010', u'year_built': u'1959', u'zestimate_valuationRange_low': u'568359', u'graph_data_link': u'http://www.zillow.com/homedetails/41-Woodard-Rd-Boston-MA-02132/59156205_zpid/#charts-and-data', u'home_size': u'1800', u'longitude': u'-71.14566', u'map_this_home_link': u'http://www.zillow.com/homes/59156205_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/41-Woodard-Rd-Boston-MA-02132/59156205_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02119', u'long': -71.0915, u'prices': u'690,000', u'address': u'126 Thornton St # 2, Boston, MA', u'lat': 42.3228, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'730484', u'tax_value': None, u'zestimate_valuation_range_high': u'854666', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.3228', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2102236649', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'467510', u'graph_data_link': None, u'home_size': u'1903', u'longitude': u'-71.0915', u'map_this_home_link': u'http://www.zillow.com/homes/2102236649_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/126-Thornton-St-2-Boston-MA-02119/2102236649_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02132', u'long': -71.14598629999999, u'prices': u'459,900', u'address': u'198 Stratford St # 2, Boston, MA', u'lat': 42.2805441, u'zillow': {u'property_size': u'10018', u'bathrooms': u'1.0', u'last_sold_price': u'390000', u'zestimate_amount': u'493679', u'tax_value': None, u'zestimate_valuation_range_high': u'523300', u'tax_year': None, u'zestimate_value_change': u'-48588', u'latitude': u'42.280601', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2107051539', u'last_sold_date': u'10/23/2014', u'year_built': u'1920', u'zestimate_valuationRange_low': u'464058', u'graph_data_link': None, u'home_size': u'1688', u'longitude': u'-71.145896', u'map_this_home_link': u'http://www.zillow.com/homes/2107051539_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/198-Stratford-St-2-Boston-MA-02132/2107051539_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0741036, u'prices': u'3,750,000', u'address': u'100 Beacon St UNIT 2A, Boston, MA', u'lat': 42.3553215, u'zillow': {u'property_size': u'1973', u'bathrooms': u'3.0', u'last_sold_price': u'2100000', u'zestimate_amount': u'3603117', u'tax_value': u'1986700.0', u'zestimate_valuation_range_high': u'3927398', u'tax_year': u'2015', u'zestimate_value_change': u'-44603', u'latitude': u'42.355525', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'102988122', u'last_sold_date': u'10/02/2013', u'year_built': u'1920', u'zestimate_valuationRange_low': u'3422961', u'graph_data_link': u'http://www.zillow.com/homedetails/100-Beacon-St-UNIT-2A-Boston-MA-02116/102988122_zpid/#charts-and-data', u'home_size': u'1975', u'longitude': u'-71.073379', u'map_this_home_link': u'http://www.zillow.com/homes/102988122_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/100-Beacon-St-UNIT-2A-Boston-MA-02116/102988122_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02108', u'long': -71.0718977, u'prices': u'1,695,000', u'address': u'31 Brimmer St # 31-4, Boston, MA', u'lat': 42.357788, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'1765175', u'tax_value': None, u'zestimate_valuation_range_high': u'1853434', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.357849', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096574230', u'last_sold_date': None, u'year_built': u'1880', u'zestimate_valuationRange_low': u'1659264', u'graph_data_link': None, u'home_size': u'1671', u'longitude': u'-71.072189', u'map_this_home_link': u'http://www.zillow.com/homes/2096574230_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/31-Brimmer-St-31-4-Boston-MA-02108/2096574230_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02131', u'long': -71.1140089, u'prices': u'400,000', u'address': u'95 Neponset Ave # 1, Roslindale, MA', u'lat': 42.2864075, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'429482', u'tax_value': None, u'zestimate_valuation_range_high': u'455251', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.28619', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2103740721', u'last_sold_date': None, u'year_built': u'1930', u'zestimate_valuationRange_low': u'403713', u'graph_data_link': None, u'home_size': u'1051', u'longitude': u'-71.113896', u'map_this_home_link': u'http://www.zillow.com/homes/2103740721_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/95-Neponset-Ave-1-Roslindale-MA-02131/2103740721_zpid/'}}, {u'status': u'Pre-Foreclosure', u'zip': None, u'long': -1, u'prices': -1, u'address': u'Sign in for details', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02135', u'long': -71.15003, u'prices': u'419,000', u'address': u'8 Kinross Rd APT 12, Boston, MA', u'lat': 42.3406236, u'zillow': {u'property_size': u'734', u'bathrooms': u'1.0', u'last_sold_price': u'370000', u'zestimate_amount': u'354864', u'tax_value': u'230900.0', u'zestimate_valuation_range_high': u'379704', u'tax_year': u'2014', u'zestimate_value_change': u'-9895', u'latitude': u'42.340418', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59093268', u'last_sold_date': u'06/16/2015', u'year_built': u'1925', u'zestimate_valuationRange_low': u'333572', u'graph_data_link': u'http://www.zillow.com/homedetails/8-Kinross-Rd-APT-12-Boston-MA-02135/59093268_zpid/#charts-and-data', u'home_size': u'734', u'longitude': u'-71.149394', u'map_this_home_link': u'http://www.zillow.com/homes/59093268_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/8-Kinross-Rd-APT-12-Boston-MA-02135/59093268_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02115', u'long': -71.092913, u'prices': u'349,000', u'address': u'452 Huntington Ave UNIT B, Boston, MA', u'lat': 42.3385299, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'126000', u'zestimate_amount': u'353213', u'tax_value': u'186100.0', u'zestimate_valuation_range_high': u'374406', u'tax_year': u'2014', u'zestimate_value_change': u'33438', u'latitude': u'42.263035', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59124645', u'last_sold_date': u'08/28/1989', u'year_built': u'1987', u'zestimate_valuationRange_low': u'321424', u'graph_data_link': u'http://www.zillow.com/homedetails/452-Huntington-Ave-UNIT-B-Boston-MA-02136/59124645_zpid/#charts-and-data', u'home_size': u'1278', u'longitude': u'-71.114272', u'map_this_home_link': u'http://www.zillow.com/homes/59124645_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/452-Huntington-Ave-UNIT-B-Boston-MA-02136/59124645_zpid/'}}, {u'status': u'Townhouse For Sale', u'zip': u'02128', u'long': -71.032727, u'prices': u'399,000', u'address': u'214 E Eagle St, East Boston, MA', u'lat': 42.38154300000001, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'405000', u'zestimate_amount': u'438631', u'tax_value': u'182800.0', u'zestimate_valuation_range_high': u'644788', u'tax_year': u'2015', u'zestimate_value_change': u'-35095', u'latitude': u'42.381543', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59121962', u'last_sold_date': u'01/06/2005', u'year_built': u'2016', u'zestimate_valuationRange_low': u'342132', u'graph_data_link': u'http://www.zillow.com/homedetails/214-E-Eagle-St-East-Boston-MA-02128/59121962_zpid/#charts-and-data', u'home_size': u'872', u'longitude': u'-71.032727', u'map_this_home_link': u'http://www.zillow.com/homes/59121962_zpid/', u'home_type': u'Townhouse', u'home_detail_link': u'http://www.zillow.com/homedetails/214-E-Eagle-St-East-Boston-MA-02128/59121962_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0358171, u'prices': u'649,000', u'address': u'6 Hatch St # 2, Boston, MA', u'lat': 42.3311916, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'621398', u'tax_value': None, u'zestimate_valuation_range_high': u'689752', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.33113', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096651423', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'590328', u'graph_data_link': None, u'home_size': u'1197', u'longitude': u'-71.035812', u'map_this_home_link': u'http://www.zillow.com/homes/2096651423_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/6-Hatch-St-2-Boston-MA-02127/2096651423_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0340811, u'prices': u'425,000', u'address': u'655 E 7th St UNIT 2, South Boston, MA', u'lat': 42.3323004, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'245000', u'zestimate_amount': u'429328', u'tax_value': u'211050.0', u'zestimate_valuation_range_high': u'459381', u'tax_year': u'2014', u'zestimate_value_change': u'58558', u'latitude': u'42.332291', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59148743', u'last_sold_date': u'10/31/2011', u'year_built': u'1890', u'zestimate_valuationRange_low': u'386395', u'graph_data_link': u'http://www.zillow.com/homedetails/655-E-7th-St-UNIT-2-South-Boston-MA-02127/59148743_zpid/#charts-and-data', u'home_size': u'500', u'longitude': u'-71.033925', u'map_this_home_link': u'http://www.zillow.com/homes/59148743_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/655-E-7th-St-UNIT-2-South-Boston-MA-02127/59148743_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02129', u'long': -71.0523825, u'prices': u'525,000', u'address': u'42 8th St APT 1408, Boston, MA', u'lat': 42.3750209, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'404900', u'zestimate_amount': u'529976', u'tax_value': u'367500.0', u'zestimate_valuation_range_high': u'556475', u'tax_year': u'2014', u'zestimate_value_change': u'16768', u'latitude': u'42.374939', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'67096037', u'last_sold_date': u'12/20/2005', u'year_built': u'1899', u'zestimate_valuationRange_low': u'503477', u'graph_data_link': u'http://www.zillow.com/homedetails/42-8th-St-APT-1408-Boston-MA-02129/67096037_zpid/#charts-and-data', u'home_size': u'701', u'longitude': u'-71.053014', u'map_this_home_link': u'http://www.zillow.com/homes/67096037_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/42-8th-St-APT-1408-Boston-MA-02129/67096037_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02115', u'long': -71.0855584, u'prices': u'5,950,000', u'address': u'401 Beacon St APT 3, Boston, MA', u'lat': 42.3517359, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'4467412', u'tax_value': u'355808.0', u'zestimate_valuation_range_high': u'6924489', u'tax_year': u'2014', u'zestimate_value_change': u'1416799', u'latitude': u'42.35183', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59167151', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'2680447', u'graph_data_link': u'http://www.zillow.com/homedetails/401-Beacon-St-APT-3-Boston-MA-02115/59167151_zpid/#charts-and-data', u'home_size': u'2900', u'longitude': u'-71.085653', u'map_this_home_link': u'http://www.zillow.com/homes/59167151_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/401-Beacon-St-APT-3-Boston-MA-02115/59167151_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0549051, u'prices': u'949,617', u'address': u'35 Tuckerman St # A, Boston, MA', u'lat': 42.33157010000001, u'zillow': {u'property_size': u'2613', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'988262', u'tax_value': None, u'zestimate_valuation_range_high': u'1037675', u'tax_year': None, u'zestimate_value_change': u'24329', u'latitude': u'42.331577', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2131898494', u'last_sold_date': None, u'year_built': u'2009', u'zestimate_valuationRange_low': u'938849', u'graph_data_link': None, u'home_size': u'2130', u'longitude': u'-71.054977', u'map_this_home_link': u'http://www.zillow.com/homes/2131898494_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/35-Tuckerman-St-A-Boston-MA-02127/2131898494_zpid/'}}, {u'status': u'Townhouse For Sale', u'zip': u'02121', u'long': -71.07636649999999, u'prices': u'399,900', u'address': u'181 Geneva Ave, Dorchester, MA', u'lat': 42.3050591, 'property': {'neighborhood': None, 'bathrooms': '2.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': None, 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/181-Geneva-Ave-Dorchester-MA-02121/2096661194_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '3', 'latitude': '42.304929', 'zillow_id': '2096661194', 'basement': None, 'year_built': '2016', 'home_size': '1410', 'roof': None, 'view': None, 'home_type': 'Townhouse', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/181-Geneva-Ave-Dorchester-MA-02121/2096661194_zpid/', 'home_info': 'http://www.zillow.com/homedetails/181-Geneva-Ave-Dorchester-MA-02121/2096661194_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'459289', u'tax_value': None, u'zestimate_valuation_range_high': u'670562', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.304929', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096661194', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'399581', u'graph_data_link': None, u'home_size': u'1410', u'longitude': u'-71.076129', u'map_this_home_link': u'http://www.zillow.com/homes/2096661194_zpid/', u'home_type': u'Townhouse', u'home_detail_link': u'http://www.zillow.com/homedetails/181-Geneva-Ave-Dorchester-MA-02121/2096661194_zpid/'}}, {u'status': u'New Construction', u'zip': u'02115', u'long': -71.0889785, u'prices': u'5,950,000', u'address': u'474 Beacon St UNIT 2, Boston, MA', u'lat': 42.3513584, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'5747198', u'tax_value': None, u'zestimate_valuation_range_high': u'6034558', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.351444', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096506022', u'last_sold_date': None, u'year_built': u'1899', u'zestimate_valuationRange_low': u'287360', u'graph_data_link': None, u'home_size': u'3040', u'longitude': u'-71.088447', u'map_this_home_link': u'http://www.zillow.com/homes/2096506022_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/474-Beacon-St-UNIT-2-Boston-MA-02115/2096506022_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02108', u'long': -71.0720697, u'prices': u'2,275,000', u'address': u'5 Otis Pl APT 2, Boston, MA', u'lat': 42.356982, u'zillow': {u'property_size': u'1588', u'bathrooms': u'3.0', u'last_sold_price': u'1600000', u'zestimate_amount': u'2198902', u'tax_value': u'1560300.0', u'zestimate_valuation_range_high': u'2308847', u'tax_year': u'2015', u'zestimate_value_change': u'115982', u'latitude': u'42.356983', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'87793708', u'last_sold_date': u'07/29/2009', u'year_built': u'1875', u'zestimate_valuationRange_low': u'2022990', u'graph_data_link': u'http://www.zillow.com/homedetails/5-Otis-Pl-APT-2-Boston-MA-02108/87793708_zpid/#charts-and-data', u'home_size': u'1588', u'longitude': u'-71.072074', u'map_this_home_link': u'http://www.zillow.com/homes/87793708_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/5-Otis-Pl-APT-2-Boston-MA-02108/87793708_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02125', u'long': -71.0562497, u'prices': u'399,000', u'address': u'942-944 Dorchester Ave UNIT 55, Dorchester, MA', u'lat': 42.3184228, u'zillow': {u'property_size': u'764', u'bathrooms': u'1.0', u'last_sold_price': u'354000', u'zestimate_amount': u'344509', u'tax_value': u'220900.0', u'zestimate_valuation_range_high': u'365180', u'tax_year': u'2014', u'zestimate_value_change': u'-97', u'latitude': u'42.318645', u'zestimate_percentile': u'0', u'bedrooms': u'0', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'103864777', u'last_sold_date': u'10/24/2013', u'year_built': u'1910', u'zestimate_valuationRange_low': u'310058', u'graph_data_link': u'http://www.zillow.com/homedetails/942-944-Dorchester-Ave-UNIT-55-Dorchester-MA-02125/103864777_zpid/#charts-and-data', u'home_size': u'764', u'longitude': u'-71.056091', u'map_this_home_link': u'http://www.zillow.com/homes/103864777_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/942-944-Dorchester-Ave-UNIT-55-Dorchester-MA-02125/103864777_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.0768306, u'prices': u'975,000', u'address': u'1721 Washington St UNIT 511, Boston, MA', u'lat': 42.3370936, u'zillow': {u'property_size': u'1054', u'bathrooms': u'2.0', u'last_sold_price': u'760000', u'zestimate_amount': u'971456', u'tax_value': u'754800.0', u'zestimate_valuation_range_high': u'1088031', u'tax_year': u'2015', u'zestimate_value_change': u'-23648', u'latitude': u'42.336936', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'63042371', u'last_sold_date': u'11/14/2014', u'year_built': u'2002', u'zestimate_valuationRange_low': u'903454', u'graph_data_link': u'http://www.zillow.com/homedetails/1721-Washington-St-UNIT-511-Boston-MA-02118/63042371_zpid/#charts-and-data', u'home_size': u'1054', u'longitude': u'-71.076942', u'map_this_home_link': u'http://www.zillow.com/homes/63042371_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1721-Washington-St-UNIT-511-Boston-MA-02118/63042371_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02125', u'long': -71.0621591, u'prices': u'879,000', u'address': u'119 Cushing Ave # 2, Boston, MA', u'lat': 42.3130521, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'726332', u'tax_value': None, u'zestimate_valuation_range_high': u'762649', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.313049', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096563384', u'last_sold_date': None, u'year_built': u'1886', u'zestimate_valuationRange_low': u'690015', u'graph_data_link': None, u'home_size': u'2400', u'longitude': u'-71.062141', u'map_this_home_link': u'http://www.zillow.com/homes/2096563384_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/119-Cushing-Ave-2-Boston-MA-02125/2096563384_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.016988, u'prices': u'449,900', u'address': u'71 Horace St # 1, Boston, MA', u'lat': 42.382233, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'460354', u'tax_value': None, u'zestimate_valuation_range_high': u'492579', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.382233', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096523008', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'363680', u'graph_data_link': None, u'home_size': u'900', u'longitude': u'-71.016988', u'map_this_home_link': u'http://www.zillow.com/homes/2096523008_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/71-Horace-St-1-Boston-MA-02128/2096523008_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0698484, u'prices': u'4,998,000', u'address': u'300 Boylston St UNIT 1202, Boston, MA', u'lat': 42.3518075, u'zillow': {u'property_size': u'2426', u'bathrooms': u'3.0', u'last_sold_price': u'3200000', u'zestimate_amount': u'4887605', u'tax_value': u'3189010.0', u'zestimate_valuation_range_high': u'5131985', u'tax_year': u'2014', u'zestimate_value_change': u'46101', u'latitude': u'42.351922', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59166166', u'last_sold_date': u'10/30/1998', u'year_built': u'1985', u'zestimate_valuationRange_low': u'3079191', u'graph_data_link': u'http://www.zillow.com/homedetails/300-Boylston-St-UNIT-1202-Boston-MA-02116/59166166_zpid/#charts-and-data', u'home_size': u'2426', u'longitude': u'-71.070254', u'map_this_home_link': u'http://www.zillow.com/homes/59166166_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/300-Boylston-St-UNIT-1202-Boston-MA-02116/59166166_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.03932, u'prices': u'599,900', u'address': u'364 Meridian St # 1, East Boston, MA', u'lat': 42.379, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'680167', u'tax_value': None, u'zestimate_valuation_range_high': u'1360334', u'tax_year': None, u'zestimate_value_change': u'-49500', u'latitude': u'42.379', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097746989', u'last_sold_date': None, u'year_built': u'1910', u'zestimate_valuationRange_low': u'496522', u'graph_data_link': None, u'home_size': u'2100', u'longitude': u'-71.03932', u'map_this_home_link': u'http://www.zillow.com/homes/2097746989_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/364-Meridian-St-1-East-Boston-MA-02128/2097746989_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02125', u'long': -71.05605609999999, u'prices': u'490,000', u'address': u'40 Buttonwood St # 3, Boston, MA', u'lat': 42.3206699, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'513367', u'tax_value': None, u'zestimate_valuation_range_high': u'544169', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.320541', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096486645', u'last_sold_date': None, u'year_built': u'1932', u'zestimate_valuationRange_low': u'477431', u'graph_data_link': None, u'home_size': u'969', u'longitude': u'-71.055905', u'map_this_home_link': u'http://www.zillow.com/homes/2096486645_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/40-Buttonwood-St-3-Boston-MA-02125/2096486645_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.1471806, u'prices': u'550,000', u'address': u'57 Cedarcrest Rd, Boston, MA', u'lat': 42.26359859999999, u'zillow': {u'property_size': u'6098', u'bathrooms': u'2.0', u'last_sold_price': u'150000', u'zestimate_amount': u'479415', u'tax_value': u'295300.0', u'zestimate_valuation_range_high': u'532151', u'tax_year': u'2015', u'zestimate_value_change': u'25207', u'latitude': u'42.26361', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59161172', u'last_sold_date': u'05/15/1992', u'year_built': u'1965', u'zestimate_valuationRange_low': u'436268', u'graph_data_link': u'http://www.zillow.com/homedetails/57-Cedarcrest-Rd-Boston-MA-02132/59161172_zpid/#charts-and-data', u'home_size': u'1487', u'longitude': u'-71.147179', u'map_this_home_link': u'http://www.zillow.com/homes/59161172_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/57-Cedarcrest-Rd-Boston-MA-02132/59161172_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02124', u'long': -71.056968, u'prices': u'575,000', u'address': u'390 Ashmont St, Dorchester Center, MA', u'lat': 42.287954, u'zillow': {u'property_size': u'3920', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'601984', u'tax_value': u'319700.0', u'zestimate_valuation_range_high': u'632083', u'tax_year': u'2014', u'zestimate_value_change': u'9103', u'latitude': u'42.287936', u'zestimate_percentile': u'0', u'bedrooms': u'6', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59114302', u'last_sold_date': None, u'year_built': u'1925', u'zestimate_valuationRange_low': u'553825', u'graph_data_link': u'http://www.zillow.com/homedetails/390-Ashmont-St-Dorchester-Center-MA-02124/59114302_zpid/#charts-and-data', u'home_size': u'2760', u'longitude': u'-71.056963', u'map_this_home_link': u'http://www.zillow.com/homes/59114302_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/390-Ashmont-St-Dorchester-Center-MA-02124/59114302_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.07322169999999, u'prices': u'1,070,000', u'address': u'19 Father Gilday St # 101, Boston, MA', u'lat': 42.3378081, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'1089425', u'tax_value': None, u'zestimate_valuation_range_high': u'1241945', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.3397', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2101782666', u'last_sold_date': None, u'year_built': u'1868', u'zestimate_valuationRange_low': u'1024059', u'graph_data_link': None, u'home_size': u'1223', u'longitude': u'-71.07373', u'map_this_home_link': u'http://www.zillow.com/homes/2101782666_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/19-Father-Gilday-St-101-Boston-MA-02118/2101782666_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02114', u'long': -71.0639964, u'prices': u'2,495,000', u'address': u'32 Derne St # 3C, Boston, MA', u'lat': 42.3594177, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'2622171', u'tax_value': None, u'zestimate_valuation_range_high': u'2805723', u'tax_year': None, u'zestimate_value_change': u'-66795', u'latitude': u'42.359406', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2099765542', u'last_sold_date': None, u'year_built': u'1880', u'zestimate_valuationRange_low': u'2438619', u'graph_data_link': None, u'home_size': u'1855', u'longitude': u'-71.064142', u'map_this_home_link': u'http://www.zillow.com/homes/2099765542_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/32-Derne-St-3C-Boston-MA-02114/2099765542_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0358171, u'prices': u'699,000', u'address': u'6 Hatch St # 3, Boston, MA', u'lat': 42.3311916, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'724808', u'tax_value': None, u'zestimate_valuation_range_high': u'804537', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.33113', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096651513', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'688568', u'graph_data_link': None, u'home_size': u'1197', u'longitude': u'-71.035812', u'map_this_home_link': u'http://www.zillow.com/homes/2096651513_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/6-Hatch-St-3-Boston-MA-02127/2096651513_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.076781, u'prices': u'2,545,000', u'address': u'133 W Concord St # 2, Boston, MA', u'lat': 42.339717, u'zillow': {u'property_size': None, u'bathrooms': u'4.0', u'last_sold_price': None, u'zestimate_amount': u'2106787', u'tax_value': None, u'zestimate_valuation_range_high': u'2296398', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.339717', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096480594', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'1917176', u'graph_data_link': None, u'home_size': u'2037', u'longitude': u'-71.076782', u'map_this_home_link': u'http://www.zillow.com/homes/2096480594_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/133-W-Concord-St-2-Boston-MA-02118/2096480594_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0789088, u'prices': u'1,998,000', u'address': u'673 Boylston St APT 3, Boston, MA', u'lat': 42.3499688, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'1735786', u'tax_value': None, u'zestimate_valuation_range_high': u'2464816', u'tax_year': None, u'zestimate_value_change': u'124232', u'latitude': u'42.34973', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2119454913', u'last_sold_date': None, u'year_built': u'1899', u'zestimate_valuationRange_low': u'1336555', u'graph_data_link': None, u'home_size': u'1867', u'longitude': u'-71.07881', u'map_this_home_link': u'http://www.zillow.com/homes/2119454913_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/673-Boylston-St-APT-3-Boston-MA-02116/2119454913_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02135', u'long': -71.1524139, u'prices': u'705,000', u'address': u'347 Market St, Boston, MA', u'lat': 42.351323, u'zillow': {u'property_size': u'3049', u'bathrooms': u'2.0', u'last_sold_price': u'435000', u'zestimate_amount': u'685436', u'tax_value': u'456400.0', u'zestimate_valuation_range_high': u'856795', u'tax_year': u'2014', u'zestimate_value_change': None, u'latitude': u'42.351323', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59093705', u'last_sold_date': u'02/25/2010', u'year_built': u'1860', u'zestimate_valuationRange_low': u'541494', u'graph_data_link': u'http://www.zillow.com/homedetails/347-Market-St-Boston-MA-02135/59093705_zpid/#charts-and-data', u'home_size': u'2059', u'longitude': u'-71.152414', u'map_this_home_link': u'http://www.zillow.com/homes/59093705_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/347-Market-St-Boston-MA-02135/59093705_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02111', u'long': -71.05714189999999, u'prices': u'1,275,000', u'address': u'92 G St, South Boston, MA', u'lat': 42.3512436, u'zillow': {u'property_size': u'2178', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'1251886', u'tax_value': u'659260.0', u'zestimate_valuation_range_high': u'1402112', u'tax_year': u'2014', u'zestimate_value_change': u'10064', u'latitude': u'42.332748', u'zestimate_percentile': u'0', u'bedrooms': u'6', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59148958', u'last_sold_date': None, u'year_built': u'1890', u'zestimate_valuationRange_low': u'1164254', u'graph_data_link': u'http://www.zillow.com/homedetails/92-G-St-South-Boston-MA-02127/59148958_zpid/#charts-and-data', u'home_size': u'3308', u'longitude': u'-71.043896', u'map_this_home_link': u'http://www.zillow.com/homes/59148958_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/92-G-St-South-Boston-MA-02127/59148958_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0534433, u'prices': u'469,000', u'address': u'38 Vinton St UNIT 1, Boston, MA', u'lat': 42.3294738, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'150000', u'zestimate_amount': u'459949', u'tax_value': u'256100.0', u'zestimate_valuation_range_high': u'482946', u'tax_year': u'2014', u'zestimate_value_change': u'9177', u'latitude': u'42.329437', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81854116', u'last_sold_date': u'06/27/2012', u'year_built': u'1905', u'zestimate_valuationRange_low': u'436952', u'graph_data_link': u'http://www.zillow.com/homedetails/38-Vinton-St-UNIT-1-Boston-MA-02127/81854116_zpid/#charts-and-data', u'home_size': u'887', u'longitude': u'-71.053489', u'map_this_home_link': u'http://www.zillow.com/homes/81854116_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/38-Vinton-St-UNIT-1-Boston-MA-02127/81854116_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.039661, u'prices': u'879,000', u'address': u'503 E 1st St APT 9, South Boston, MA', u'lat': 42.337845, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'677000', u'zestimate_amount': u'900544', u'tax_value': u'545400.0', u'zestimate_valuation_range_high': u'945571', u'tax_year': u'2014', u'zestimate_value_change': u'11333', u'latitude': u'42.337845', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'117686212', u'last_sold_date': u'03/21/2014', u'year_built': u'2011', u'zestimate_valuationRange_low': u'855517', u'graph_data_link': u'http://www.zillow.com/homedetails/503-E-1st-St-APT-9-South-Boston-MA-02127/117686212_zpid/#charts-and-data', u'home_size': u'1324', u'longitude': u'-71.039658', u'map_this_home_link': u'http://www.zillow.com/homes/117686212_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/503-E-1st-St-APT-9-South-Boston-MA-02127/117686212_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02119', u'long': -71.0911516, u'prices': u'2,995,000', u'address': u'88 Lambert Ave, Boston, MA', u'lat': 42.3263024, u'zillow': {u'property_size': u'28313', u'bathrooms': u'5.0', u'last_sold_price': None, u'zestimate_amount': u'897900', u'tax_value': None, u'zestimate_valuation_range_high': u'942795', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.326225', u'zestimate_percentile': u'0', u'bedrooms': u'7', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096703742', u'last_sold_date': None, u'year_built': u'1794', u'zestimate_valuationRange_low': u'853005', u'graph_data_link': None, u'home_size': u'10744', u'longitude': u'-71.091072', u'map_this_home_link': u'http://www.zillow.com/homes/2096703742_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/88-Lambert-Ave-Boston-MA-02119/2096703742_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02125', u'long': -71.061598, u'prices': u'1,000,000', u'address': u'23 Sumner St, Dorchester, MA', u'lat': 42.319082, u'zillow': {u'property_size': u'3049', u'bathrooms': u'5.0', u'last_sold_price': u'115000', u'zestimate_amount': u'690129', u'tax_value': u'341900.0', u'zestimate_valuation_range_high': u'738438', u'tax_year': u'2014', u'zestimate_value_change': u'53104', u'latitude': u'42.319082', u'zestimate_percentile': u'0', u'bedrooms': u'8', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59104329', u'last_sold_date': u'10/31/1994', u'year_built': u'1905', u'zestimate_valuationRange_low': u'655623', u'graph_data_link': u'http://www.zillow.com/homedetails/23-Sumner-St-Dorchester-MA-02125/59104329_zpid/#charts-and-data', u'home_size': u'3080', u'longitude': u'-71.061598', u'map_this_home_link': u'http://www.zillow.com/homes/59104329_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/23-Sumner-St-Dorchester-MA-02125/59104329_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02122', u'long': -71.047611, u'prices': u'489,000', u'address': u'8 Blackwell St, Dorchester, MA', u'lat': 42.2878029, u'zillow': {u'property_size': u'3920', u'bathrooms': u'2.0', u'last_sold_price': u'183000', u'zestimate_amount': u'496834', u'tax_value': u'297500.0', u'zestimate_valuation_range_high': u'531612', u'tax_year': u'2014', u'zestimate_value_change': u'4985', u'latitude': u'42.287803', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59117489', u'last_sold_date': u'01/14/2000', u'year_built': u'1926', u'zestimate_valuationRange_low': u'467024', u'graph_data_link': u'http://www.zillow.com/homedetails/8-Blackwell-St-Dorchester-MA-02122/59117489_zpid/#charts-and-data', u'home_size': u'1854', u'longitude': u'-71.04761', u'map_this_home_link': u'http://www.zillow.com/homes/59117489_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/8-Blackwell-St-Dorchester-MA-02122/59117489_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.07322169999999, u'prices': u'864,000', u'address': u'19 Father Gilday St # 102, Boston, MA', u'lat': 42.3378081, u'zillow': {u'property_size': u'24785', u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'848598', u'tax_value': None, u'zestimate_valuation_range_high': u'891028', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.3397', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2122247781', u'last_sold_date': None, u'year_built': u'1868', u'zestimate_valuationRange_low': u'789196', u'graph_data_link': None, u'home_size': u'961', u'longitude': u'-71.07373', u'map_this_home_link': u'http://www.zillow.com/homes/2122247781_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/19-Father-Gilday-St-102-Boston-MA-02118/2122247781_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.07132039999999, u'prices': u'3,500,000', u'address': u'327 Shawmut Ave # 3, Boston, MA', u'lat': 42.3419437, u'zillow': {u'property_size': None, u'bathrooms': u'4.0', u'last_sold_price': None, u'zestimate_amount': u'3377651', u'tax_value': None, u'zestimate_valuation_range_high': u'3546534', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.341941', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096558178', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'3208768', u'graph_data_link': None, u'home_size': u'2452', u'longitude': u'-71.071319', u'map_this_home_link': u'http://www.zillow.com/homes/2096558178_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/327-Shawmut-Ave-3-Boston-MA-02118/2096558178_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02109', u'long': -71.05063489999999, u'prices': u'1,875,000', u'address': u'4 Battery Wharf # 4409, Boston, MA', u'lat': 42.3669291, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'1890813', u'tax_value': None, u'zestimate_valuation_range_high': u'1985354', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.366562', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096695088', u'last_sold_date': None, u'year_built': u'2008', u'zestimate_valuationRange_low': u'1777364', u'graph_data_link': None, u'home_size': u'1375', u'longitude': u'-71.051331', u'map_this_home_link': u'http://www.zillow.com/homes/2096695088_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/4-Battery-Wharf-4409-Boston-MA-02109/2096695088_zpid/'}}, {u'status': u'Foreclosure', u'zip': u'02128', u'long': -71.03253819999999, u'prices': u'459,900', u'address': u'156 Porter St APT 250, Boston, MA', u'lat': 42.3713341, u'zillow': {u'property_size': u'803', u'bathrooms': u'1.0', u'last_sold_price': u'289900', u'zestimate_amount': u'439843', u'tax_value': u'275800.0', u'zestimate_valuation_range_high': u'461835', u'tax_year': u'2014', u'zestimate_value_change': u'20723', u'latitude': u'42.371398', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'71489601', u'last_sold_date': u'10/21/2005', u'year_built': u'1910', u'zestimate_valuationRange_low': u'413452', u'graph_data_link': u'http://www.zillow.com/homedetails/156-Porter-St-APT-250-Boston-MA-02128/71489601_zpid/#charts-and-data', u'home_size': u'803', u'longitude': u'-71.032432', u'map_this_home_link': u'http://www.zillow.com/homes/71489601_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/156-Porter-St-APT-250-Boston-MA-02128/71489601_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02125', u'long': -71.0577069, u'prices': u'2,150,000', u'address': u'31 Mount Vernon St, Boston, MA', u'lat': 42.321661, 'property': {'neighborhood': None, 'bathrooms': '2.0', 'school_district': 'BOSTON', 'heating_sources': None, 'rooms': None, 'home_description': 'Gorgeous 3 bedroom on Stunning Mount Vernon St. Large living area with crown moldings and fireplace. Eat in kitchen with Thomasville Cherry cabinets, granite counters, s/s appliances and tile flr. Two full baths with Jacuzzi. Washer and Dryer in unit. Private large storage room in basement. Front and rear decks and garage parking with automatic door opener. Minutes to Boston, JFK and Andrew T, I 93, free Shuttle to Longwood area, Beach, Shops, Restaurants and Park.', 'property_size': '1257', 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/31-Mount-Vernon-St-Dorchester-MA-02125/2130819544_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '3', 'latitude': '42.321662', 'zillow_id': '2130819544', 'basement': None, 'year_built': '1905', 'home_size': '1257', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/31-Mount-Vernon-St-Dorchester-MA-02125/2130819544_zpid/', 'home_info': 'http://www.zillow.com/homedetails/31-Mount-Vernon-St-Dorchester-MA-02125/2130819544_zpid/'}, u'zillow': {u'property_size': u'1257', u'bathrooms': u'2.0', u'last_sold_price': u'333500', u'zestimate_amount': u'506890', u'tax_value': None, u'zestimate_valuation_range_high': u'552510', u'tax_year': None, u'zestimate_value_change': u'19077', u'latitude': u'42.321662', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2130819544', u'last_sold_date': u'06/30/2011', u'year_built': u'1905', u'zestimate_valuationRange_low': u'430857', u'graph_data_link': None, u'home_size': u'1257', u'longitude': u'-71.057708', u'map_this_home_link': u'http://www.zillow.com/homes/2130819544_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/31-Mount-Vernon-St-Dorchester-MA-02125/2130819544_zpid/'}}, {u'status': u'Foreclosure', u'zip': u'02128', u'long': -71.0337486, u'prices': -1, u'address': u'Porter St APT 250, Boston, MA', u'lat': 42.3718466, u'zillow': {u'property_size': u'803', u'bathrooms': u'1.0', u'last_sold_price': u'289900', u'zestimate_amount': u'439843', u'tax_value': u'275800.0', u'zestimate_valuation_range_high': u'461835', u'tax_year': u'2014', u'zestimate_value_change': u'20723', u'latitude': u'42.371398', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'124796879', u'last_sold_date': u'10/21/2005', u'year_built': u'1910', u'zestimate_valuationRange_low': u'413452', u'graph_data_link': u'http://www.zillow.com/homedetails/Porter-St-APT-250-Boston-MA-02128/124796879_zpid/#charts-and-data', u'home_size': u'803', u'longitude': u'-71.032432', u'map_this_home_link': u'http://www.zillow.com/homes/124796879_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/Porter-St-APT-250-Boston-MA-02128/124796879_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02176', u'long': -71.05861999999999, u'prices': u'1,565,000', u'address': u'38 Melrose St # 1, Boston, MA', u'lat': 42.456428}, {u'status': u'Condo For Sale', u'zip': u'02119', u'long': -71.09595399999999, u'prices': u'695,000', u'address': u'19 Beech Glen St # 19, Boston, MA', u'lat': 42.325636, u'zillow': {u'property_size': None, u'bathrooms': u'4.0', u'last_sold_price': None, u'zestimate_amount': u'671939', u'tax_value': None, u'zestimate_valuation_range_high': u'705536', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.325534', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096650165', u'last_sold_date': None, u'year_built': u'1999', u'zestimate_valuationRange_low': u'638342', u'graph_data_link': None, u'home_size': u'2425', u'longitude': u'-71.095791', u'map_this_home_link': u'http://www.zillow.com/homes/2096650165_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/19-Beech-Glen-St-19-Boston-MA-02119/2096650165_zpid/'}}, {u'status': u'New Construction', u'zip': u'02127', u'long': -71.0542787, u'prices': u'945,000', u'address': u'45 W 3rd St # 225, Boston, MA', u'lat': 42.342376, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'923107', u'tax_value': None, u'zestimate_valuation_range_high': u'1209270', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.338717', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096502937', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'710792', u'graph_data_link': None, u'home_size': u'1008', u'longitude': u'-71.048806', u'map_this_home_link': u'http://www.zillow.com/homes/2096502937_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/45-W-3rd-St-225-Boston-MA-02127/2096502937_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02128', u'long': -71.021052, u'prices': u'529,900', u'address': u'504 Bennington St, Boston, MA', u'lat': 42.381868, u'zillow': {u'property_size': u'1250', u'bathrooms': u'1.0', u'last_sold_price': u'265000', u'zestimate_amount': u'380988', u'tax_value': u'159400.0', u'zestimate_valuation_range_high': u'411467', u'tax_year': u'2014', u'zestimate_value_change': u'37767', u'latitude': u'42.381869', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59122163', u'last_sold_date': u'03/31/2005', u'year_built': u'1910', u'zestimate_valuationRange_low': u'339079', u'graph_data_link': u'http://www.zillow.com/homedetails/504-Bennington-St-Boston-MA-02128/59122163_zpid/#charts-and-data', u'home_size': u'922', u'longitude': u'-71.021052', u'map_this_home_link': u'http://www.zillow.com/homes/59122163_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/504-Bennington-St-Boston-MA-02128/59122163_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02131', u'long': -71.1341644, u'prices': u'629,000', u'address': u'44 Winton St # 1, Boston, MA', u'lat': 42.274543, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'643518', u'tax_value': None, u'zestimate_valuation_range_high': u'720740', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.275072', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096562313', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'514814', u'graph_data_link': None, u'home_size': u'2000', u'longitude': u'-71.133469', u'map_this_home_link': u'http://www.zillow.com/homes/2096562313_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/44-Winton-St-1-Boston-MA-02131/2096562313_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.07132039999999, u'prices': u'3,250,000', u'address': u'327 Shawmut Ave # 1, Boston, MA', u'lat': 42.3419437, u'zillow': {u'property_size': None, u'bathrooms': u'4.0', u'last_sold_price': None, u'zestimate_amount': u'2996196', u'tax_value': None, u'zestimate_valuation_range_high': u'3146006', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.341941', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096558179', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'2846386', u'graph_data_link': None, u'home_size': u'2373', u'longitude': u'-71.071319', u'map_this_home_link': u'http://www.zillow.com/homes/2096558179_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/327-Shawmut-Ave-1-Boston-MA-02118/2096558179_zpid/'}}, {u'status': u'For Sale by Owner', u'zip': u'02132', u'long': -71.15634200000001, u'prices': u'689,000', u'address': u'15 Homewood Rd, Boston, MA', u'lat': 42.277601, 'property': {'neighborhood': None, 'bathrooms': '2.0', 'school_district': None, 'heating_sources': 'Gas', 'rooms': 'Dining room, Sun room', 'home_description': 'Custom built Brick & stone Tudor style, gumwood beamed ceiling & wainscoting, dead end street, Roxbury Latin area, 4 blocks to commuter rail, new double insulated shades, gas furnace 4 yrs old, new windows', 'property_size': '4655', 'num_floors': '3', 'heating_system': 'Other', 'photo_gallery': 'http://www.zillow.com/homedetails/15-Homewood-Rd-Boston-MA-02132/59158235_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood', 'year_updated': '1986', 'bedrooms': '3', 'latitude': '42.277601', 'zillow_id': '59158235', 'basement': 'Unfinished', 'year_built': '1932', 'home_size': '2035', 'roof': 'Asphalt', 'view': None, 'home_type': 'SingleFamily', 'parking_type': 'Garage - Detached, Off-street', 'home_detail_link': 'http://www.zillow.com/homedetails/15-Homewood-Rd-Boston-MA-02132/59158235_zpid/', 'home_info': 'http://www.zillow.com/homedetails/15-Homewood-Rd-Boston-MA-02132/59158235_zpid/'}, u'zillow': {u'property_size': u'4655', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'679486', u'tax_value': u'440100.0', u'zestimate_valuation_range_high': u'720255', u'tax_year': u'2014', u'zestimate_value_change': u'-12839', u'latitude': u'42.277601', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59158235', u'last_sold_date': None, u'year_built': u'1932', u'zestimate_valuationRange_low': u'625127', u'graph_data_link': u'http://www.zillow.com/homedetails/15-Homewood-Rd-Boston-MA-02132/59158235_zpid/#charts-and-data', u'home_size': u'2035', u'longitude': u'-71.156341', u'map_this_home_link': u'http://www.zillow.com/homes/59158235_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/15-Homewood-Rd-Boston-MA-02132/59158235_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0717561, u'prices': u'4,750,000', u'address': u'2 Commonwealth Ave APT 8B, Boston, MA', u'lat': 42.35310310000001, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': u'1500000', u'zestimate_amount': u'2772993', u'tax_value': u'1363900.0', u'zestimate_valuation_range_high': u'2994832', u'tax_year': u'2014', u'zestimate_value_change': u'207678', u'latitude': u'42.353413', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59176212', u'last_sold_date': u'11/10/1993', u'year_built': u'1982', u'zestimate_valuationRange_low': u'2606613', u'graph_data_link': u'http://www.zillow.com/homedetails/2-Commonwealth-Ave-APT-8B-Boston-MA-02116/59176212_zpid/#charts-and-data', u'home_size': u'1588', u'longitude': u'-71.071606', u'map_this_home_link': u'http://www.zillow.com/homes/59176212_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/2-Commonwealth-Ave-APT-8B-Boston-MA-02116/59176212_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0351864, u'prices': u'689,000', u'address': u'154-156 L St UNIT 2, South Boston, MA', u'lat': 42.3326737, u'zillow': {u'property_size': u'999999', u'bathrooms': u'2.0', u'last_sold_price': u'485000', u'zestimate_amount': u'800451', u'tax_value': u'430100.0', u'zestimate_valuation_range_high': u'896505', u'tax_year': u'2014', u'zestimate_value_change': u'-14112', u'latitude': u'42.332709', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'63041915', u'last_sold_date': u'06/25/2013', u'year_built': u'1885', u'zestimate_valuationRange_low': u'688388', u'graph_data_link': u'http://www.zillow.com/homedetails/154-156-L-St-UNIT-2-South-Boston-MA-02127/63041915_zpid/#charts-and-data', u'home_size': u'1279', u'longitude': u'-71.035181', u'map_this_home_link': u'http://www.zillow.com/homes/63041915_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/154-156-L-St-UNIT-2-South-Boston-MA-02127/63041915_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02108', u'long': -71.05945, u'prices': u'2,049,000', u'address': u'1 Franklin St # 1008, Boston, MA', u'lat': 42.35631, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'2096171', u'tax_value': None, u'zestimate_valuation_range_high': u'2515405', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.35622', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096514256', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'1760784', u'graph_data_link': None, u'home_size': u'1476', u'longitude': u'-71.05941', u'map_this_home_link': u'http://www.zillow.com/homes/2096514256_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1-Franklin-St-1008-Boston-MA-02110/2096514256_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.037486, u'prices': u'599,000', u'address': u'35 Chelsea St # 1, Boston, MA', u'lat': 42.37069899999999, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'480995', u'tax_value': None, u'zestimate_valuation_range_high': u'524285', u'tax_year': None, u'zestimate_value_change': u'-32987', u'latitude': u'42.370697', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2111637076', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'432896', u'graph_data_link': None, u'home_size': u'1587', u'longitude': u'-71.037483', u'map_this_home_link': u'http://www.zillow.com/homes/2111637076_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/35-Chelsea-St-1-Boston-MA-02128/2111637076_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0551009, u'prices': u'649,999', u'address': u'15 Ward St APT 4, Boston, MA', u'lat': 42.32989389999999, u'zillow': {u'property_size': u'1306', u'bathrooms': u'2.0', u'last_sold_price': u'407000', u'zestimate_amount': u'640935', u'tax_value': None, u'zestimate_valuation_range_high': u'685800', u'tax_year': None, u'zestimate_value_change': u'-8376', u'latitude': u'42.329887', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2120125330', u'last_sold_date': u'07/26/2012', u'year_built': u'2012', u'zestimate_valuationRange_low': u'608888', u'graph_data_link': None, u'home_size': u'1234', u'longitude': u'-71.055122', u'map_this_home_link': u'http://www.zillow.com/homes/2120125330_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/15-Ward-St-APT-4-Boston-MA-02127/2120125330_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02124', u'long': -71.0763554, u'prices': u'615,000', u'address': u'106 Millet St, Dorchester Center, MA', u'lat': 42.2926127, u'zillow': {u'property_size': u'2040', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'604558', u'tax_value': u'244500.0', u'zestimate_valuation_range_high': u'640831', u'tax_year': u'2014', u'zestimate_value_change': u'15840', u'latitude': u'42.292622', u'zestimate_percentile': u'0', u'bedrooms': u'9', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59106025', u'last_sold_date': None, u'year_built': u'1920', u'zestimate_valuationRange_low': u'562239', u'graph_data_link': u'http://www.zillow.com/homedetails/106-Millet-St-Dorchester-Center-MA-02124/59106025_zpid/#charts-and-data', u'home_size': u'3132', u'longitude': u'-71.076356', u'map_this_home_link': u'http://www.zillow.com/homes/59106025_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/106-Millet-St-Dorchester-Center-MA-02124/59106025_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02119', u'long': -71.085735, u'prices': u'400,000', u'address': u'2 Humboldt Ave UNIT 1, Roxbury, MA', u'lat': 42.320565, u'zillow': {u'property_size': u'1306', u'bathrooms': u'2.0', u'last_sold_price': u'195000', u'zestimate_amount': u'399719', u'tax_value': u'154600.0', u'zestimate_valuation_range_high': u'463674', u'tax_year': u'2014', u'zestimate_value_change': u'83358', u'latitude': u'42.320565', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59185116', u'last_sold_date': u'04/08/2016', u'year_built': u'1935', u'zestimate_valuationRange_low': u'267812', u'graph_data_link': u'http://www.zillow.com/homedetails/2-Humboldt-Ave-UNIT-1-Roxbury-MA-02119/59185116_zpid/#charts-and-data', u'home_size': u'1390', u'longitude': u'-71.085735', u'map_this_home_link': u'http://www.zillow.com/homes/59185116_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/2-Humboldt-Ave-UNIT-1-Roxbury-MA-02119/59185116_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0431028, u'prices': u'1,499,000', u'address': u'530 E Broadway, Boston, MA', u'lat': 42.3356751, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'1218057', u'tax_value': None, u'zestimate_valuation_range_high': u'1278960', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.335853', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096520359', u'last_sold_date': None, u'year_built': u'1910', u'zestimate_valuationRange_low': u'1157154', u'graph_data_link': None, u'home_size': u'1796', u'longitude': u'-71.043159', u'map_this_home_link': u'http://www.zillow.com/homes/2096520359_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/530-E-Broadway-Boston-MA-02127/2096520359_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02149', u'long': -71.06335179999999, u'prices': u'549,000', u'address': u'160 W Broadway # 206, Boston, MA', u'lat': 42.3993021, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'563006', u'tax_value': None, u'zestimate_valuation_range_high': u'669977', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.340613', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096690584', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'410994', u'graph_data_link': None, u'home_size': u'769', u'longitude': u'-71.05353', u'map_this_home_link': u'http://www.zillow.com/homes/2096690584_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/160-W-Broadway-206-Boston-MA-02127/2096690584_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02124', u'long': -71.06915409999999, u'prices': u'590,000', u'address': u'95 Tonawanda St, Dorchester Center, MA', u'lat': 42.2983062, u'zillow': {u'property_size': u'5662', u'bathrooms': u'3.0', u'last_sold_price': u'380000', u'zestimate_amount': u'584650', u'tax_value': u'356000.0', u'zestimate_valuation_range_high': u'613882', u'tax_year': u'2015', u'zestimate_value_change': u'17417', u'latitude': u'42.298336', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59105787', u'last_sold_date': u'04/01/2005', u'year_built': u'1885', u'zestimate_valuationRange_low': u'549571', u'graph_data_link': u'http://www.zillow.com/homedetails/95-Tonawanda-St-Dorchester-Center-MA-02124/59105787_zpid/#charts-and-data', u'home_size': u'3042', u'longitude': u'-71.069205', u'map_this_home_link': u'http://www.zillow.com/homes/59105787_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/95-Tonawanda-St-Dorchester-Center-MA-02124/59105787_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02130', u'long': -71.0997734, u'prices': u'1,175,000', u'address': u'52 Peter Parley Rd, Jamaica Plain, MA', u'lat': 42.3105278, u'zillow': {u'property_size': u'5227', u'bathrooms': u'3.0', u'last_sold_price': u'190000', u'zestimate_amount': u'919511', u'tax_value': u'61900.0', u'zestimate_valuation_range_high': u'1287315', u'tax_year': u'2015', u'zestimate_value_change': None, u'latitude': u'42.310544', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59133617', u'last_sold_date': u'12/17/2014', u'year_built': u'2015', u'zestimate_valuationRange_low': u'542511', u'graph_data_link': u'http://www.zillow.com/homedetails/52-Peter-Parley-Rd-Jamaica-Plain-MA-02130/59133617_zpid/#charts-and-data', u'home_size': u'2604', u'longitude': u'-71.099835', u'map_this_home_link': u'http://www.zillow.com/homes/59133617_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/52-Peter-Parley-Rd-Jamaica-Plain-MA-02130/59133617_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02135', u'long': -71.1653511, u'prices': u'1,690,000', u'address': u'580 Washington St UNIT 1410, Boston, MA', u'lat': 42.3500543, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'1285000', u'zestimate_amount': u'1618259', u'tax_value': u'1086800.0', u'zestimate_valuation_range_high': u'1699172', u'tax_year': u'2015', u'zestimate_value_change': u'10045', u'latitude': u'42.353388', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'123844732', u'last_sold_date': u'01/14/2014', u'year_built': u'2013', u'zestimate_valuationRange_low': u'1521163', u'graph_data_link': u'http://www.zillow.com/homedetails/580-Washington-St-UNIT-1410-Boston-MA-02111/123844732_zpid/#charts-and-data', u'home_size': u'1308', u'longitude': u'-71.062437', u'map_this_home_link': u'http://www.zillow.com/homes/123844732_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/580-Washington-St-UNIT-1410-Boston-MA-02111/123844732_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02121', u'long': -71.07609339999999, u'prices': u'366,295', u'address': u'5 Coleus Park # 5, Boston, MA', u'lat': 42.3100642, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'385731', u'tax_value': None, u'zestimate_valuation_range_high': u'412732', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.310806', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096516728', u'last_sold_date': None, u'year_built': u'2006', u'zestimate_valuationRange_low': u'362587', u'graph_data_link': None, u'home_size': u'1546', u'longitude': u'-71.075653', u'map_this_home_link': u'http://www.zillow.com/homes/2096516728_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/5-Coleus-Park-5-Boston-MA-02121/2096516728_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02111', u'long': -71.06262149999999, u'prices': u'699,000', u'address': u'3 Avery St UNIT 302, Boston, MA', u'lat': 42.353262, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'560000', u'zestimate_amount': u'666054', u'tax_value': u'509621.0', u'zestimate_valuation_range_high': u'706017', u'tax_year': u'2015', u'zestimate_value_change': u'5336', u'latitude': u'42.353278', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'71546516', u'last_sold_date': u'03/21/2006', u'year_built': u'2000', u'zestimate_valuationRange_low': u'632751', u'graph_data_link': u'http://www.zillow.com/homedetails/3-Avery-St-UNIT-302-Boston-MA-02111/71546516_zpid/#charts-and-data', u'home_size': u'811', u'longitude': u'-71.062755', u'map_this_home_link': u'http://www.zillow.com/homes/71546516_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/3-Avery-St-UNIT-302-Boston-MA-02111/71546516_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02127', u'long': -71.0385682, u'prices': u'949,000', u'address': u'3 Emmet St, Boston, MA', u'lat': 42.3367426, u'zillow': {u'property_size': u'871', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'828639', u'tax_value': u'409400.0', u'zestimate_valuation_range_high': u'886644', u'tax_year': u'2014', u'zestimate_value_change': u'24025', u'latitude': u'42.336743', u'zestimate_percentile': u'0', u'bedrooms': u'5', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59152436', u'last_sold_date': None, u'year_built': u'1880', u'zestimate_valuationRange_low': u'712630', u'graph_data_link': u'http://www.zillow.com/homedetails/3-Emmet-St-Boston-MA-02127/59152436_zpid/#charts-and-data', u'home_size': u'1500', u'longitude': u'-71.038563', u'map_this_home_link': u'http://www.zillow.com/homes/59152436_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/3-Emmet-St-Boston-MA-02127/59152436_zpid/'}}, {u'status': u'For Sale by Owner', u'zip': u'02108', u'long': -71.0599532, u'prices': u'1,750,000', u'address': u'45 Province St APT 1204, Boston, MA', u'lat': 42.35728160000001, u'zillow': {u'property_size': u'1318', u'bathrooms': u'2.0', u'last_sold_price': u'872000', u'zestimate_amount': u'1676366', u'tax_value': u'899948.0', u'zestimate_valuation_range_high': u'1760184', u'tax_year': u'2014', u'zestimate_value_change': u'12361', u'latitude': u'42.357031', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'102988252', u'last_sold_date': u'03/29/2012', u'year_built': u'2009', u'zestimate_valuationRange_low': u'1575784', u'graph_data_link': u'http://www.zillow.com/homedetails/45-Province-St-APT-1204-Boston-MA-02108/102988252_zpid/#charts-and-data', u'home_size': u'1318', u'longitude': u'-71.059969', u'map_this_home_link': u'http://www.zillow.com/homes/102988252_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/45-Province-St-APT-1204-Boston-MA-02108/102988252_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02149', u'long': -71.06335179999999, u'prices': u'979,000', u'address': u'160 W Broadway # 3, Boston, MA', u'lat': 42.3993021, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'963100', u'tax_value': None, u'zestimate_valuation_range_high': u'1261661', u'tax_year': None, u'zestimate_value_change': u'107741', u'latitude': u'42.340613', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097531545', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'722325', u'graph_data_link': None, u'home_size': u'1268', u'longitude': u'-71.05353', u'map_this_home_link': u'http://www.zillow.com/homes/2097531545_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/160-W-Broadway-3-Boston-MA-02127/2097531545_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.0390517, u'prices': u'649,000', u'address': u'447 Meridian St, Boston, MA', u'lat': 42.3818743, 'property': {'neighborhood': None, 'bathrooms': '3.0', 'school_district': None, 'heating_sources': 'Gas', 'rooms': 'Laundry room, Master bath, Walk-in closet', 'home_description': \"Brand new Condo Conversion in a convenient location! This 2 bedroom 2.5 bath unit boasts an open concept floorplan. The spacious and bright kitchen features beautiful white shaker cabinets, granite countertops, glass subway tile backsplash and stainless steel Energy Star appliances. Bedrooms contain a walk in closet and en-suite baths. A beautifully restored fireplace provides character and charm. Generously large windows allow for wonderful natural light to flow through this approximately 1500 sq. ft. unit with 12 ft. high ceilings, which can also be found in the deeded basement space ready for future finishing. Dark walnut stained oak floors, exquisite tile work in the bathrooms and recessed lighting throughout additionally compliment this unit. You'll also find a laundry room large enough for side by side units, additional closet space and a tv monitor intercom system as an added bonus as well as the deeded off street parking space, with an opportunity to purchase a second.\", 'property_size': '2962', 'num_floors': '1', 'heating_system': 'Other', 'photo_gallery': 'http://www.zillow.com/homedetails/447-Meridian-St-Boston-MA-02128/59121741_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood, Tile', 'year_updated': '2016', 'bedrooms': '2', 'latitude': '42.381871', 'zillow_id': '59121741', 'basement': 'Unfinished', 'year_built': '1910', 'home_size': '1500', 'roof': 'Asphalt, Composition, Shake / Shingle', 'view': 'City', 'home_type': 'Condominium', 'parking_type': 'Off-street', 'home_detail_link': 'http://www.zillow.com/homedetails/447-Meridian-St-Boston-MA-02128/59121741_zpid/', 'home_info': 'http://www.zillow.com/homedetails/447-Meridian-St-Boston-MA-02128/59121741_zpid/'}, u'zillow': {u'property_size': u'2962', u'bathrooms': u'3.0', u'last_sold_price': u'625000', u'zestimate_amount': u'653582', u'tax_value': u'334900.0', u'zestimate_valuation_range_high': u'718940', u'tax_year': u'2014', u'zestimate_value_change': u'-75992', u'latitude': u'42.381871', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59121741', u'last_sold_date': u'12/01/2015', u'year_built': u'1910', u'zestimate_valuationRange_low': u'614367', u'graph_data_link': u'http://www.zillow.com/homedetails/447-Meridian-St-Boston-MA-02128/59121741_zpid/#charts-and-data', u'home_size': u'1500', u'longitude': u'-71.039003', u'map_this_home_link': u'http://www.zillow.com/homes/59121741_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/447-Meridian-St-Boston-MA-02128/59121741_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02149', u'long': -71.06335179999999, u'prices': u'579,000', u'address': u'160 W Broadway # 304, Boston, MA', u'lat': 42.3993021, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'567039', u'tax_value': None, u'zestimate_valuation_range_high': u'686117', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.340613', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096515582', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'408268', u'graph_data_link': None, u'home_size': u'759', u'longitude': u'-71.05353', u'map_this_home_link': u'http://www.zillow.com/homes/2096515582_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/160-W-Broadway-304-Boston-MA-02127/2096515582_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.0333022, u'prices': u'339,000', u'address': u'276 Paris St # 3, Boston, MA', u'lat': 42.37633719999999, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'342300', u'tax_value': None, u'zestimate_valuation_range_high': u'373107', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.376312', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096475108', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'290955', u'graph_data_link': None, u'home_size': u'800', u'longitude': u'-71.033325', u'map_this_home_link': u'http://www.zillow.com/homes/2096475108_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/276-Paris-St-3-Boston-MA-02128/2096475108_zpid/'}}, {u'status': u'Make Me Move\\xae', u'zip': u'02135', u'long': -71.1421979, u'prices': u'1,000,000', u'address': u'50 Waverly St, Boston, MA', u'lat': 42.3608492, 'property': {'neighborhood': None, 'bathrooms': '2.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': None, 'property_size': '7500', 'num_floors': '2', 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/50-Waverly-St-Boston-MA-02135/59090846_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Carpet, Hardwood, Tile', 'year_updated': None, 'bedrooms': '5', 'latitude': '42.360854', 'zillow_id': '59090846', 'basement': 'Unfinished', 'year_built': '1900', 'home_size': '1750', 'roof': 'Asphalt', 'view': 'City', 'home_type': 'MultiFamily2To4', 'parking_type': 'Off-street', 'home_detail_link': 'http://www.zillow.com/homedetails/50-Waverly-St-Boston-MA-02135/59090846_zpid/', 'home_info': 'http://www.zillow.com/homedetails/50-Waverly-St-Boston-MA-02135/59090846_zpid/'}, u'zillow': {u'property_size': u'7500', u'bathrooms': u'2.0', u'last_sold_price': u'88000', u'zestimate_amount': u'797137', u'tax_value': u'529500.0', u'zestimate_valuation_range_high': u'860908', u'tax_year': u'2015', u'zestimate_value_change': u'1549', u'latitude': u'42.360854', u'zestimate_percentile': u'0', u'bedrooms': u'5', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59090846', u'last_sold_date': u'06/28/1993', u'year_built': u'1900', u'zestimate_valuationRange_low': u'749309', u'graph_data_link': u'http://www.zillow.com/homedetails/50-Waverly-St-Boston-MA-02135/59090846_zpid/#charts-and-data', u'home_size': u'1750', u'longitude': u'-71.142197', u'map_this_home_link': u'http://www.zillow.com/homes/59090846_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/50-Waverly-St-Boston-MA-02135/59090846_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02121', u'long': -71.086435, u'prices': u'599,900', u'address': u'39 Howland St, Dorchester, MA', u'lat': 42.3132779, u'zillow': {u'property_size': u'7840', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'555850', u'tax_value': u'248500.0', u'zestimate_valuation_range_high': u'594760', u'tax_year': u'2015', u'zestimate_value_change': u'28524', u'latitude': u'42.313279', u'zestimate_percentile': u'0', u'bedrooms': u'6', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59111987', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'466914', u'graph_data_link': u'http://www.zillow.com/homedetails/39-Howland-St-Dorchester-MA-02121/59111987_zpid/#charts-and-data', u'home_size': u'3855', u'longitude': u'-71.086434', u'map_this_home_link': u'http://www.zillow.com/homes/59111987_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/39-Howland-St-Dorchester-MA-02121/59111987_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02128', u'long': -71.0333302, u'prices': u'709,000', u'address': u'193 Chelsea St, Boston, MA', u'lat': 42.3743298, u'zillow': {u'property_size': u'1306', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'714418', u'tax_value': None, u'zestimate_valuation_range_high': u'750139', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.37432', u'zestimate_percentile': u'0', u'bedrooms': u'6', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096696245', u'last_sold_date': None, u'year_built': u'1890', u'zestimate_valuationRange_low': u'678697', u'graph_data_link': None, u'home_size': u'2743', u'longitude': u'-71.033317', u'map_this_home_link': u'http://www.zillow.com/homes/2096696245_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/193-Chelsea-St-Boston-MA-02128/2096696245_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02111', u'long': -71.0625369, u'prices': u'839,000', u'address': u'1 Avery St APT 18E, Boston, MA', u'lat': 42.3532598, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'785000', u'zestimate_amount': u'768632', u'tax_value': u'567571.0', u'zestimate_valuation_range_high': u'860868', u'tax_year': u'2014', u'zestimate_value_change': u'59393', u'latitude': u'42.353277', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'61319741', u'last_sold_date': u'10/14/2014', u'year_built': u'2000', u'zestimate_valuationRange_low': u'707141', u'graph_data_link': u'http://www.zillow.com/homedetails/1-Avery-St-APT-18E-Boston-MA-02111/61319741_zpid/#charts-and-data', u'home_size': u'637', u'longitude': u'-71.062724', u'map_this_home_link': u'http://www.zillow.com/homes/61319741_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1-Avery-St-APT-18E-Boston-MA-02111/61319741_zpid/'}}, {u'status': u'Townhouse For Sale', u'zip': u'02128', u'long': -71.03253819999999, u'prices': u'599,000', u'address': u'156 Porter St APT 340, Boston, MA', u'lat': 42.3713341, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'447000', u'zestimate_amount': u'596401', u'tax_value': u'276700.0', u'zestimate_valuation_range_high': u'626221', u'tax_year': u'2014', u'zestimate_value_change': u'115745', u'latitude': u'42.371398', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'71490159', u'last_sold_date': u'06/27/2013', u'year_built': u'1912', u'zestimate_valuationRange_low': u'566581', u'graph_data_link': u'http://www.zillow.com/homedetails/156-Porter-St-APT-340-Boston-MA-02128/71490159_zpid/#charts-and-data', u'home_size': u'1205', u'longitude': u'-71.032432', u'map_this_home_link': u'http://www.zillow.com/homes/71490159_zpid/', u'home_type': u'Townhouse', u'home_detail_link': u'http://www.zillow.com/homedetails/156-Porter-St-APT-340-Boston-MA-02128/71490159_zpid/'}}, {u'status': u'Make Me Move\\xae', u'zip': u'02135', u'long': -71.1579797, u'prices': u'475,000', u'address': u'1999 Commonwealth Ave APT 14, Boston, MA', u'lat': 42.3398603, u'zillow': {u'property_size': u'795', u'bathrooms': u'1.0', u'last_sold_price': u'98000', u'zestimate_amount': None, u'tax_value': u'279300.0', u'zestimate_valuation_range_high': None, u'tax_year': u'2015', u'zestimate_value_change': None, u'latitude': u'42.339972', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'59096127', u'last_sold_date': u'11/12/1998', u'year_built': u'1925', u'zestimate_valuationRange_low': None, u'graph_data_link': u'http://www.zillow.com/homedetails/1999-Commonwealth-Ave-APT-14-Boston-MA-02135/59096127_zpid/#charts-and-data', u'home_size': u'1200', u'longitude': u'-71.158758', u'map_this_home_link': u'http://www.zillow.com/homes/59096127_zpid/', u'home_type': u'MultiFamily5Plus', u'home_detail_link': u'http://www.zillow.com/homedetails/1999-Commonwealth-Ave-APT-14-Boston-MA-02135/59096127_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0528338, u'prices': u'748,900', u'address': u'184 W 9th St # 2, Boston, MA', u'lat': 42.333622, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'778998', u'tax_value': None, u'zestimate_valuation_range_high': u'817948', u'tax_year': None, u'zestimate_value_change': u'45222', u'latitude': u'42.333625', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2116007771', u'last_sold_date': None, u'year_built': u'2002', u'zestimate_valuationRange_low': u'740048', u'graph_data_link': None, u'home_size': u'1793', u'longitude': u'-71.052841', u'map_this_home_link': u'http://www.zillow.com/homes/2116007771_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/184-W-9th-St-2-Boston-MA-02127/2116007771_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02108', u'long': -71.05945, u'prices': u'2,425,000', u'address': u'1 Franklin St # 3001, Boston, MA', u'lat': 42.35631, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'2356456', u'tax_value': None, u'zestimate_valuation_range_high': u'2733489', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.35622', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096692786', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'2026552', u'graph_data_link': None, u'home_size': u'1426', u'longitude': u'-71.05941', u'map_this_home_link': u'http://www.zillow.com/homes/2096692786_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1-Franklin-St-3001-Boston-MA-02110/2096692786_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02119', u'long': -71.095032, u'prices': u'749,000', u'address': u'20 Thwing St # 2, Boston, MA', u'lat': 42.323832, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'743438', u'tax_value': None, u'zestimate_valuation_range_high': u'780610', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.323833', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096560289', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'706266', u'graph_data_link': None, u'home_size': u'2300', u'longitude': u'-71.095031', u'map_this_home_link': u'http://www.zillow.com/homes/2096560289_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/20-Thwing-St-2-Boston-MA-02119/2096560289_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.039512, u'prices': u'549,900', u'address': u'364 Meridian St # 3, Boston, MA', u'lat': 42.379135, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'544823', u'tax_value': None, u'zestimate_valuation_range_high': u'572064', u'tax_year': None, u'zestimate_value_change': u'-94686', u'latitude': u'42.379135', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097680644', u'last_sold_date': None, u'year_built': u'1910', u'zestimate_valuationRange_low': u'517582', u'graph_data_link': None, u'home_size': u'1400', u'longitude': u'-71.039512', u'map_this_home_link': u'http://www.zillow.com/homes/2097680644_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/364-Meridian-St-3-Boston-MA-02128/2097680644_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02131', u'long': -71.1321566, u'prices': u'625,000', u'address': u'15 Rosecliff St, Boston, MA', u'lat': 42.2817611, u'zillow': {u'property_size': u'5662', u'bathrooms': u'2.0', u'last_sold_price': u'260000', u'zestimate_amount': u'609893', u'tax_value': u'347200.0', u'zestimate_valuation_range_high': u'640388', u'tax_year': u'2014', u'zestimate_value_change': u'11835', u'latitude': u'42.281702', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59144730', u'last_sold_date': u'10/03/2000', u'year_built': u'1895', u'zestimate_valuationRange_low': u'579398', u'graph_data_link': u'http://www.zillow.com/homedetails/15-Rosecliff-St-Boston-MA-02131/59144730_zpid/#charts-and-data', u'home_size': u'2217', u'longitude': u'-71.132194', u'map_this_home_link': u'http://www.zillow.com/homes/59144730_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/15-Rosecliff-St-Boston-MA-02131/59144730_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02115', u'long': -71.0892999, u'prices': u'1,500,000', u'address': u'492 Beacon St UNIT 42, Boston, MA', u'lat': 42.3512865, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'950000', u'zestimate_amount': u'1485691', u'tax_value': u'1119300.0', u'zestimate_valuation_range_high': u'1559976', u'tax_year': u'2014', u'zestimate_value_change': u'16346', u'latitude': u'42.351023', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59169367', u'last_sold_date': u'03/27/2007', u'year_built': u'1890', u'zestimate_valuationRange_low': u'1411406', u'graph_data_link': u'http://www.zillow.com/homedetails/492-Beacon-St-UNIT-42-Boston-MA-02115/59169367_zpid/#charts-and-data', u'home_size': u'1392', u'longitude': u'-71.089071', u'map_this_home_link': u'http://www.zillow.com/homes/59169367_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/492-Beacon-St-UNIT-42-Boston-MA-02115/59169367_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02124', u'long': -71.087643, u'prices': u'599,000', u'address': u'27 Harwood St, Dorchester Center, MA', u'lat': 42.2859211, u'zillow': {u'property_size': u'3920', u'bathrooms': u'3.0', u'last_sold_price': u'550000', u'zestimate_amount': u'608609', u'tax_value': u'264700.0', u'zestimate_valuation_range_high': u'639039', u'tax_year': u'2014', u'zestimate_value_change': u'48747', u'latitude': u'42.285947', u'zestimate_percentile': u'0', u'bedrooms': u'7', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59117051', u'last_sold_date': u'08/05/2015', u'year_built': u'1910', u'zestimate_valuationRange_low': u'559920', u'graph_data_link': u'http://www.zillow.com/homedetails/27-Harwood-St-Dorchester-Center-MA-02124/59117051_zpid/#charts-and-data', u'home_size': u'2512', u'longitude': u'-71.087618', u'map_this_home_link': u'http://www.zillow.com/homes/59117051_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/27-Harwood-St-Dorchester-Center-MA-02124/59117051_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02128', u'long': -71.0333022, u'prices': u'1,100,000', u'address': u'276 Paris St, Boston, MA', u'lat': 42.37633719999999, u'zillow': {u'property_size': u'1306', u'bathrooms': u'4.0', u'last_sold_price': u'495000', u'zestimate_amount': u'622599', u'tax_value': u'232500.0', u'zestimate_valuation_range_high': u'653729', u'tax_year': u'2014', u'zestimate_value_change': u'72073', u'latitude': u'42.376313', u'zestimate_percentile': u'0', u'bedrooms': u'6', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59123413', u'last_sold_date': u'10/21/2015', u'year_built': u'1900', u'zestimate_valuationRange_low': u'591469', u'graph_data_link': u'http://www.zillow.com/homedetails/276-Paris-St-Boston-MA-02128/59123413_zpid/#charts-and-data', u'home_size': u'2400', u'longitude': u'-71.033322', u'map_this_home_link': u'http://www.zillow.com/homes/59123413_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/276-Paris-St-Boston-MA-02128/59123413_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02110', u'long': -71.0497989, u'prices': u'1,199,900', u'address': u'85 E India Row APT 25G, Boston, MA', u'lat': 42.3581173, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'680000', u'zestimate_amount': u'1136765', u'tax_value': u'548934.0', u'zestimate_valuation_range_high': u'1193603', u'tax_year': u'2015', u'zestimate_value_change': u'77365', u'latitude': u'42.357936', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59175437', u'last_sold_date': u'10/14/2014', u'year_built': u'1972', u'zestimate_valuationRange_low': u'1068559', u'graph_data_link': u'http://www.zillow.com/homedetails/85-E-India-Row-APT-25G-Boston-MA-02110/59175437_zpid/#charts-and-data', u'home_size': u'1216', u'longitude': u'-71.050579', u'map_this_home_link': u'http://www.zillow.com/homes/59175437_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/85-E-India-Row-APT-25G-Boston-MA-02110/59175437_zpid/'}}, {u'status': u'Coming Soon', u'zip': u'02126', u'long': -71.09325969999999, u'prices': u'449,900', u'address': u'640 Morton St, Boston, MA', u'lat': 42.2866225, 'property': {'neighborhood': None, 'bathrooms': '3.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'Great investment opportunity! Large triple decker in convenient Mattapan location. Property needs a little TLC but would be great for investors or owner occupied with a little sweat equity. All units to be delivered vacant. No showings until first Open House Sunday from 11:30 to 12:30.', 'property_size': '3049', 'num_floors': '3', 'heating_system': 'Forced air', 'photo_gallery': 'http://www.zillow.com/homedetails/640-Morton-St-Boston-MA-02126/59117516_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': '1985', 'bedrooms': '6', 'latitude': '42.286618', 'zillow_id': '59117516', 'basement': None, 'year_built': '1905', 'home_size': '4398', 'roof': None, 'view': None, 'home_type': 'MultiFamily2To4', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/640-Morton-St-Boston-MA-02126/59117516_zpid/', 'home_info': 'http://www.zillow.com/homedetails/640-Morton-St-Boston-MA-02126/59117516_zpid/'}, u'zillow': {u'property_size': u'3049', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'488591', u'tax_value': u'303600.0', u'zestimate_valuation_range_high': u'517906', u'tax_year': u'2015', u'zestimate_value_change': u'2942', u'latitude': u'42.286618', u'zestimate_percentile': u'0', u'bedrooms': u'6', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59117516', u'last_sold_date': None, u'year_built': u'1905', u'zestimate_valuationRange_low': u'439732', u'graph_data_link': u'http://www.zillow.com/homedetails/640-Morton-St-Boston-MA-02126/59117516_zpid/#charts-and-data', u'home_size': u'4398', u'longitude': u'-71.093271', u'map_this_home_link': u'http://www.zillow.com/homes/59117516_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/640-Morton-St-Boston-MA-02126/59117516_zpid/'}}, {u'status': u'Make Me Move\\xae', u'zip': u'02136', u'long': -71.12265889999999, u'prices': u'319,000', u'address': u'8 Pine St UNIT 2, Boston, MA', u'lat': 42.2535901, u'zillow': {u'property_size': u'1264', u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'360335', u'tax_value': u'176300.0', u'zestimate_valuation_range_high': u'385558', u'tax_year': u'2014', u'zestimate_value_change': u'2373', u'latitude': u'42.253276', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'63529744', u'last_sold_date': None, u'year_built': u'1912', u'zestimate_valuationRange_low': u'327905', u'graph_data_link': u'http://www.zillow.com/homedetails/8-Pine-St-UNIT-2-Boston-MA-02136/63529744_zpid/#charts-and-data', u'home_size': u'1264', u'longitude': u'-71.122779', u'map_this_home_link': u'http://www.zillow.com/homes/63529744_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/8-Pine-St-UNIT-2-Boston-MA-02136/63529744_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.0390517, u'prices': u'649,000', u'address': u'447 Meridian St # 1, Boston, MA', u'lat': 42.3818743, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'531883', u'tax_value': None, u'zestimate_valuation_range_high': u'590390', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.38187', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096474912', u'last_sold_date': None, u'year_built': u'1910', u'zestimate_valuationRange_low': u'489332', u'graph_data_link': None, u'home_size': u'1500', u'longitude': u'-71.039001', u'map_this_home_link': u'http://www.zillow.com/homes/2096474912_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/447-Meridian-St-1-Boston-MA-02128/2096474912_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02135', u'long': -71.14185909999999, u'prices': u'1,250,000', u'address': u'4 Litchfield St, Brighton, MA', u'lat': 42.3583448, u'zillow': {u'property_size': u'3436', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'1191903', u'tax_value': None, u'zestimate_valuation_range_high': u'1251498', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.3585', u'zestimate_percentile': u'0', u'bedrooms': u'8', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096694998', u'last_sold_date': None, u'year_built': u'1910', u'zestimate_valuationRange_low': u'1132308', u'graph_data_link': None, u'home_size': u'3666', u'longitude': u'-71.14165', u'map_this_home_link': u'http://www.zillow.com/homes/2096694998_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/4-Litchfield-St-Brighton-MA-02135/2096694998_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02126', u'long': -71.10095489999999, u'prices': u'389,900', u'address': u'5 Holmfield Ave, Hyde Park, MA', u'lat': 42.263739, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'158000', u'zestimate_amount': u'396161', u'tax_value': u'276700.0', u'zestimate_valuation_range_high': u'415969', u'tax_year': u'2015', u'zestimate_value_change': u'9646', u'latitude': u'42.26374', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59162608', u'last_sold_date': u'09/27/1999', u'year_built': u'1965', u'zestimate_valuationRange_low': u'372391', u'graph_data_link': u'http://www.zillow.com/homedetails/5-Holmfield-Ave-Hyde-Park-MA-02136/59162608_zpid/#charts-and-data', u'home_size': u'1517', u'longitude': u'-71.100955', u'map_this_home_link': u'http://www.zillow.com/homes/59162608_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/5-Holmfield-Ave-Hyde-Park-MA-02136/59162608_zpid/'}}, {u'status': u'Make Me Move\\xae', u'zip': u'02127', u'long': -71.0511681, u'prices': u'950,000', u'address': u'153 W 3rd St UNIT 3, South Boston, MA', u'lat': 42.3402588, u'zillow': {u'property_size': u'1347', u'bathrooms': u'2.0', u'last_sold_price': u'500000', u'zestimate_amount': u'923542', u'tax_value': u'461200.0', u'zestimate_valuation_range_high': u'1025132', u'tax_year': u'2014', u'zestimate_value_change': u'21714', u'latitude': u'42.340263', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59211504', u'last_sold_date': u'07/30/2013', u'year_built': u'2000', u'zestimate_valuationRange_low': u'821952', u'graph_data_link': u'http://www.zillow.com/homedetails/153-W-3rd-St-UNIT-3-South-Boston-MA-02127/59211504_zpid/#charts-and-data', u'home_size': u'1347', u'longitude': u'-71.051175', u'map_this_home_link': u'http://www.zillow.com/homes/59211504_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/153-W-3rd-St-UNIT-3-South-Boston-MA-02127/59211504_zpid/'}}, {u'status': u'New Construction', u'zip': u'02127', u'long': -71.0542787, u'prices': u'1,075,000', u'address': u'45 W 3rd St # 224, Boston, MA', u'lat': 42.342376, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'1080648', u'tax_value': None, u'zestimate_valuation_range_high': u'1361616', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.338717', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096589370', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'756454', u'graph_data_link': None, u'home_size': u'1134', u'longitude': u'-71.048806', u'map_this_home_link': u'http://www.zillow.com/homes/2096589370_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/45-W-3rd-St-224-Boston-MA-02127/2096589370_zpid/'}}, {u'status': u'Lot/Land For Sale', u'zip': u'02136', u'long': -71.1434037, u'prices': u'183,750', u'address': u'0 W Milton St, Boston, MA', u'lat': 42.2407678, u'zillow': {u'property_size': u'6098', u'bathrooms': None, u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.23991', u'zestimate_percentile': u'0', u'bedrooms': None, u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2118772429', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': None, u'longitude': u'-71.140892', u'map_this_home_link': u'http://www.zillow.com/homes/2118772429_zpid/', u'home_type': u'VacantResidentialLand', u'home_detail_link': u'http://www.zillow.com/homedetails/0-W-Milton-St-Boston-MA-02136/2118772429_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.0635677, u'prices': u'1,249,000', u'address': u'40 Traveler St # 203, Boston, MA', u'lat': 42.3443934, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'1319959', u'tax_value': None, u'zestimate_valuation_range_high': u'1504753', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.3446', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2101164293', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'1253961', u'graph_data_link': None, u'home_size': u'1288', u'longitude': u'-71.06441', u'map_this_home_link': u'http://www.zillow.com/homes/2101164293_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/40-Traveler-St-203-Boston-MA-02118/2101164293_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02111', u'long': -71.0625369, u'prices': u'974,000', u'address': u'1 Avery St APT 15C, Boston, MA', u'lat': 42.3532598, u'zillow': {u'property_size': u'871', u'bathrooms': u'2.0', u'last_sold_price': u'739000', u'zestimate_amount': u'969088', u'tax_value': u'693451.0', u'zestimate_valuation_range_high': u'1017542', u'tax_year': u'2014', u'zestimate_value_change': u'67262', u'latitude': u'42.353277', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'61319718', u'last_sold_date': u'06/06/2014', u'year_built': u'2001', u'zestimate_valuationRange_low': u'920634', u'graph_data_link': u'http://www.zillow.com/homedetails/1-Avery-St-APT-15C-Boston-MA-02111/61319718_zpid/#charts-and-data', u'home_size': u'750', u'longitude': u'-71.062724', u'map_this_home_link': u'http://www.zillow.com/homes/61319718_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1-Avery-St-APT-15C-Boston-MA-02111/61319718_zpid/'}}, {u'status': u'Lot/Land For Sale', u'zip': u'02128', u'long': -71.0193183, u'prices': u'649,900', u'address': u'58 Byron St, Boston, MA', u'lat': 42.3846363, u'zillow': {u'property_size': u'3484', u'bathrooms': None, u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.384437', u'zestimate_percentile': u'0', u'bedrooms': None, u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096685180', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': None, u'longitude': u'-71.018296', u'map_this_home_link': u'http://www.zillow.com/homes/2096685180_zpid/', u'home_type': u'VacantResidentialLand', u'home_detail_link': u'http://www.zillow.com/homedetails/58-Byron-St-Boston-MA-02128/2096685180_zpid/'}}, {u'status': u'New Construction', u'zip': u'02127', u'long': -71.0542787, u'prices': u'715,000', u'address': u'45 W 3rd St # 321, Boston, MA', u'lat': 42.342376, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'730102', u'tax_value': None, u'zestimate_valuation_range_high': u'795811', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.338717', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096589373', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'511071', u'graph_data_link': None, u'home_size': u'774', u'longitude': u'-71.048806', u'map_this_home_link': u'http://www.zillow.com/homes/2096589373_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/45-W-3rd-St-321-Boston-MA-02127/2096589373_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.016988, u'prices': u'459,900', u'address': u'71 Horace St # 2, Boston, MA', u'lat': 42.382233, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'460354', u'tax_value': None, u'zestimate_valuation_range_high': u'492579', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.382233', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096522786', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'363680', u'graph_data_link': None, u'home_size': u'900', u'longitude': u'-71.016988', u'map_this_home_link': u'http://www.zillow.com/homes/2096522786_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/71-Horace-St-2-Boston-MA-02128/2096522786_zpid/'}}, {u'status': u'New Construction', u'zip': u'02127', u'long': -71.0542787, u'prices': u'835,000', u'address': u'45 W 3rd St # 202, Boston, MA', u'lat': 42.342376, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'831143', u'tax_value': None, u'zestimate_valuation_range_high': u'947503', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.338717', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096542111', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'606734', u'graph_data_link': None, u'home_size': u'910', u'longitude': u'-71.048806', u'map_this_home_link': u'http://www.zillow.com/homes/2096542111_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/45-W-3rd-St-202-Boston-MA-02127/2096542111_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02119', u'long': -71.095032, u'prices': u'749,000', u'address': u'20 Thwing St # 1, Boston, MA', u'lat': 42.323832, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'742771', u'tax_value': None, u'zestimate_valuation_range_high': u'779910', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.323833', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096560379', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'705632', u'graph_data_link': None, u'home_size': u'2360', u'longitude': u'-71.095031', u'map_this_home_link': u'http://www.zillow.com/homes/2096560379_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/20-Thwing-St-1-Boston-MA-02119/2096560379_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02128', u'long': -71.03217099999999, u'prices': u'899,000', u'address': u'225 E Eagle St APT 3, East Boston, MA', u'lat': 42.38111000000001, 'property': {'neighborhood': None, 'bathrooms': '3.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': None, 'property_size': '6250', 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/225-E-Eagle-St-APT-3-East-Boston-MA-02128/2096638328_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '7', 'latitude': '42.38124', 'zillow_id': '2096638328', 'basement': None, 'year_built': '1900', 'home_size': '2728', 'roof': None, 'view': None, 'home_type': 'MultiFamily2To4', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/225-E-Eagle-St-APT-3-East-Boston-MA-02128/2096638328_zpid/', 'home_info': 'http://www.zillow.com/homedetails/225-E-Eagle-St-APT-3-East-Boston-MA-02128/2096638328_zpid/'}, u'zillow': {u'property_size': u'6250', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'866608', u'tax_value': None, u'zestimate_valuation_range_high': u'909938', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.38124', u'zestimate_percentile': u'0', u'bedrooms': u'7', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096638328', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'823278', u'graph_data_link': None, u'home_size': u'2728', u'longitude': u'-71.02944', u'map_this_home_link': u'http://www.zillow.com/homes/2096638328_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/225-E-Eagle-St-APT-3-East-Boston-MA-02128/2096638328_zpid/'}}, {u'status': u'Make Me Move\\xae', u'zip': u'02127', u'long': -71.0481865, u'prices': u'1,249,000', u'address': u'257 W 3rd St UNIT 1, South Boston, MA', u'lat': 42.33826320000001, u'zillow': {u'property_size': u'1953', u'bathrooms': u'3.0', u'last_sold_price': u'750000', u'zestimate_amount': u'1137452', u'tax_value': u'668700.0', u'zestimate_valuation_range_high': u'1251197', u'tax_year': u'2014', u'zestimate_value_change': u'-21715', u'latitude': u'42.338261', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'90137035', u'last_sold_date': u'08/12/2013', u'year_built': u'2008', u'zestimate_valuationRange_low': u'1057830', u'graph_data_link': u'http://www.zillow.com/homedetails/257-W-3rd-St-UNIT-1-South-Boston-MA-02127/90137035_zpid/#charts-and-data', u'home_size': u'1953', u'longitude': u'-71.048195', u'map_this_home_link': u'http://www.zillow.com/homes/90137035_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/257-W-3rd-St-UNIT-1-South-Boston-MA-02127/90137035_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02124', u'long': -71.087918, u'prices': u'689,000', u'address': u'35 Harwood St, Dorchester Center, MA', u'lat': 42.28588, u'zillow': {u'property_size': u'6969', u'bathrooms': u'3.0', u'last_sold_price': u'550000', u'zestimate_amount': u'626788', u'tax_value': u'243500.0', u'zestimate_valuation_range_high': u'670663', u'tax_year': u'2014', u'zestimate_value_change': u'36251', u'latitude': u'42.28588', u'zestimate_percentile': u'0', u'bedrooms': u'9', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59117052', u'last_sold_date': u'08/03/2015', u'year_built': u'1926', u'zestimate_valuationRange_low': u'582913', u'graph_data_link': u'http://www.zillow.com/homedetails/35-Harwood-St-Dorchester-Center-MA-02124/59117052_zpid/#charts-and-data', u'home_size': u'3864', u'longitude': u'-71.087918', u'map_this_home_link': u'http://www.zillow.com/homes/59117052_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/35-Harwood-St-Dorchester-Center-MA-02124/59117052_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.0635677, u'prices': u'1,428,000', u'address': u'40 Traveler St # 409, Boston, MA', u'lat': 42.3443934, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'1434290', u'tax_value': None, u'zestimate_valuation_range_high': u'1649433', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.344594', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096677072', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'1190461', u'graph_data_link': None, u'home_size': u'1181', u'longitude': u'-71.064406', u'map_this_home_link': u'http://www.zillow.com/homes/2096677072_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/40-Traveler-St-409-Boston-MA-02118/2096677072_zpid/'}}, {u'status': u'Make Me Move\\xae', u'zip': u'02118', u'long': -71.0804168, u'prices': u'1,100,000', u'address': u'529 Columbus Ave APT 11, Boston, MA', u'lat': 42.3419147, u'zillow': {u'property_size': u'1088', u'bathrooms': u'1.0', u'last_sold_price': u'669000', u'zestimate_amount': u'1038450', u'tax_value': u'656800.0', u'zestimate_valuation_range_high': u'1152680', u'tax_year': u'2014', u'zestimate_value_change': u'-3541', u'latitude': u'42.34185', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59211031', u'last_sold_date': u'05/30/2012', u'year_built': u'1900', u'zestimate_valuationRange_low': u'944990', u'graph_data_link': u'http://www.zillow.com/homedetails/529-Columbus-Ave-APT-11-Boston-MA-02118/59211031_zpid/#charts-and-data', u'home_size': u'1172', u'longitude': u'-71.080252', u'map_this_home_link': u'http://www.zillow.com/homes/59211031_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/529-Columbus-Ave-APT-11-Boston-MA-02118/59211031_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0567485, u'prices': u'799,000', u'address': u'488 Dorchester Ave # 4D, Boston, MA', u'lat': 42.3322323, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'769864', u'tax_value': None, u'zestimate_valuation_range_high': u'854549', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.332019', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096679739', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'677480', u'graph_data_link': None, u'home_size': u'1090', u'longitude': u'-71.056663', u'map_this_home_link': u'http://www.zillow.com/homes/2096679739_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/488-Dorchester-Ave-4D-Boston-MA-02127/2096679739_zpid/'}}, {u'status': u'New Construction', u'zip': u'02127', u'long': -71.0542787, u'prices': u'1,075,000', u'address': u'45 W 3rd St # 203, Boston, MA', u'lat': 42.342376, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'1087679', u'tax_value': None, u'zestimate_valuation_range_high': u'1337845', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.338717', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096589371', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'750498', u'graph_data_link': None, u'home_size': u'1127', u'longitude': u'-71.048806', u'map_this_home_link': u'http://www.zillow.com/homes/2096589371_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/45-W-3rd-St-203-Boston-MA-02127/2096589371_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0567485, u'prices': u'859,000', u'address': u'488 Dorchester Ave # 4C, Boston, MA', u'lat': 42.3322323, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'812792', u'tax_value': None, u'zestimate_valuation_range_high': u'902199', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.332019', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096679822', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'715257', u'graph_data_link': None, u'home_size': u'1160', u'longitude': u'-71.056663', u'map_this_home_link': u'http://www.zillow.com/homes/2096679822_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/488-Dorchester-Ave-4C-Boston-MA-02127/2096679822_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02136', u'long': -71.141043, u'prices': u'449,900', u'address': u'11 Vallaro Rd, Boston, MA', u'lat': 42.240679, u'zillow': {u'property_size': u'6969', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'437925', u'tax_value': u'283100.0', u'zestimate_valuation_range_high': u'464201', u'tax_year': u'2014', u'zestimate_value_change': u'5952', u'latitude': u'42.240682', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59129144', u'last_sold_date': None, u'year_built': u'1935', u'zestimate_valuationRange_low': u'402891', u'graph_data_link': u'http://www.zillow.com/homedetails/11-Vallaro-Rd-Boston-MA-02136/59129144_zpid/#charts-and-data', u'home_size': u'1469', u'longitude': u'-71.14105', u'map_this_home_link': u'http://www.zillow.com/homes/59129144_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/11-Vallaro-Rd-Boston-MA-02136/59129144_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02128', u'long': -71.032201, u'prices': u'933,000', u'address': u'300 Maverick St, Boston, MA', u'lat': 42.367444, u'zillow': {u'property_size': u'2613', u'bathrooms': u'3.0', u'last_sold_price': u'224500', u'zestimate_amount': u'783761', u'tax_value': u'436100.0', u'zestimate_valuation_range_high': u'830787', u'tax_year': u'2015', u'zestimate_value_change': u'51472', u'latitude': u'42.367444', u'zestimate_percentile': u'0', u'bedrooms': u'6', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59121012', u'last_sold_date': u'12/07/2004', u'year_built': u'1900', u'zestimate_valuationRange_low': u'744573', u'graph_data_link': u'http://www.zillow.com/homedetails/300-Maverick-St-Boston-MA-02128/59121012_zpid/#charts-and-data', u'home_size': u'3264', u'longitude': u'-71.032201', u'map_this_home_link': u'http://www.zillow.com/homes/59121012_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/300-Maverick-St-Boston-MA-02128/59121012_zpid/'}}, {u'status': u'Lot/Land For Sale', u'zip': u'02136', u'long': -71.13767899999999, u'prices': u'269,000', u'address': u'4 Lakeside Ave, Boston, MA', u'lat': 42.234191, u'zillow': {u'property_size': u'7405', u'bathrooms': None, u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': u'39500.0', u'zestimate_valuation_range_high': None, u'tax_year': u'2015', u'zestimate_value_change': None, u'latitude': u'42.234191', u'zestimate_percentile': u'0', u'bedrooms': None, u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'59129400', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': None, u'graph_data_link': u'http://www.zillow.com/homedetails/4-Lakeside-Ave-Boston-MA-02136/59129400_zpid/#charts-and-data', u'home_size': None, u'longitude': u'-71.137679', u'map_this_home_link': u'http://www.zillow.com/homes/59129400_zpid/', u'home_type': u'VacantResidentialLand', u'home_detail_link': u'http://www.zillow.com/homedetails/4-Lakeside-Ave-Boston-MA-02136/59129400_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02126', u'long': -71.1087601, u'prices': u'420,000', u'address': u'14 Roseglen Rd, Hyde Park, MA', u'lat': 42.2671542, u'zillow': {u'property_size': u'3920', u'bathrooms': u'2.0', u'last_sold_price': u'83000', u'zestimate_amount': u'380725', u'tax_value': u'214300.0', u'zestimate_valuation_range_high': u'399761', u'tax_year': u'2015', u'zestimate_value_change': u'32101', u'latitude': u'42.267155', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59213017', u'last_sold_date': u'01/26/1993', u'year_built': u'1950', u'zestimate_valuationRange_low': u'354074', u'graph_data_link': u'http://www.zillow.com/homedetails/14-Roseglen-Rd-Hyde-Park-MA-02136/59213017_zpid/#charts-and-data', u'home_size': u'1047', u'longitude': u'-71.108759', u'map_this_home_link': u'http://www.zillow.com/homes/59213017_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/14-Roseglen-Rd-Hyde-Park-MA-02136/59213017_zpid/'}}, {u'status': u'New Construction', u'zip': u'02127', u'long': -71.0542787, u'prices': u'775,000', u'address': u'45 W 3rd St # 221, Boston, MA', u'lat': 42.342376, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'748805', u'tax_value': None, u'zestimate_valuation_range_high': u'861126', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.338717', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096542112', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'539140', u'graph_data_link': None, u'home_size': u'870', u'longitude': u'-71.048806', u'map_this_home_link': u'http://www.zillow.com/homes/2096542112_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/45-W-3rd-St-221-Boston-MA-02127/2096542112_zpid/'}}, {u'status': u'Lot/Land For Sale', u'zip': u'02136', u'long': -71.13875949999999, u'prices': u'399,900', u'address': u'0 Lakeside Ave, Boston, MA', u'lat': 42.2333722, u'zillow': {u'property_size': u'42688', u'bathrooms': None, u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.234138', u'zestimate_percentile': u'0', u'bedrooms': None, u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096603862', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': None, u'longitude': u'-71.137878', u'map_this_home_link': u'http://www.zillow.com/homes/2096603862_zpid/', u'home_type': u'VacantResidentialLand', u'home_detail_link': u'http://www.zillow.com/homedetails/0-Lakeside-Ave-Boston-MA-02136/2096603862_zpid/'}}, {u'status': u'For Sale by Owner', u'zip': u'02128', u'long': -71.033445, u'prices': u'820,000', u'address': u'168 Princeton St, Boston, MA', u'lat': 42.378699, u'zillow': {u'property_size': u'2482', u'bathrooms': u'3.0', u'last_sold_price': u'415000', u'zestimate_amount': u'659086', u'tax_value': u'301600.0', u'zestimate_valuation_range_high': u'692040', u'tax_year': u'2014', u'zestimate_value_change': u'4526', u'latitude': u'42.378699', u'zestimate_percentile': u'0', u'bedrooms': u'6', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59124071', u'last_sold_date': u'08/21/2013', u'year_built': u'1890', u'zestimate_valuationRange_low': u'606359', u'graph_data_link': u'http://www.zillow.com/homedetails/168-Princeton-St-Boston-MA-02128/59124071_zpid/#charts-and-data', u'home_size': u'3234', u'longitude': u'-71.033445', u'map_this_home_link': u'http://www.zillow.com/homes/59124071_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/168-Princeton-St-Boston-MA-02128/59124071_zpid/'}}, {u'status': u'Lot/Land For Sale', u'zip': u'02124', u'long': -71.09147279999999, u'prices': u'270,000', u'address': u'4 & 8 Havelock St, Boston, MA', u'lat': 42.2860148, u'zillow': {u'property_size': u'10018', u'bathrooms': None, u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.286281', u'zestimate_percentile': u'0', u'bedrooms': None, u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096685327', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': None, u'longitude': u'-71.092964', u'map_this_home_link': u'http://www.zillow.com/homes/2096685327_zpid/', u'home_type': u'VacantResidentialLand', u'home_detail_link': u'http://www.zillow.com/homedetails/4-&-8-Havelock-St-Boston-MA-02124/2096685327_zpid/'}}, {u'status': u'Coming Soon', u'zip': u'02128', u'long': -71.0373369, u'prices': u'349,900', u'address': u'285 Sumner St # 1, East Boston, MA', u'lat': 42.3676, u'zillow': {u'property_size': u'1300', u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'494325', u'tax_value': None, u'zestimate_valuation_range_high': u'523985', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.36836', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096807385', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'469609', u'graph_data_link': None, u'home_size': None, u'longitude': u'-71.03884', u'map_this_home_link': u'http://www.zillow.com/homes/2096807385_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/285-Sumner-St-1-East-Boston-MA-02128/2096807385_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.0763005, u'prices': u'298,000', u'address': u'673 Tremont St APT 7, Boston, MA', u'lat': 42.3417357, u'zillow': {u'property_size': u'320', u'bathrooms': u'1.0', u'last_sold_price': u'109673', u'zestimate_amount': u'337601', u'tax_value': u'195400.0', u'zestimate_valuation_range_high': u'381489', u'tax_year': u'2015', u'zestimate_value_change': u'-15119', u'latitude': u'42.341573', u'zestimate_percentile': u'0', u'bedrooms': u'0', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59183445', u'last_sold_date': u'03/23/2016', u'year_built': u'1865', u'zestimate_valuationRange_low': u'310593', u'graph_data_link': u'http://www.zillow.com/homedetails/673-Tremont-St-APT-7-Boston-MA-02118/59183445_zpid/#charts-and-data', u'home_size': u'320', u'longitude': u'-71.076185', u'map_this_home_link': u'http://www.zillow.com/homes/59183445_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/673-Tremont-St-APT-7-Boston-MA-02118/59183445_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.10999009999999, u'prices': u'259,000', u'address': u'15 Adelaide St UNIT 4, Boston, MA', u'lat': 42.3177387, u'zillow': {u'property_size': u'741', u'bathrooms': u'1.0', u'last_sold_price': u'265000', u'zestimate_amount': u'371113', u'tax_value': u'228500.0', u'zestimate_valuation_range_high': u'389669', u'tax_year': u'2014', u'zestimate_value_change': u'2675', u'latitude': u'42.317707', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59132204', u'last_sold_date': u'09/28/2006', u'year_built': u'1905', u'zestimate_valuationRange_low': u'352557', u'graph_data_link': u'http://www.zillow.com/homedetails/15-Adelaide-St-UNIT-4-Boston-MA-02130/59132204_zpid/#charts-and-data', u'home_size': u'741', u'longitude': u'-71.110221', u'map_this_home_link': u'http://www.zillow.com/homes/59132204_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/15-Adelaide-St-UNIT-4-Boston-MA-02130/59132204_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.0809434, u'prices': u'440,000', u'address': u'549 Columbus Ave APT 5, Boston, MA', u'lat': 42.3415573, u'zillow': {u'property_size': u'519', u'bathrooms': u'1.0', u'last_sold_price': u'224000', u'zestimate_amount': u'559513', u'tax_value': u'323900.0', u'zestimate_valuation_range_high': u'587489', u'tax_year': u'2014', u'zestimate_value_change': u'4865', u'latitude': u'42.341354', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59183022', u'last_sold_date': u'09/19/2000', u'year_built': u'1899', u'zestimate_valuationRange_low': u'520347', u'graph_data_link': u'http://www.zillow.com/homedetails/549-Columbus-Ave-APT-5-Boston-MA-02118/59183022_zpid/#charts-and-data', u'home_size': u'519', u'longitude': u'-71.080889', u'map_this_home_link': u'http://www.zillow.com/homes/59183022_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/549-Columbus-Ave-APT-5-Boston-MA-02118/59183022_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02121', u'long': -71.08039, u'prices': u'171,186', u'address': u'55 Devon St APT 6, Dorchester, MA', u'lat': 42.3100639, u'zillow': {u'property_size': u'689', u'bathrooms': u'2.0', u'last_sold_price': u'219000', u'zestimate_amount': u'257661', u'tax_value': u'147700.0', u'zestimate_valuation_range_high': u'304040', u'tax_year': u'2014', u'zestimate_value_change': u'-1775', u'latitude': u'42.310062', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'71497287', u'last_sold_date': u'10/27/2005', u'year_built': u'1920', u'zestimate_valuationRange_low': u'200976', u'graph_data_link': u'http://www.zillow.com/homedetails/55-Devon-St-APT-6-Dorchester-MA-02121/71497287_zpid/#charts-and-data', u'home_size': u'689', u'longitude': u'-71.08039', u'map_this_home_link': u'http://www.zillow.com/homes/71497287_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/55-Devon-St-APT-6-Dorchester-MA-02121/71497287_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02136', u'long': -71.104749, u'prices': u'213,100', u'address': u'15 Rosemont St, Boston, MA', u'lat': 42.2647212, u'zillow': {u'property_size': u'4356', u'bathrooms': u'1.0', u'last_sold_price': u'215000', u'zestimate_amount': u'340880', u'tax_value': u'201000.0', u'zestimate_valuation_range_high': u'357924', u'tax_year': u'2015', u'zestimate_value_change': u'-332', u'latitude': u'42.264723', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59140500', u'last_sold_date': u'07/06/2001', u'year_built': u'1955', u'zestimate_valuationRange_low': u'306792', u'graph_data_link': u'http://www.zillow.com/homedetails/15-Rosemont-St-Boston-MA-02126/59140500_zpid/#charts-and-data', u'home_size': u'1210', u'longitude': u'-71.104744', u'map_this_home_link': u'http://www.zillow.com/homes/59140500_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/15-Rosemont-St-Boston-MA-02126/59140500_zpid/'}}, {u'status': u'Pre-Foreclosure', u'zip': None, u'long': -1, u'prices': -1, u'address': u'Sign in for details', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.072035, u'prices': u'240,000', u'address': u'735 Harrison Ave APT W102, Boston, MA', u'lat': 42.3378023, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': 'Gas', 'rooms': None, 'home_description': 'BRA Artist Affordable Loft - South End! Income limits: 1 HH $51,150, 2 HH $58,450, 3 HH $65,750. Maximum Asset Limit: $100,000 (not including retirement). Must be a BRA certified artist to purchase. This is a very cool building located in the heart of South Ends SOWA District. This 997 Square Foot loft offers an expansive floor plan, includes soaring ceilings and large windows which brings in a lot of natural light. There are many possibilities in setting up the living space, the main selling point of any loft! Other details include: walk in California Closets, washer/dryer, modern polished cement floors. Minutes to SOWA Open Market and Farmers Market, South End great restaurants, and the new South End Whole Foods. ', 'property_size': '997', 'num_floors': '1', 'heating_system': 'Forced air', 'photo_gallery': 'http://www.zillow.com/homedetails/735-Harrison-Ave-APT-W102-Boston-MA-02118/81856755_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Concrete', 'year_updated': None, 'bedrooms': None, 'latitude': '42.337664', 'zillow_id': '81856755', 'basement': None, 'year_built': '2006', 'home_size': '997', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/735-Harrison-Ave-APT-W102-Boston-MA-02118/81856755_zpid/', 'home_info': 'http://www.zillow.com/homedetails/735-Harrison-Ave-APT-W102-Boston-MA-02118/81856755_zpid/'}, u'zillow': {u'property_size': u'997', u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'338624', u'tax_value': u'252000.0', u'zestimate_valuation_range_high': u'474074', u'tax_year': u'2015', u'zestimate_value_change': u'-23216', u'latitude': u'42.337664', u'zestimate_percentile': u'0', u'bedrooms': u'0', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81856755', u'last_sold_date': None, u'year_built': u'2006', u'zestimate_valuationRange_low': u'277672', u'graph_data_link': u'http://www.zillow.com/homedetails/735-Harrison-Ave-APT-W102-Boston-MA-02118/81856755_zpid/#charts-and-data', u'home_size': u'997', u'longitude': u'-71.071842', u'map_this_home_link': u'http://www.zillow.com/homes/81856755_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/735-Harrison-Ave-APT-W102-Boston-MA-02118/81856755_zpid/'}}, {u'status': u'For Sale by Owner', u'zip': u'02128', u'long': -71.00668329999999, u'prices': u'187,900', u'address': u'997 Saratoga St, Boston, MA', u'lat': 42.3865966, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'Mixed use 1 bedr.or office space on the 2nd floor in Orient heights. The unit was gut renovated few years ago,sunny,huge living room,extra space in the back,deck overlooks Constitution Beach. Across the street from Orient Heights train station. gas heat,electric hot water,gas stove ( or Electric),ceiling fans,new windows etc.Unit can be delivered vacant. ', 'property_size': '567', 'num_floors': '2', 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/997-Saratoga-St-Boston-MA-02128/2096773120_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Softwood, Tile', 'year_updated': '2013', 'bedrooms': '1', 'latitude': '42.386686', 'zillow_id': '2096773120', 'basement': 'None', 'year_built': '1910', 'home_size': '567', 'roof': 'Composition', 'view': None, 'home_type': 'SingleFamily', 'parking_type': 'On-street', 'home_detail_link': 'http://www.zillow.com/homedetails/997-Saratoga-St-Boston-MA-02128/2096773120_zpid/', 'home_info': 'http://www.zillow.com/homedetails/997-Saratoga-St-Boston-MA-02128/2096773120_zpid/'}, u'zillow': {u'property_size': u'567', u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'320444', u'tax_value': None, u'zestimate_valuation_range_high': u'346080', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.386686', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096773120', u'last_sold_date': None, u'year_built': u'1910', u'zestimate_valuationRange_low': u'285195', u'graph_data_link': None, u'home_size': u'567', u'longitude': u'-71.006843', u'map_this_home_link': u'http://www.zillow.com/homes/2096773120_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/997-Saratoga-St-Boston-MA-02128/2096773120_zpid/'}}, {u'status': u'Coming Soon', u'zip': u'02128', u'long': -71.0331999, u'prices': u'339,900', u'address': u'230 Saratoga St, Boston, MA', u'lat': 42.378014, u'zillow': {u'property_size': u'2613', u'bathrooms': u'1.0', u'last_sold_price': u'535000', u'zestimate_amount': u'548999', u'tax_value': u'279200.0', u'zestimate_valuation_range_high': u'636839', u'tax_year': u'2014', u'zestimate_value_change': u'-79092', u'latitude': u'42.378015', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59124220', u'last_sold_date': u'09/04/2015', u'year_built': u'1910', u'zestimate_valuationRange_low': u'461159', u'graph_data_link': u'http://www.zillow.com/homedetails/230-Saratoga-St-Boston-MA-02128/59124220_zpid/#charts-and-data', u'home_size': u'1200', u'longitude': u'-71.033201', u'map_this_home_link': u'http://www.zillow.com/homes/59124220_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/230-Saratoga-St-Boston-MA-02128/59124220_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.108972, u'prices': u'329,000', u'address': u'11 Mark St UNIT 1, Boston, MA', u'lat': 42.322829, u'zillow': {u'property_size': u'710', u'bathrooms': u'2.0', u'last_sold_price': u'377000', u'zestimate_amount': u'373358', u'tax_value': u'239900.0', u'zestimate_valuation_range_high': u'392026', u'tax_year': u'2014', u'zestimate_value_change': None, u'latitude': u'42.3228', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81860486', u'last_sold_date': u'11/07/2016', u'year_built': u'1896', u'zestimate_valuationRange_low': u'347223', u'graph_data_link': u'http://www.zillow.com/homedetails/11-Mark-St-UNIT-1-Boston-MA-02130/81860486_zpid/#charts-and-data', u'home_size': u'710', u'longitude': u'-71.108984', u'map_this_home_link': u'http://www.zillow.com/homes/81860486_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/11-Mark-St-UNIT-1-Boston-MA-02130/81860486_zpid/'}}, {u'status': u'Foreclosed', u'zip': u'02116', u'long': -71.074113, u'prices': -1, u'address': u'37 Marlborough St, Boston, MA', u'lat': 42.354352, u'zillow': {u'property_size': u'2128', u'bathrooms': u'4.0', u'last_sold_price': u'4800000', u'zestimate_amount': u'8004774', u'tax_value': u'4957500.0', u'zestimate_valuation_range_high': u'8405013', u'tax_year': u'2014', u'zestimate_value_change': u'-143801', u'latitude': u'42.354352', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59172539', u'last_sold_date': u'06/06/2002', u'year_built': u'1890', u'zestimate_valuationRange_low': u'2401432', u'graph_data_link': u'http://www.zillow.com/homedetails/37-Marlborough-St-Boston-MA-02116/59172539_zpid/#charts-and-data', u'home_size': u'6086', u'longitude': u'-71.074113', u'map_this_home_link': u'http://www.zillow.com/homes/59172539_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/37-Marlborough-St-Boston-MA-02116/59172539_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.052713, u'prices': u'299,900', u'address': u'167 King St UNIT 3, Dorchester, MA', u'lat': 42.294123, u'zillow': {u'property_size': u'6500', u'bathrooms': u'1.0', u'last_sold_price': u'110000', u'zestimate_amount': u'392963', u'tax_value': u'202300.0', u'zestimate_valuation_range_high': u'416541', u'tax_year': u'2014', u'zestimate_value_change': u'-4957', u'latitude': u'42.294259', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'82233318', u'last_sold_date': u'06/18/2008', u'year_built': u'1900', u'zestimate_valuationRange_low': u'361526', u'graph_data_link': u'http://www.zillow.com/homedetails/167-King-St-UNIT-3-Dorchester-MA-02122/82233318_zpid/#charts-and-data', u'home_size': u'985', u'longitude': u'-71.052685', u'map_this_home_link': u'http://www.zillow.com/homes/82233318_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/167-King-St-UNIT-3-Dorchester-MA-02122/82233318_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02131', u'long': -71.11869209999999, u'prices': u'300,000', u'address': u'518 Hyde Park Ave, Boston, MA', u'lat': 42.2827269, 'property': {'neighborhood': None, 'bathrooms': '2.0', 'school_district': None, 'heating_sources': None, 'rooms': 'Dining room, Office', 'home_description': \"A perfect starter home for anyone who wants to have easy access to downtown. This 3 bed single family home has a lovely marble tiled full bath on the second floor and an updated half bath. The main level features a generously sized living room with french doors, a dining room with built-in china cabinet, and an updated kitchen w/ granite counters, maple cabinets and stainless appliances. The home also features newer insulated windows, a young architecturally shingled roof, and a modern tank-less, wall-mounted heating system. Very convenient to Forest Hills Station, it's also just minutes from Roslindale Village. \\n\\nA single family home at this price is hard to come by! All showings will start next Thursday, September 29th with open houses to follow through the weekend of October 1st and 2nd. Call us for details! \", 'property_size': '2055', 'num_floors': '2', 'heating_system': 'Other', 'photo_gallery': 'http://www.zillow.com/homedetails/518-Hyde-Park-Ave-Boston-MA-02131/59146687_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood, Tile', 'year_updated': '2012', 'bedrooms': '3', 'latitude': '42.282728', 'zillow_id': '59146687', 'basement': 'Unfinished', 'year_built': '1900', 'home_size': '900', 'roof': 'Asphalt', 'view': None, 'home_type': 'SingleFamily', 'parking_type': 'Off-street', 'home_detail_link': 'http://www.zillow.com/homedetails/518-Hyde-Park-Ave-Boston-MA-02131/59146687_zpid/', 'home_info': 'http://www.zillow.com/homedetails/518-Hyde-Park-Ave-Boston-MA-02131/59146687_zpid/'}, u'zillow': {u'property_size': u'2055', u'bathrooms': u'2.0', u'last_sold_price': u'280000', u'zestimate_amount': u'346039', u'tax_value': u'190000.0', u'zestimate_valuation_range_high': u'377183', u'tax_year': u'2014', u'zestimate_value_change': u'16663', u'latitude': u'42.282728', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59146687', u'last_sold_date': u'11/09/2005', u'year_built': u'1900', u'zestimate_valuationRange_low': u'304514', u'graph_data_link': u'http://www.zillow.com/homedetails/518-Hyde-Park-Ave-Boston-MA-02131/59146687_zpid/#charts-and-data', u'home_size': u'900', u'longitude': u'-71.118672', u'map_this_home_link': u'http://www.zillow.com/homes/59146687_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/518-Hyde-Park-Ave-Boston-MA-02131/59146687_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02136', u'long': -71.1306133, u'prices': u'380,000', u'address': u'367 Poplar St, Boston, MA', u'lat': 42.26752159999999, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'473145', u'tax_value': None, u'zestimate_valuation_range_high': u'515728', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.271101', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097095800', u'last_sold_date': None, u'year_built': u'1942', u'zestimate_valuationRange_low': u'440025', u'graph_data_link': None, u'home_size': u'1300', u'longitude': u'-71.132006', u'map_this_home_link': u'http://www.zillow.com/homes/2097095800_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/367-Poplar-St-Boston-MA-02131/2097095800_zpid/'}}, {u'status': u'Townhouse For Sale', u'zip': u'02124', u'long': -71.0892662, u'prices': u'200,000', u'address': u'23 Ashton St, Dorchester Center, MA', u'lat': 42.2877949, u'zillow': {u'property_size': u'1742', u'bathrooms': u'2.0', u'last_sold_price': u'90000', u'zestimate_amount': u'258371', u'tax_value': u'172700.0', u'zestimate_valuation_range_high': u'276457', u'tax_year': u'2014', u'zestimate_value_change': u'54', u'latitude': u'42.287797', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59102136', u'last_sold_date': u'02/11/1992', u'year_built': u'1991', u'zestimate_valuationRange_low': u'235118', u'graph_data_link': u'http://www.zillow.com/homedetails/23-Ashton-St-Dorchester-Center-MA-02124/59102136_zpid/#charts-and-data', u'home_size': u'1356', u'longitude': u'-71.089266', u'map_this_home_link': u'http://www.zillow.com/homes/59102136_zpid/', u'home_type': u'Townhouse', u'home_detail_link': u'http://www.zillow.com/homedetails/23-Ashton-St-Dorchester-Center-MA-02124/59102136_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.059433, u'prices': u'195,000', u'address': u'117 Park St UNIT 1, Dorchester, MA', u'lat': 42.299112, u'zillow': {u'property_size': u'871', u'bathrooms': u'1.0', u'last_sold_price': u'309000', u'zestimate_amount': u'309134', u'tax_value': u'170200.0', u'zestimate_valuation_range_high': u'333865', u'tax_year': u'2014', u'zestimate_value_change': u'2668', u'latitude': u'42.29911', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'71496747', u'last_sold_date': u'09/01/2005', u'year_built': u'1905', u'zestimate_valuationRange_low': u'272038', u'graph_data_link': u'http://www.zillow.com/homedetails/117-Park-St-UNIT-1-Dorchester-MA-02122/71496747_zpid/#charts-and-data', u'home_size': u'856', u'longitude': u'-71.059433', u'map_this_home_link': u'http://www.zillow.com/homes/71496747_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/117-Park-St-UNIT-1-Dorchester-MA-02122/71496747_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02135', u'long': -71.1449441, u'prices': u'489,000', u'address': u'1661 Commonwealth Ave APT 1, Boston, MA', u'lat': 42.3422595, u'zillow': {u'property_size': u'1300', u'bathrooms': u'2.0', u'last_sold_price': u'355000', u'zestimate_amount': u'587146', u'tax_value': u'301600.0', u'zestimate_valuation_range_high': u'634118', u'tax_year': u'2014', u'zestimate_value_change': u'-2917', u'latitude': u'42.342258', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59092347', u'last_sold_date': u'09/02/2004', u'year_built': u'1890', u'zestimate_valuationRange_low': u'487331', u'graph_data_link': u'http://www.zillow.com/homedetails/1661-Commonwealth-Ave-APT-1-Boston-MA-02135/59092347_zpid/#charts-and-data', u'home_size': u'1300', u'longitude': u'-71.144973', u'map_this_home_link': u'http://www.zillow.com/homes/59092347_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1661-Commonwealth-Ave-APT-1-Boston-MA-02135/59092347_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0757449, u'prices': u'685,000', u'address': u'370 Columbus Ave # C, Boston, MA', u'lat': 42.3451399, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'692939', u'tax_value': None, u'zestimate_valuation_range_high': u'755304', u'tax_year': None, u'zestimate_value_change': u'-35581', u'latitude': u'42.345183', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2112209103', u'last_sold_date': None, u'year_built': u'1870', u'zestimate_valuationRange_low': u'630574', u'graph_data_link': None, u'home_size': u'918', u'longitude': u'-71.075984', u'map_this_home_link': u'http://www.zillow.com/homes/2112209103_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/370-Columbus-Ave-C-Boston-MA-02116/2112209103_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02130', u'long': -71.11311239999999, u'prices': u'419,000', u'address': u'6 Wayburn Rd, Jamaica Plain, MA', u'lat': 42.2903755, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': 'Gas', 'rooms': 'Dining room, Family room, Sun room', 'home_description': '\\nWelcome to The Bourne neighborhood of Jamaica Plain. This well maintained home has a new roof, recently painted exterior, NEW PRO replacement windows with a lifetime warranty and updated heating and electric systems. The interior has hardwood floors throughout and a beautiful fireplace with wood mantel. Outside, enjoy a private back yard, patio and driveway. Close proximity to Forest Hills T Station, Arnold Arboretum, Historical Forest Hills Cemetery, shops, restaurants and all the wonderful things JP has to offer. First Open house Sunday 10/2 from 11:00 am -1:00 pm. Commuter open house Monday 10/3 from 5:30 pm -7:00 pm.', 'property_size': None, 'num_floors': '1', 'heating_system': 'Baseboard', 'photo_gallery': 'http://www.zillow.com/homedetails/6-Wayburn-Rd-Jamaica-Plain-MA-02130/2096905014_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood, Tile', 'year_updated': None, 'bedrooms': '2', 'latitude': '42.29002', 'zillow_id': '2096905014', 'basement': 'Unfinished', 'year_built': '1938', 'home_size': '849', 'roof': None, 'view': None, 'home_type': 'SingleFamily', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/6-Wayburn-Rd-Jamaica-Plain-MA-02130/2096905014_zpid/', 'home_info': 'http://www.zillow.com/homedetails/6-Wayburn-Rd-Jamaica-Plain-MA-02130/2096905014_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'484724', u'tax_value': None, u'zestimate_valuation_range_high': u'533196', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.29002', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096905014', u'last_sold_date': None, u'year_built': u'1938', u'zestimate_valuationRange_low': u'450793', u'graph_data_link': None, u'home_size': u'849', u'longitude': u'-71.11264', u'map_this_home_link': u'http://www.zillow.com/homes/2096905014_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/6-Wayburn-Rd-Jamaica-Plain-MA-02130/2096905014_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.07099, u'prices': u'191,900', u'address': u'111 Fuller St APT 1, Dorchester Center, MA', u'lat': 42.282314, u'zillow': {u'property_size': u'435', u'bathrooms': u'1.0', u'last_sold_price': u'340000', u'zestimate_amount': u'310788', u'tax_value': u'182900.0', u'zestimate_valuation_range_high': u'326327', u'tax_year': u'2015', u'zestimate_value_change': u'39043', u'latitude': u'42.282314', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'87797429', u'last_sold_date': u'11/06/2007', u'year_built': u'1910', u'zestimate_valuationRange_low': u'264170', u'graph_data_link': u'http://www.zillow.com/homedetails/111-Fuller-St-APT-1-Dorchester-Center-MA-02124/87797429_zpid/#charts-and-data', u'home_size': u'965', u'longitude': u'-71.070992', u'map_this_home_link': u'http://www.zillow.com/homes/87797429_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/111-Fuller-St-APT-1-Dorchester-Center-MA-02124/87797429_zpid/'}}, {u'status': u'Lot/Land For Sale', u'zip': u'02110', u'long': -71.0528044, u'prices': u'145,000', u'address': u'80 Broad St # PS, Boston, MA', u'lat': 42.3577317, u'zillow': {u'property_size': None, u'bathrooms': None, u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.35856', u'zestimate_percentile': u'0', u'bedrooms': None, u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2097009641', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': None, u'longitude': u'-71.05419', u'map_this_home_link': u'http://www.zillow.com/homes/2097009641_zpid/', u'home_type': u'VacantResidentialLand', u'home_detail_link': u'http://www.zillow.com/homedetails/80-Broad-St-PS-Boston-MA-02110/2097009641_zpid/'}}, {u'status': u'House For Sale', u'zip': u'08846', u'long': -74.50102179999999, u'prices': u'479,900', u'address': u'7 Woodrow Ln, West Bridgewater, MA', u'lat': 40.5817153}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0574969, u'prices': u'541,119', u'address': u'141 Dorchester Ave UNIT 514, Boston, MA', u'lat': 42.3419516, u'zillow': {u'property_size': u'970', u'bathrooms': u'1.0', u'last_sold_price': u'340400', u'zestimate_amount': u'679910', u'tax_value': u'434500.0', u'zestimate_valuation_range_high': u'713905', u'tax_year': u'2014', u'zestimate_value_change': u'13527', u'latitude': u'42.341492', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'87794251', u'last_sold_date': u'04/22/2008', u'year_built': u'2006', u'zestimate_valuationRange_low': u'639115', u'graph_data_link': u'http://www.zillow.com/homedetails/141-Dorchester-Ave-UNIT-514-Boston-MA-02127/87794251_zpid/#charts-and-data', u'home_size': u'970', u'longitude': u'-71.057221', u'map_this_home_link': u'http://www.zillow.com/homes/87794251_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/141-Dorchester-Ave-UNIT-514-Boston-MA-02127/87794251_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.07749799999999, u'prices': u'429,000', u'address': u'119 Marlborough St APT 1, Boston, MA', u'lat': 42.3532103, u'zillow': {u'property_size': u'370', u'bathrooms': u'1.0', u'last_sold_price': u'360000', u'zestimate_amount': u'428132', u'tax_value': u'234400.0', u'zestimate_valuation_range_high': u'449539', u'tax_year': u'2014', u'zestimate_value_change': u'8640', u'latitude': u'42.353314', u'zestimate_percentile': u'0', u'bedrooms': u'0', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59171186', u'last_sold_date': u'08/24/2015', u'year_built': u'1880', u'zestimate_valuationRange_low': u'406725', u'graph_data_link': u'http://www.zillow.com/homedetails/119-Marlborough-St-APT-1-Boston-MA-02116/59171186_zpid/#charts-and-data', u'home_size': u'370', u'longitude': u'-71.077195', u'map_this_home_link': u'http://www.zillow.com/homes/59171186_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/119-Marlborough-St-APT-1-Boston-MA-02116/59171186_zpid/'}}, {u'status': u'Coming Soon', u'zip': u'02459', u'long': -71.1911989, u'prices': u'655,000', u'address': u'1 Walsh Pl # 1, Boston, MA', u'lat': 42.28996859999999}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.1132302, u'prices': u'369,000', u'address': u'37 Wachusett St # 3, Boston, MA', u'lat': 42.2965962, u'zillow': {u'property_size': u'100000000', u'bathrooms': u'1.0', u'last_sold_price': u'301000', u'zestimate_amount': u'420403', u'tax_value': u'298600.0', u'zestimate_valuation_range_high': u'441423', u'tax_year': u'2015', u'zestimate_value_change': None, u'latitude': u'42.296607', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'67096266', u'last_sold_date': u'09/10/2004', u'year_built': u'1905', u'zestimate_valuationRange_low': u'399383', u'graph_data_link': u'http://www.zillow.com/homedetails/37-Wachusett-St-3-Boston-MA-02130/67096266_zpid/#charts-and-data', u'home_size': u'894', u'longitude': u'-71.113235', u'map_this_home_link': u'http://www.zillow.com/homes/67096266_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/37-Wachusett-St-3-Boston-MA-02130/67096266_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02109', u'long': -71.0528959, u'prices': u'829,500', u'address': u'102 Commercial St APT 3, Boston, MA', u'lat': 42.3616862, u'zillow': {u'property_size': u'1106', u'bathrooms': u'1.0', u'last_sold_price': u'745900', u'zestimate_amount': u'915473', u'tax_value': u'555900.0', u'zestimate_valuation_range_high': u'961247', u'tax_year': u'2014', u'zestimate_value_change': u'-1580', u'latitude': u'42.361807', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59177765', u'last_sold_date': u'10/31/2014', u'year_built': u'1880', u'zestimate_valuationRange_low': u'869699', u'graph_data_link': u'http://www.zillow.com/homedetails/102-Commercial-St-APT-3-Boston-MA-02109/59177765_zpid/#charts-and-data', u'home_size': u'1106', u'longitude': u'-71.053066', u'map_this_home_link': u'http://www.zillow.com/homes/59177765_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/102-Commercial-St-APT-3-Boston-MA-02109/59177765_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02114', u'long': -71.05922559999999, u'prices': u'599,000', u'address': u'234 Causeway St APT 712, Boston, MA', u'lat': 42.3666816, u'zillow': {u'property_size': u'976', u'bathrooms': u'1.0', u'last_sold_price': u'515000', u'zestimate_amount': u'663994', u'tax_value': u'461672.0', u'zestimate_valuation_range_high': u'710474', u'tax_year': u'2015', u'zestimate_value_change': u'-11844', u'latitude': u'42.366518', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'63710744', u'last_sold_date': u'05/29/2009', u'year_built': u'1899', u'zestimate_valuationRange_low': u'624154', u'graph_data_link': u'http://www.zillow.com/homedetails/234-Causeway-St-APT-712-Boston-MA-02114/63710744_zpid/#charts-and-data', u'home_size': u'976', u'longitude': u'-71.059318', u'map_this_home_link': u'http://www.zillow.com/homes/63710744_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/234-Causeway-St-APT-712-Boston-MA-02114/63710744_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0773976, u'prices': u'550,000', u'address': u'271 Dartmouth St APT 4J, Boston, MA', u'lat': 42.350652, u'zillow': {u'property_size': u'531', u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'557251', u'tax_value': None, u'zestimate_valuation_range_high': u'585114', u'tax_year': None, u'zestimate_value_change': u'1162', u'latitude': u'42.350734', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2114874765', u'last_sold_date': None, u'year_built': u'1885', u'zestimate_valuationRange_low': u'523816', u'graph_data_link': None, u'home_size': u'531', u'longitude': u'-71.077606', u'map_this_home_link': u'http://www.zillow.com/homes/2114874765_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/271-Dartmouth-St-APT-4J-Boston-MA-02116/2114874765_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0789662, u'prices': u'495,000', u'address': u'40 Saint Botolph St APT B3, Boston, MA', u'lat': 42.346306, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'574264', u'tax_value': None, u'zestimate_valuation_range_high': u'614462', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.346075', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097249707', u'last_sold_date': None, u'year_built': u'1925', u'zestimate_valuationRange_low': u'522580', u'graph_data_link': None, u'home_size': u'634', u'longitude': u'-71.079277', u'map_this_home_link': u'http://www.zillow.com/homes/2097249707_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/40-Saint-Botolph-St-APT-B3-Boston-MA-02116/2097249707_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02108', u'long': -71.0710938, u'prices': u'9,600,000', u'address': u'77 Chestnut St, Boston, MA', u'lat': 42.3569083, u'zillow': {u'property_size': u'1496', u'bathrooms': u'6.0', u'last_sold_price': u'2087500', u'zestimate_amount': u'9711769', u'tax_value': u'3730400.0', u'zestimate_valuation_range_high': u'10197357', u'tax_year': u'2014', u'zestimate_value_change': u'28946', u'latitude': u'42.356911', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59172817', u'last_sold_date': u'09/13/1999', u'year_built': u'2001', u'zestimate_valuationRange_low': u'1942354', u'graph_data_link': u'http://www.zillow.com/homedetails/77-Chestnut-St-Boston-MA-02108/59172817_zpid/#charts-and-data', u'home_size': u'6550', u'longitude': u'-71.0711', u'map_this_home_link': u'http://www.zillow.com/homes/59172817_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/77-Chestnut-St-Boston-MA-02108/59172817_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02124', u'long': -71.08135399999999, u'prices': u'499,000', u'address': u'2 Rock Ave, Dorchester Center, MA', u'lat': 42.2853459, u'zillow': {u'property_size': u'9583', u'bathrooms': u'3.0', u'last_sold_price': u'110000', u'zestimate_amount': u'568783', u'tax_value': u'247200.0', u'zestimate_valuation_range_high': u'927116', u'tax_year': u'2015', u'zestimate_value_change': u'-837', u'latitude': u'42.285346', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59109545', u'last_sold_date': u'11/19/2015', u'year_built': u'1885', u'zestimate_valuationRange_low': u'386772', u'graph_data_link': u'http://www.zillow.com/homedetails/2-Rock-Ave-Dorchester-Center-MA-02124/59109545_zpid/#charts-and-data', u'home_size': u'2200', u'longitude': u'-71.081354', u'map_this_home_link': u'http://www.zillow.com/homes/59109545_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/2-Rock-Ave-Dorchester-Center-MA-02124/59109545_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.0811805, u'prices': u'549,900', u'address': u'463 Massachusetts Ave APT 3, Boston, MA', u'lat': 42.3400413, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'244000', u'zestimate_amount': u'571551', u'tax_value': u'391300.0', u'zestimate_valuation_range_high': u'600129', u'tax_year': u'2014', u'zestimate_value_change': u'-20158', u'latitude': u'42.340092', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59163084', u'last_sold_date': u'05/21/1999', u'year_built': u'1899', u'zestimate_valuationRange_low': u'542973', u'graph_data_link': u'http://www.zillow.com/homedetails/463-Massachusetts-Ave-APT-3-Boston-MA-02118/59163084_zpid/#charts-and-data', u'home_size': u'786', u'longitude': u'-71.081215', u'map_this_home_link': u'http://www.zillow.com/homes/59163084_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/463-Massachusetts-Ave-APT-3-Boston-MA-02118/59163084_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02131', u'long': -71.1372451, u'prices': u'289,000', u'address': u'120 Ardale St, Boston, MA', u'lat': 42.2931312, u'zillow': {u'property_size': u'2613', u'bathrooms': u'1.0', u'last_sold_price': u'103250', u'zestimate_amount': u'371743', u'tax_value': u'239900.0', u'zestimate_valuation_range_high': u'390330', u'tax_year': u'2015', u'zestimate_value_change': u'1154', u'latitude': u'42.293149', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59141962', u'last_sold_date': u'12/20/1991', u'year_built': u'1937', u'zestimate_valuationRange_low': u'349438', u'graph_data_link': u'http://www.zillow.com/homedetails/120-Ardale-St-Boston-MA-02131/59141962_zpid/#charts-and-data', u'home_size': u'816', u'longitude': u'-71.137237', u'map_this_home_link': u'http://www.zillow.com/homes/59141962_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/120-Ardale-St-Boston-MA-02131/59141962_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02120', u'long': -71.1082722, u'prices': u'343,333', u'address': u'15 Ellingwood St # 42, Boston, MA', u'lat': 42.3283817, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'395454', u'tax_value': None, u'zestimate_valuation_range_high': u'423136', u'tax_year': None, u'zestimate_value_change': u'13001', u'latitude': u'42.328263', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2098487394', u'last_sold_date': None, u'year_built': u'1989', u'zestimate_valuationRange_low': u'351954', u'graph_data_link': None, u'home_size': u'1289', u'longitude': u'-71.107972', u'map_this_home_link': u'http://www.zillow.com/homes/2098487394_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/15-Ellingwood-St-42-Boston-MA-02120/2098487394_zpid/'}}, {u'status': u'Townhouse For Sale', u'zip': u'02136', u'long': -71.1131568, u'prices': u'189,000', u'address': u'33 Victoria Heights Rd, Boston, MA', u'lat': 42.2706706, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'180000', u'zestimate_amount': u'256450', u'tax_value': None, u'zestimate_valuation_range_high': u'287224', u'tax_year': None, u'zestimate_value_change': u'-5158', u'latitude': u'42.270816', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2099615299', u'last_sold_date': u'05/12/2016', u'year_built': u'1987', u'zestimate_valuationRange_low': u'200031', u'graph_data_link': None, u'home_size': u'1155', u'longitude': u'-71.113105', u'map_this_home_link': u'http://www.zillow.com/homes/2099615299_zpid/', u'home_type': u'Townhouse', u'home_detail_link': u'http://www.zillow.com/homedetails/33-Victoria-Heights-Rd-Boston-MA-02136/2099615299_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02119', u'long': -71.0756287, u'prices': u'274,500', u'address': u'235 Eustis St UNIT 2, Roxbury, MA', u'lat': 42.3271119, u'zillow': {u'property_size': u'5338', u'bathrooms': u'1.0', u'last_sold_price': u'105000', u'zestimate_amount': u'315243', u'tax_value': u'187800.0', u'zestimate_valuation_range_high': u'337310', u'tax_year': u'2014', u'zestimate_value_change': u'3357', u'latitude': u'42.327115', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'71505075', u'last_sold_date': u'07/29/2008', u'year_built': u'2004', u'zestimate_valuationRange_low': u'290024', u'graph_data_link': u'http://www.zillow.com/homedetails/235-Eustis-St-UNIT-2-Roxbury-MA-02119/71505075_zpid/#charts-and-data', u'home_size': u'778', u'longitude': u'-71.075606', u'map_this_home_link': u'http://www.zillow.com/homes/71505075_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/235-Eustis-St-UNIT-2-Roxbury-MA-02119/71505075_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02121', u'long': -71.0793846, u'prices': u'289,000', u'address': u'49 Intervale St # 1, Boston, MA', u'lat': 42.3111045, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'321407', u'tax_value': None, u'zestimate_valuation_range_high': u'340691', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.311103', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096717546', u'last_sold_date': None, u'year_built': u'1905', u'zestimate_valuationRange_low': u'298909', u'graph_data_link': None, u'home_size': u'1200', u'longitude': u'-71.079368', u'map_this_home_link': u'http://www.zillow.com/homes/2096717546_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/49-Intervale-St-1-Boston-MA-02121/2096717546_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0295204, u'prices': u'549,997', u'address': u'9 O St UNIT 2, South Boston, MA', u'lat': 42.33792649999999, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'559680', u'tax_value': u'322100.0', u'zestimate_valuation_range_high': u'598858', u'tax_year': u'2014', u'zestimate_value_change': u'27864', u'latitude': u'42.337937', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'87796296', u'last_sold_date': None, u'year_built': u'1890', u'zestimate_valuationRange_low': u'520502', u'graph_data_link': u'http://www.zillow.com/homedetails/9-O-St-UNIT-2-South-Boston-MA-02127/87796296_zpid/#charts-and-data', u'home_size': u'766', u'longitude': u'-71.029483', u'map_this_home_link': u'http://www.zillow.com/homes/87796296_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/9-O-St-UNIT-2-South-Boston-MA-02127/87796296_zpid/'}}, {u'status': u'For Sale by Owner', u'zip': u'02124', u'long': -71.0733048, u'prices': u'399,000', u'address': u'56 Fairmount St, Boston, MA', u'lat': 42.2806741, 'property': {'neighborhood': None, 'bathrooms': '3.0', 'school_district': None, 'heating_sources': None, 'rooms': 'Master bath', 'home_description': 'Invest in Dorchester! Prime Codman Hill location and a short distance to Ashmont T Station, shops, and parks. Tenant occupied with a lease through 8/31/2017, an investors dream! Newly constructed townhouse will check off all your boxes: 3 Bedrooms, 2.5 Bathrooms, Open Concept First Floor, Custom Built Cabinets, Granite Counters, Stainless Appliances, Hardwood Floors, Ceramic Tiles, Gas Cooking and Gas Heat, Central Air, Garage and Off Street Parking.This bright beautiful home is on a quiet street. Basement has been rough plumbed for a 3rd full bath that could be finished into an in-law suite with private entrance. Large attic for storage and future expansion. ', 'property_size': '1842', 'num_floors': '2', 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/56-Fairmount-St-Boston-MA-02124/2097243242_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood', 'year_updated': None, 'bedrooms': '3', 'latitude': '42.280639', 'zillow_id': '2097243242', 'basement': 'Partially finished', 'year_built': '2007', 'home_size': '1144', 'roof': None, 'view': None, 'home_type': 'SingleFamily', 'parking_type': 'Garage - Attached', 'home_detail_link': 'http://www.zillow.com/homedetails/56-Fairmount-St-Boston-MA-02124/2097243242_zpid/', 'home_info': 'http://www.zillow.com/homedetails/56-Fairmount-St-Boston-MA-02124/2097243242_zpid/'}, u'zillow': {u'property_size': u'1842', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'460001', u'tax_value': None, u'zestimate_valuation_range_high': u'483001', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.280639', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097243242', u'last_sold_date': None, u'year_built': u'2007', u'zestimate_valuationRange_low': u'437001', u'graph_data_link': None, u'home_size': u'1144', u'longitude': u'-71.073368', u'map_this_home_link': u'http://www.zillow.com/homes/2097243242_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/56-Fairmount-St-Boston-MA-02124/2097243242_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02108', u'long': -71.0647326, u'prices': u'12,950,000', u'address': u'6 Mount Vernon Pl, Boston, MA', u'lat': 42.3578652, u'zillow': {u'property_size': u'2613', u'bathrooms': u'7.0', u'last_sold_price': None, u'zestimate_amount': u'7619122', u'tax_value': None, u'zestimate_valuation_range_high': u'8000078', u'tax_year': None, u'zestimate_value_change': u'-223657', u'latitude': u'42.357872', u'zestimate_percentile': u'0', u'bedrooms': u'6', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2102432900', u'last_sold_date': None, u'year_built': u'1830', u'zestimate_valuationRange_low': u'685721', u'graph_data_link': None, u'home_size': u'7500', u'longitude': u'-71.064735', u'map_this_home_link': u'http://www.zillow.com/homes/2102432900_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/6-Mount-Vernon-Pl-Boston-MA-02108/2102432900_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02115', u'long': -71.0868505, u'prices': u'949,000', u'address': u'363 Marlborough St APT 9, Boston, MA', u'lat': 42.35082269999999, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'Enjoy spectacular views of the Boston skyline from your exclusive-use roof deck with this open-concept, two-bedroom, penthouse condominium on the corner of Marlborough Street and Hereford Street in the Back Bay. The condominium has a phenomenal layout, wonderful natural light, exposed brick, granite counters, in-unit washer and dryer (two machines, not combo), updated appliances, central heating and air conditioning, high ceilings, a working fireplace, and hardwood floors. Maximize space by taking advantage of the built-in bookshelves and cabinets which allow for great storage! The Charles River Esplanade and a variety of shopping, dining, and transportation options are all within . 3 miles of your front door! The roof deck has connections for water and electricity. Roof deck is not included as part of the living area square footage. Pets allowed.', 'property_size': '885', 'num_floors': '1', 'heating_system': 'Heat pump', 'photo_gallery': 'http://www.zillow.com/homedetails/363-Marlborough-St-APT-9-Boston-MA-02115/59169063_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood, Tile', 'year_updated': '1982', 'bedrooms': '2', 'latitude': '42.350724', 'zillow_id': '59169063', 'basement': 'None', 'year_built': '1880', 'home_size': '885', 'roof': 'Other', 'view': 'City', 'home_type': 'Condominium', 'parking_type': 'On-street', 'home_detail_link': 'http://www.zillow.com/homedetails/363-Marlborough-St-APT-9-Boston-MA-02115/59169063_zpid/', 'home_info': 'http://www.zillow.com/homedetails/363-Marlborough-St-APT-9-Boston-MA-02115/59169063_zpid/'}, u'zillow': {u'property_size': u'885', u'bathrooms': u'1.0', u'last_sold_price': u'645000', u'zestimate_amount': u'888998', u'tax_value': u'652500.0', u'zestimate_valuation_range_high': u'960118', u'tax_year': u'2014', u'zestimate_value_change': u'-1943', u'latitude': u'42.350724', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59169063', u'last_sold_date': u'11/29/2010', u'year_built': u'1880', u'zestimate_valuationRange_low': u'826768', u'graph_data_link': u'http://www.zillow.com/homedetails/363-Marlborough-St-APT-9-Boston-MA-02115/59169063_zpid/#charts-and-data', u'home_size': u'885', u'longitude': u'-71.086785', u'map_this_home_link': u'http://www.zillow.com/homes/59169063_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/363-Marlborough-St-APT-9-Boston-MA-02115/59169063_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0800177, u'prices': u'695,000', u'address': u'19 Follen St APT 4, Boston, MA', u'lat': 42.3451668, u'zillow': {u'property_size': u'770', u'bathrooms': u'1.0', u'last_sold_price': u'574000', u'zestimate_amount': u'733632', u'tax_value': u'509300.0', u'zestimate_valuation_range_high': u'770314', u'tax_year': u'2014', u'zestimate_value_change': u'2904', u'latitude': u'42.344997', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59179239', u'last_sold_date': u'08/20/2012', u'year_built': u'1890', u'zestimate_valuationRange_low': u'696950', u'graph_data_link': u'http://www.zillow.com/homedetails/19-Follen-St-APT-4-Boston-MA-02116/59179239_zpid/#charts-and-data', u'home_size': u'770', u'longitude': u'-71.079818', u'map_this_home_link': u'http://www.zillow.com/homes/59179239_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/19-Follen-St-APT-4-Boston-MA-02116/59179239_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.0791392, u'prices': u'379,000', u'address': u'177 Northampton St APT 1, Boston, MA', u'lat': 42.3372636, u'zillow': {u'property_size': u'1393', u'bathrooms': u'1.0', u'last_sold_price': u'315000', u'zestimate_amount': u'450603', u'tax_value': u'332500.0', u'zestimate_valuation_range_high': u'477639', u'tax_year': u'2014', u'zestimate_value_change': u'2405', u'latitude': u'42.337509', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59184431', u'last_sold_date': u'10/17/2012', u'year_built': u'1905', u'zestimate_valuationRange_low': u'410049', u'graph_data_link': u'http://www.zillow.com/homedetails/177-Northampton-St-APT-1-Boston-MA-02118/59184431_zpid/#charts-and-data', u'home_size': u'634', u'longitude': u'-71.079406', u'map_this_home_link': u'http://www.zillow.com/homes/59184431_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/177-Northampton-St-APT-1-Boston-MA-02118/59184431_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02113', u'long': -71.0567253, u'prices': u'549,000', u'address': u'62 N Margin St APT 2, Boston, MA', u'lat': 42.36492579999999, u'zillow': {u'property_size': u'710', u'bathrooms': u'1.0', u'last_sold_price': u'415000', u'zestimate_amount': u'579867', u'tax_value': u'396800.0', u'zestimate_valuation_range_high': u'608860', u'tax_year': u'2014', u'zestimate_value_change': u'8935', u'latitude': u'42.365031', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59212065', u'last_sold_date': u'06/08/2007', u'year_built': u'1910', u'zestimate_valuationRange_low': u'550874', u'graph_data_link': u'http://www.zillow.com/homedetails/62-N-Margin-St-APT-2-Boston-MA-02113/59212065_zpid/#charts-and-data', u'home_size': u'710', u'longitude': u'-71.056779', u'map_this_home_link': u'http://www.zillow.com/homes/59212065_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/62-N-Margin-St-APT-2-Boston-MA-02113/59212065_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02108', u'long': -71.067244, u'prices': u'1,850,000', u'address': u'21 Chestnut St, Boston, MA', u'lat': 42.3577722, u'zillow': {u'property_size': u'999', u'bathrooms': u'1.0', u'last_sold_price': u'332000', u'zestimate_amount': u'632252', u'tax_value': u'370800.0', u'zestimate_valuation_range_high': u'720767', u'tax_year': u'2015', u'zestimate_value_change': u'5529', u'latitude': u'42.356893', u'zestimate_percentile': u'0', u'bedrooms': u'0', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59172636', u'last_sold_date': u'10/06/2005', u'year_built': u'1900', u'zestimate_valuationRange_low': u'556382', u'graph_data_link': u'http://www.zillow.com/homedetails/82-Chestnut-St-APT-21-Boston-MA-02108/59172636_zpid/#charts-and-data', u'home_size': u'413', u'longitude': u'-71.070075', u'map_this_home_link': u'http://www.zillow.com/homes/59172636_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/82-Chestnut-St-APT-21-Boston-MA-02108/59172636_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02114', u'long': -71.0663769, u'prices': u'764,999', u'address': u'47 Irving St UNIT B, Boston, MA', u'lat': 42.3595697, u'zillow': {u'property_size': u'835', u'bathrooms': u'2.0', u'last_sold_price': u'518000', u'zestimate_amount': u'711935', u'tax_value': u'430100.0', u'zestimate_valuation_range_high': u'754651', u'tax_year': u'2014', u'zestimate_value_change': u'7701', u'latitude': u'42.35965', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59174150', u'last_sold_date': u'09/01/2011', u'year_built': u'1920', u'zestimate_valuationRange_low': u'662100', u'graph_data_link': u'http://www.zillow.com/homedetails/47-Irving-St-UNIT-B-Boston-MA-02114/59174150_zpid/#charts-and-data', u'home_size': u'835', u'longitude': u'-71.066396', u'map_this_home_link': u'http://www.zillow.com/homes/59174150_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/47-Irving-St-UNIT-B-Boston-MA-02114/59174150_zpid/'}}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'599,900', u'address': u'1 Wistar Pl UNIT 2, Boston, MA', u'lat': -1}, {u'status': u'House For Sale', u'zip': u'02108', u'long': -71.0666389, u'prices': u'6,995,000', u'address': u'9 Chestnut St, Boston, MA', u'lat': 42.357909, u'zillow': {u'property_size': u'1742', u'bathrooms': u'5.0', u'last_sold_price': u'3450000', u'zestimate_amount': u'7218466', u'tax_value': u'3916800.0', u'zestimate_valuation_range_high': u'7579389', u'tax_year': u'2014', u'zestimate_value_change': u'86184', u'latitude': u'42.357908', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59174916', u'last_sold_date': u'06/05/2012', u'year_built': u'1824', u'zestimate_valuationRange_low': u'3681418', u'graph_data_link': u'http://www.zillow.com/homedetails/9-Chestnut-St-Boston-MA-02108/59174916_zpid/#charts-and-data', u'home_size': u'5141', u'longitude': u'-71.066648', u'map_this_home_link': u'http://www.zillow.com/homes/59174916_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/9-Chestnut-St-Boston-MA-02108/59174916_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02116', u'long': -71.0777478, u'prices': u'7,250,000', u'address': u'225 Beacon St, Boston, MA', u'lat': 42.353736, u'zillow': {u'property_size': u'2016', u'bathrooms': u'7.0', u'last_sold_price': u'675000', u'zestimate_amount': u'8206633', u'tax_value': u'4506360.0', u'zestimate_valuation_range_high': u'8616965', u'tax_year': u'2015', u'zestimate_value_change': u'-150081', u'latitude': u'42.353736', u'zestimate_percentile': u'0', u'bedrooms': u'6', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59171142', u'last_sold_date': u'01/31/1989', u'year_built': u'1890', u'zestimate_valuationRange_low': u'2626122', u'graph_data_link': u'http://www.zillow.com/homedetails/225-Beacon-St-Boston-MA-02116/59171142_zpid/#charts-and-data', u'home_size': u'6741', u'longitude': u'-71.077756', u'map_this_home_link': u'http://www.zillow.com/homes/59171142_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/225-Beacon-St-Boston-MA-02116/59171142_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02136', u'long': -71.115859, u'prices': u'849,000', u'address': u'37 Beacon St UNIT 66, Boston, MA', u'lat': 42.253277, u'zillow': {u'property_size': u'770', u'bathrooms': u'1.0', u'last_sold_price': u'562500', u'zestimate_amount': u'843794', u'tax_value': u'613700.0', u'zestimate_valuation_range_high': u'885984', u'tax_year': u'2014', u'zestimate_value_change': u'-1517', u'latitude': u'42.357118', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59174411', u'last_sold_date': u'02/24/2006', u'year_built': u'1920', u'zestimate_valuationRange_low': u'793166', u'graph_data_link': u'http://www.zillow.com/homedetails/37-Beacon-St-UNIT-66-Boston-MA-02108/59174411_zpid/#charts-and-data', u'home_size': u'770', u'longitude': u'-71.065523', u'map_this_home_link': u'http://www.zillow.com/homes/59174411_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/37-Beacon-St-UNIT-66-Boston-MA-02108/59174411_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0830367, u'prices': u'509,900', u'address': u'252 Commonwealth Ave APT 4, Boston, MA', u'lat': 42.3503687, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'400000', u'zestimate_amount': u'516006', u'tax_value': u'387500.0', u'zestimate_valuation_range_high': u'562447', u'tax_year': u'2014', u'zestimate_value_change': u'-6691', u'latitude': u'42.35035', u'zestimate_percentile': u'0', u'bedrooms': u'0', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59177200', u'last_sold_date': u'06/15/2012', u'year_built': u'1879', u'zestimate_valuationRange_low': u'443765', u'graph_data_link': u'http://www.zillow.com/homedetails/252-Commonwealth-Ave-APT-4-Boston-MA-02116/59177200_zpid/#charts-and-data', u'home_size': u'475', u'longitude': u'-71.083082', u'map_this_home_link': u'http://www.zillow.com/homes/59177200_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/252-Commonwealth-Ave-APT-4-Boston-MA-02116/59177200_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02129', u'long': -71.0667801, u'prices': u'549,000', u'address': u'141 High St UNIT 2, Boston, MA', u'lat': 42.3788783, u'zillow': {u'property_size': u'709', u'bathrooms': u'1.0', u'last_sold_price': u'363000', u'zestimate_amount': u'546525', u'tax_value': u'302400.0', u'zestimate_valuation_range_high': u'573851', u'tax_year': u'2014', u'zestimate_value_change': u'32853', u'latitude': u'42.378929', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59098110', u'last_sold_date': u'04/03/2007', u'year_built': u'1870', u'zestimate_valuationRange_low': u'502803', u'graph_data_link': u'http://www.zillow.com/homedetails/141-High-St-UNIT-2-Boston-MA-02129/59098110_zpid/#charts-and-data', u'home_size': u'709', u'longitude': u'-71.066763', u'map_this_home_link': u'http://www.zillow.com/homes/59098110_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/141-High-St-UNIT-2-Boston-MA-02129/59098110_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02122', u'long': -71.0527214, u'prices': u'249,000', u'address': u'119 Neponset Ave, Boston, MA', u'lat': 42.2944554, u'zillow': {u'property_size': u'18295', u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'390402', u'tax_value': u'266800.0', u'zestimate_valuation_range_high': u'421634', u'tax_year': u'2015', u'zestimate_value_change': None, u'latitude': u'42.245586', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59127947', u'last_sold_date': None, u'year_built': u'1950', u'zestimate_valuationRange_low': u'366978', u'graph_data_link': u'http://www.zillow.com/homedetails/119-Neponset-Ave-Boston-MA-02136/59127947_zpid/#charts-and-data', u'home_size': u'1008', u'longitude': u'-71.116362', u'map_this_home_link': u'http://www.zillow.com/homes/59127947_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/119-Neponset-Ave-Boston-MA-02136/59127947_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02111', u'long': -71.0638345, u'prices': u'1,100,000', u'address': u'170 Tremont St APT 1803, Boston, MA', u'lat': 42.3536762, u'zillow': {u'property_size': u'1121', u'bathrooms': u'2.0', u'last_sold_price': u'1025000', u'zestimate_amount': u'1167400', u'tax_value': u'773580.0', u'zestimate_valuation_range_high': u'1249118', u'tax_year': u'2014', u'zestimate_value_change': u'19912', u'latitude': u'42.353454', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59164828', u'last_sold_date': u'01/13/2015', u'year_built': u'1989', u'zestimate_valuationRange_low': u'1074008', u'graph_data_link': u'http://www.zillow.com/homedetails/170-Tremont-St-APT-1803-Boston-MA-02111/59164828_zpid/#charts-and-data', u'home_size': u'1121', u'longitude': u'-71.064143', u'map_this_home_link': u'http://www.zillow.com/homes/59164828_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/170-Tremont-St-APT-1803-Boston-MA-02111/59164828_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.0871268, u'prices': u'226,746', u'address': u'26 Marden Ave # 26, Boston, MA', u'lat': 42.2846305, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'262214', u'tax_value': None, u'zestimate_valuation_range_high': u'291058', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.284526', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096881142', u'last_sold_date': None, u'year_built': u'1988', u'zestimate_valuationRange_low': u'238615', u'graph_data_link': None, u'home_size': u'1623', u'longitude': u'-71.086723', u'map_this_home_link': u'http://www.zillow.com/homes/2096881142_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/26-Marden-Ave-26-Boston-MA-02124/2096881142_zpid/'}}, {u'status': u'Townhouse For Sale', u'zip': u'02124', u'long': -71.08618799999999, u'prices': u'399,900', u'address': u'19 Abbot St UNIT 2, Dorchester Center, MA', u'lat': 42.296794, u'zillow': {u'property_size': u'1859', u'bathrooms': u'3.0', u'last_sold_price': u'234000', u'zestimate_amount': u'421680', u'tax_value': u'181200.0', u'zestimate_valuation_range_high': u'472282', u'tax_year': u'2014', u'zestimate_value_change': u'3650', u'latitude': u'42.296795', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81853792', u'last_sold_date': u'04/10/2014', u'year_built': u'2004', u'zestimate_valuationRange_low': u'312043', u'graph_data_link': u'http://www.zillow.com/homedetails/19-Abbot-St-UNIT-2-Dorchester-Center-MA-02124/81853792_zpid/#charts-and-data', u'home_size': u'1859', u'longitude': u'-71.086189', u'map_this_home_link': u'http://www.zillow.com/homes/81853792_zpid/', u'home_type': u'Townhouse', u'home_detail_link': u'http://www.zillow.com/homedetails/19-Abbot-St-UNIT-2-Dorchester-Center-MA-02124/81853792_zpid/'}}, {u'status': u'For Sale by Owner', u'zip': u'02125', u'long': -71.05511899999999, u'prices': u'570,000', u'address': u'5 Sagamore St, Dorchester, MA', u'lat': 42.312818, u'zillow': {u'property_size': u'2011', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'568461', u'tax_value': u'284800.0', u'zestimate_valuation_range_high': u'602569', u'tax_year': u'2015', u'zestimate_value_change': u'-5009', u'latitude': u'42.312817', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59110263', u'last_sold_date': None, u'year_built': u'1905', u'zestimate_valuationRange_low': u'477507', u'graph_data_link': u'http://www.zillow.com/homedetails/5-Sagamore-St-Dorchester-MA-02125/59110263_zpid/#charts-and-data', u'home_size': u'2002', u'longitude': u'-71.055117', u'map_this_home_link': u'http://www.zillow.com/homes/59110263_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/5-Sagamore-St-Dorchester-MA-02125/59110263_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02108', u'long': -71.0589698, u'prices': u'839,000', u'address': u'10 School St, Boston, MA', u'lat': 42.3573281, u'zillow': {u'property_size': u'3600', u'bathrooms': u'4.0', u'last_sold_price': None, u'zestimate_amount': u'2391831', u'tax_value': None, u'zestimate_valuation_range_high': u'2511423', u'tax_year': None, u'zestimate_value_change': u'-27950', u'latitude': u'42.357336', u'zestimate_percentile': u'0', u'bedrooms': u'9', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2146689796', u'last_sold_date': None, u'year_built': u'1890', u'zestimate_valuationRange_low': u'2272239', u'graph_data_link': None, u'home_size': u'3263', u'longitude': u'-71.058989', u'map_this_home_link': u'http://www.zillow.com/homes/2146689796_zpid/', u'home_type': u'Unknown', u'home_detail_link': u'http://www.zillow.com/homedetails/10-School-St-Boston-MA-02108/2146689796_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.113652, u'prices': u'479,500', u'address': u'20 Rosemary St, Boston, MA', u'lat': 42.304415, u'zillow': {u'property_size': u'3952', u'bathrooms': u'1.0', u'last_sold_price': u'760000', u'zestimate_amount': u'652482', u'tax_value': u'664930.0', u'zestimate_valuation_range_high': u'789503', u'tax_year': u'2006', u'zestimate_value_change': u'-126374', u'latitude': u'42.304415', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59135339', u'last_sold_date': u'09/07/2004', u'year_built': u'1940', u'zestimate_valuationRange_low': u'554610', u'graph_data_link': u'http://www.zillow.com/homedetails/20-Rosemary-St-Boston-MA-02130/59135339_zpid/#charts-and-data', u'home_size': u'1092', u'longitude': u'-71.113652', u'map_this_home_link': u'http://www.zillow.com/homes/59135339_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/20-Rosemary-St-Boston-MA-02130/59135339_zpid/'}}, {u'status': u'Foreclosed', u'zip': u'02118', u'long': -71.08023539999999, u'prices': -1, u'address': u'777 Tremont St UNIT 2, Boston, MA', u'lat': 42.3396143, u'zillow': {u'property_size': u'645', u'bathrooms': u'1.0', u'last_sold_price': u'299000', u'zestimate_amount': u'496146', u'tax_value': u'445900.0', u'zestimate_valuation_range_high': u'520953', u'tax_year': u'2015', u'zestimate_value_change': u'1389', u'latitude': u'42.339447', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'63041779', u'last_sold_date': u'06/17/2003', u'year_built': u'1899', u'zestimate_valuationRange_low': u'471339', u'graph_data_link': u'http://www.zillow.com/homedetails/777-Tremont-St-UNIT-2-Boston-MA-02118/63041779_zpid/#charts-and-data', u'home_size': u'645', u'longitude': u'-71.080154', u'map_this_home_link': u'http://www.zillow.com/homes/63041779_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/777-Tremont-St-UNIT-2-Boston-MA-02118/63041779_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0703322, u'prices': u'579,000', u'address': u'9 Appleton St APT 205, Boston, MA', u'lat': 42.34645, u'zillow': {u'property_size': u'660', u'bathrooms': u'1.0', u'last_sold_price': u'220000', u'zestimate_amount': u'625711', u'tax_value': u'438500.0', u'zestimate_valuation_range_high': u'663254', u'tax_year': u'2015', u'zestimate_value_change': u'5759', u'latitude': u'42.34632', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59175732', u'last_sold_date': u'05/18/2000', u'year_built': u'1880', u'zestimate_valuationRange_low': u'594425', u'graph_data_link': u'http://www.zillow.com/homedetails/9-Appleton-St-APT-205-Boston-MA-02116/59175732_zpid/#charts-and-data', u'home_size': u'660', u'longitude': u'-71.070438', u'map_this_home_link': u'http://www.zillow.com/homes/59175732_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/9-Appleton-St-APT-205-Boston-MA-02116/59175732_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02131', u'long': -71.11703899999999, u'prices': u'450,000', u'address': u'3850 Washington St, Boston, MA', u'lat': 42.296568, u'zillow': {u'property_size': u'3049', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'462634', u'tax_value': u'218800.0', u'zestimate_valuation_range_high': u'490392', u'tax_year': u'2015', u'zestimate_value_change': u'-6985', u'latitude': u'42.296571', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59144471', u'last_sold_date': None, u'year_built': u'1890', u'zestimate_valuationRange_low': u'411744', u'graph_data_link': u'http://www.zillow.com/homedetails/3850-Washington-St-Boston-MA-02131/59144471_zpid/#charts-and-data', u'home_size': u'1880', u'longitude': u'-71.117043', u'map_this_home_link': u'http://www.zillow.com/homes/59144471_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/3850-Washington-St-Boston-MA-02131/59144471_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.059433, u'prices': u'195,000', u'address': u'117 Park St UNIT 2, Dorchester, MA', u'lat': 42.299112, u'zillow': {u'property_size': u'856', u'bathrooms': u'1.0', u'last_sold_price': u'121253', u'zestimate_amount': u'309134', u'tax_value': u'173300.0', u'zestimate_valuation_range_high': u'333865', u'tax_year': u'2014', u'zestimate_value_change': u'2668', u'latitude': u'42.29911', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'71497284', u'last_sold_date': u'10/29/2013', u'year_built': u'1905', u'zestimate_valuationRange_low': u'272038', u'graph_data_link': u'http://www.zillow.com/homedetails/117-Park-St-UNIT-2-Dorchester-MA-02122/71497284_zpid/#charts-and-data', u'home_size': u'856', u'longitude': u'-71.059432', u'map_this_home_link': u'http://www.zillow.com/homes/71497284_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/117-Park-St-UNIT-2-Dorchester-MA-02122/71497284_zpid/'}}, {u'status': u'House For Sale', u'zip': None, u'long': -70.7055871, u'prices': u'599,900', u'address': u'7 Adelaide Way, Marshfield, MA', u'lat': 42.0917453}, {u'status': u'Condo For Sale', u'zip': u'02110', u'long': -71.05103489999999, u'prices': u'1,130,000', u'address': u'38 Commercial Wharf # 1, Boston, MA', u'lat': 42.3622621, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'1176764', u'tax_value': None, u'zestimate_valuation_range_high': u'1235602', u'tax_year': None, u'zestimate_value_change': u'-26713', u'latitude': u'42.362089', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2133714854', u'last_sold_date': None, u'year_built': u'1832', u'zestimate_valuationRange_low': u'1117926', u'graph_data_link': None, u'home_size': u'1246', u'longitude': u'-71.049939', u'map_this_home_link': u'http://www.zillow.com/homes/2133714854_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/38-Commercial-Wharf-1-Boston-MA-02110/2133714854_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02128', u'long': -70.9979479, u'prices': u'389,900', u'address': u'1203 Bennington St, Boston, MA', u'lat': 42.388927, u'zillow': {u'property_size': u'2178', u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'411257', u'tax_value': u'168500.0', u'zestimate_valuation_range_high': u'435932', u'tax_year': u'2014', u'zestimate_value_change': u'22549', u'latitude': u'42.388916', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59120628', u'last_sold_date': None, u'year_built': u'1910', u'zestimate_valuationRange_low': u'378356', u'graph_data_link': u'http://www.zillow.com/homedetails/1203-Bennington-St-Boston-MA-02128/59120628_zpid/#charts-and-data', u'home_size': u'1608', u'longitude': u'-70.997946', u'map_this_home_link': u'http://www.zillow.com/homes/59120628_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/1203-Bennington-St-Boston-MA-02128/59120628_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02118', u'long': -71.0761844, u'prices': u'5,695,000', u'address': u'89 Pembroke St, Boston, MA', u'lat': 42.3421872, u'zillow': {u'property_size': u'1742', u'bathrooms': u'5.0', u'last_sold_price': u'2900000', u'zestimate_amount': u'4310456', u'tax_value': u'1461800.0', u'zestimate_valuation_range_high': u'4525979', u'tax_year': u'2014', u'zestimate_value_change': u'-297741', u'latitude': u'42.342188', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59182707', u'last_sold_date': u'07/14/2016', u'year_built': u'1870', u'zestimate_valuationRange_low': u'301732', u'graph_data_link': u'http://www.zillow.com/homedetails/89-Pembroke-St-Boston-MA-02118/59182707_zpid/#charts-and-data', u'home_size': u'4100', u'longitude': u'-71.076185', u'map_this_home_link': u'http://www.zillow.com/homes/59182707_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/89-Pembroke-St-Boston-MA-02118/59182707_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02115', u'long': -71.08466419999999, u'prices': u'1,100,000', u'address': u'286 Commonwealth Ave APT 2, Boston, MA', u'lat': 42.3497954, 'property': {'neighborhood': None, 'bathrooms': '2.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'WONDERFUL TWO BEDROOM DUPLEX WITH PRIVATE GARDEN HARDWOOD FLOORS THROUGHOUT ELEGANT LIVING ROOM WITH FIREPLACE, BUILT IN BOOK SHELVES VERY HIGH CEILINGS WITH BEAUTIFUL MOULDINGS IMPECABLE COMMON AREAS', 'property_size': '1215', 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/286-Commonwealth-Ave-APT-2-Boston-MA-02115/59177113_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '2', 'latitude': '42.349892', 'zillow_id': '59177113', 'basement': None, 'year_built': '1900', 'home_size': '1215', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/286-Commonwealth-Ave-APT-2-Boston-MA-02115/59177113_zpid/', 'home_info': 'http://www.zillow.com/homedetails/286-Commonwealth-Ave-APT-2-Boston-MA-02115/59177113_zpid/'}, u'zillow': {u'property_size': u'1215', u'bathrooms': u'2.0', u'last_sold_price': u'720000', u'zestimate_amount': u'1142493', u'tax_value': u'774700.0', u'zestimate_valuation_range_high': u'1268167', u'tax_year': u'2014', u'zestimate_value_change': u'-894', u'latitude': u'42.349892', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59177113', u'last_sold_date': u'08/27/2010', u'year_built': u'1900', u'zestimate_valuationRange_low': u'1005394', u'graph_data_link': u'http://www.zillow.com/homedetails/286-Commonwealth-Ave-APT-2-Boston-MA-02115/59177113_zpid/#charts-and-data', u'home_size': u'1215', u'longitude': u'-71.084799', u'map_this_home_link': u'http://www.zillow.com/homes/59177113_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/286-Commonwealth-Ave-APT-2-Boston-MA-02115/59177113_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02114', u'long': -71.05922559999999, u'prices': u'899,000', u'address': u'234 Causeway St APT 901, Boston, MA', u'lat': 42.3666816, u'zillow': {u'property_size': u'1395', u'bathrooms': u'1.0', u'last_sold_price': u'630000', u'zestimate_amount': u'951649', u'tax_value': u'580334.0', u'zestimate_valuation_range_high': u'1018264', u'tax_year': u'2014', u'zestimate_value_change': u'25858', u'latitude': u'42.366424', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'63709518', u'last_sold_date': u'01/29/2010', u'year_built': u'1899', u'zestimate_valuationRange_low': u'904067', u'graph_data_link': u'http://www.zillow.com/homedetails/234-Causeway-St-APT-901-Boston-MA-02114/63709518_zpid/#charts-and-data', u'home_size': u'1395', u'longitude': u'-71.059676', u'map_this_home_link': u'http://www.zillow.com/homes/63709518_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/234-Causeway-St-APT-901-Boston-MA-02114/63709518_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.0757704, u'prices': u'435,000', u'address': u'84 W Concord St APT 1, Boston, MA', u'lat': 42.3384784, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': \"Newly listed! Contact Andrew Lynn, Realtor at andrew.lynn@commonmoves.com or 617-702-4045 for more information, and don't miss our open houses.\\nBRAND NEW ROOF AND ROOF DECK JUST COMPLETED!\\nBright, newly renovated first floor 1BR condo in a traditional South End red brick building. Centrally located on a side street convenient to\\nBoston Medical Center, the Back Bay, Northeastern, MBTA stops, and South End restaurants, shops and entertainment. Open\\nplan kitchen and living room for entertaining. New kitchen includes new wood cabinets, tile floor and stainless appliances.\\nLaundry and dedicated storage space in basement. Common roof deck with city views. Note: The condo association is in the\\nprocess of replacing the roof and deck; the seller will cover these costs.\", 'property_size': '458', 'num_floors': '1', 'heating_system': 'Baseboard, Other', 'photo_gallery': 'http://www.zillow.com/homedetails/84-W-Concord-St-APT-1-Boston-MA-02118/59184172_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Carpet, Hardwood, Tile', 'year_updated': '1984', 'bedrooms': '1', 'latitude': '42.338533', 'zillow_id': '59184172', 'basement': 'Partially finished', 'year_built': '1920', 'home_size': '458', 'roof': None, 'view': 'City', 'home_type': 'Condominium', 'parking_type': 'On-street', 'home_detail_link': 'http://www.zillow.com/homedetails/84-W-Concord-St-APT-1-Boston-MA-02118/59184172_zpid/', 'home_info': 'http://www.zillow.com/homedetails/84-W-Concord-St-APT-1-Boston-MA-02118/59184172_zpid/'}, u'zillow': {u'property_size': u'458', u'bathrooms': u'1.0', u'last_sold_price': u'337500', u'zestimate_amount': u'449246', u'tax_value': u'337900.0', u'zestimate_valuation_range_high': u'471708', u'tax_year': u'2015', u'zestimate_value_change': u'2104', u'latitude': u'42.338533', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59184172', u'last_sold_date': u'07/19/2013', u'year_built': u'1920', u'zestimate_valuationRange_low': u'426784', u'graph_data_link': u'http://www.zillow.com/homedetails/84-W-Concord-St-APT-1-Boston-MA-02118/59184172_zpid/#charts-and-data', u'home_size': u'458', u'longitude': u'-71.075767', u'map_this_home_link': u'http://www.zillow.com/homes/59184172_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/84-W-Concord-St-APT-1-Boston-MA-02118/59184172_zpid/'}}, {u'status': u'Pre-Foreclosure', u'zip': None, u'long': -1, u'prices': -1, u'address': u'Sign in for details', u'lat': -1}, {u'status': u'Pre-Foreclosure', u'zip': None, u'long': -1, u'prices': -1, u'address': u'Sign in for details', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0676916, u'prices': u'1,535,000', u'address': u'12 Piedmont St # 2, Boston, MA', u'lat': 42.3498925, u'zillow': {u'property_size': u'1880', u'bathrooms': u'3.0', u'last_sold_price': u'1295000', u'zestimate_amount': u'1862595', u'tax_value': u'1349600.0', u'zestimate_valuation_range_high': u'1955725', u'tax_year': u'2015', u'zestimate_value_change': u'3172', u'latitude': u'42.349962', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'123847065', u'last_sold_date': u'02/02/2014', u'year_built': u'1899', u'zestimate_valuationRange_low': u'1769465', u'graph_data_link': u'http://www.zillow.com/homedetails/12-Piedmont-St-2-Boston-MA-02116/123847065_zpid/#charts-and-data', u'home_size': u'1880', u'longitude': u'-71.06764', u'map_this_home_link': u'http://www.zillow.com/homes/123847065_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/12-Piedmont-St-2-Boston-MA-02116/123847065_zpid/'}}, {u'status': u'Coming Soon', u'zip': u'02130', u'long': -71.1062571, u'prices': u'549,900', u'address': u'69 Boylston St # 1, Boston, MA', u'lat': 42.3168896, 'property': {'neighborhood': None, 'bathrooms': '2.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'Stunning condo conversion in a great neighborhood. Ample amount of space in addition to off street parking. Condo conversion to be completed. Call now!', 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/69-Boylston-St-1-Boston-MA-02130/2096862701_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '3', 'latitude': '42.31693', 'zillow_id': '2096862701', 'basement': None, 'year_built': None, 'home_size': '1400', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/69-Boylston-St-1-Boston-MA-02130/2096862701_zpid/', 'home_info': 'http://www.zillow.com/homedetails/69-Boylston-St-1-Boston-MA-02130/2096862701_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'621854', u'tax_value': None, u'zestimate_valuation_range_high': u'652947', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.31693', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096862701', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'590761', u'graph_data_link': None, u'home_size': u'1400', u'longitude': u'-71.10468', u'map_this_home_link': u'http://www.zillow.com/homes/2096862701_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/69-Boylston-St-1-Boston-MA-02130/2096862701_zpid/'}}, {u'status': u'Pre-Foreclosure', u'zip': None, u'long': -1, u'prices': -1, u'address': u'Sign in for details', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02132', u'long': -71.14407729999999, u'prices': u'209,900', u'address': u'2 Lagrange St APT 6, Boston, MA', u'lat': 42.2729659, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'163000', u'zestimate_amount': u'229814', u'tax_value': u'143500.0', u'zestimate_valuation_range_high': u'266584', u'tax_year': u'2014', u'zestimate_value_change': u'-11496', u'latitude': u'42.272968', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59158614', u'last_sold_date': u'10/20/2003', u'year_built': u'1955', u'zestimate_valuationRange_low': u'179255', u'graph_data_link': u'http://www.zillow.com/homedetails/2-Lagrange-St-APT-6-Boston-MA-02132/59158614_zpid/#charts-and-data', u'home_size': u'575', u'longitude': u'-71.144065', u'map_this_home_link': u'http://www.zillow.com/homes/59158614_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/2-Lagrange-St-APT-6-Boston-MA-02132/59158614_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.062924, u'prices': u'376,000', u'address': u'33 Adams St APT 1, Dorchester, MA', u'lat': 42.307303, u'zillow': {u'property_size': u'1180', u'bathrooms': u'2.0', u'last_sold_price': u'319000', u'zestimate_amount': u'359209', u'tax_value': u'183800.0', u'zestimate_valuation_range_high': u'384354', u'tax_year': u'2014', u'zestimate_value_change': u'-50714', u'latitude': u'42.307304', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'71496947', u'last_sold_date': u'01/18/2005', u'year_built': u'1902', u'zestimate_valuationRange_low': u'330472', u'graph_data_link': u'http://www.zillow.com/homedetails/33-Adams-St-APT-1-Dorchester-MA-02122/71496947_zpid/#charts-and-data', u'home_size': u'1180', u'longitude': u'-71.062927', u'map_this_home_link': u'http://www.zillow.com/homes/71496947_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/33-Adams-St-APT-1-Dorchester-MA-02122/71496947_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.159774, u'prices': u'469,900', u'address': u'30 Schiller Rd, Boston, MA', u'lat': 42.2569305, u'zillow': {u'property_size': u'4356', u'bathrooms': u'2.0', u'last_sold_price': u'280000', u'zestimate_amount': u'493471', u'tax_value': u'293600.0', u'zestimate_valuation_range_high': u'518145', u'tax_year': u'2014', u'zestimate_value_change': u'-7549', u'latitude': u'42.256881', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59160806', u'last_sold_date': u'04/22/2015', u'year_built': u'1910', u'zestimate_valuationRange_low': u'458928', u'graph_data_link': u'http://www.zillow.com/homedetails/30-Schiller-Rd-Boston-MA-02132/59160806_zpid/#charts-and-data', u'home_size': u'1436', u'longitude': u'-71.159743', u'map_this_home_link': u'http://www.zillow.com/homes/59160806_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/30-Schiller-Rd-Boston-MA-02132/59160806_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02125', u'long': -71.066192, u'prices': u'1,150,000', u'address': u'21 Hancock St APT 1, Boston, MA', u'lat': 42.314901, u'zillow': {u'property_size': u'1225', u'bathrooms': u'2.0', u'last_sold_price': u'440000', u'zestimate_amount': u'1190260', u'tax_value': u'642000.0', u'zestimate_valuation_range_high': u'1261676', u'tax_year': u'2014', u'zestimate_value_change': u'-2128', u'latitude': u'42.360489', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59180678', u'last_sold_date': u'05/14/1999', u'year_built': u'1880', u'zestimate_valuationRange_low': u'1118844', u'graph_data_link': u'http://www.zillow.com/homedetails/21-Hancock-St-APT-1-Boston-MA-02114/59180678_zpid/#charts-and-data', u'home_size': u'1225', u'longitude': u'-71.064652', u'map_this_home_link': u'http://www.zillow.com/homes/59180678_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/21-Hancock-St-APT-1-Boston-MA-02114/59180678_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02115', u'long': -71.0880488, u'prices': u'685,000', u'address': u'362 Commonwealth Ave APT 1A, Boston, MA', u'lat': 42.348723, u'zillow': {u'property_size': u'725', u'bathrooms': u'1.0', u'last_sold_price': u'2747', u'zestimate_amount': u'750727', u'tax_value': u'443100.0', u'zestimate_valuation_range_high': u'795771', u'tax_year': u'2014', u'zestimate_value_change': u'5465', u'latitude': u'42.348971', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59177304', u'last_sold_date': u'01/18/2011', u'year_built': u'1889', u'zestimate_valuationRange_low': u'705683', u'graph_data_link': u'http://www.zillow.com/homedetails/362-Commonwealth-Ave-APT-1A-Boston-MA-02115/59177304_zpid/#charts-and-data', u'home_size': u'790', u'longitude': u'-71.088107', u'map_this_home_link': u'http://www.zillow.com/homes/59177304_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/362-Commonwealth-Ave-APT-1A-Boston-MA-02115/59177304_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02116', u'long': -71.0715685, u'prices': u'2,199,999', u'address': u'40 Gray St, Boston, MA', u'lat': 42.3454645, u'zillow': {u'property_size': u'871', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'2688555', u'tax_value': u'1018500.0', u'zestimate_valuation_range_high': u'2822983', u'tax_year': u'2014', u'zestimate_value_change': u'300531', u'latitude': u'42.345459', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59175802', u'last_sold_date': None, u'year_built': u'1890', u'zestimate_valuationRange_low': u'1075422', u'graph_data_link': u'http://www.zillow.com/homedetails/40-Gray-St-Boston-MA-02116/59175802_zpid/#charts-and-data', u'home_size': u'2400', u'longitude': u'-71.071567', u'map_this_home_link': u'http://www.zillow.com/homes/59175802_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/40-Gray-St-Boston-MA-02116/59175802_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02116', u'long': -71.0731856, u'prices': u'5,500,000', u'address': u'16 Marlborough St, Boston, MA', u'lat': 42.3541078, u'zillow': {u'property_size': u'1742', u'bathrooms': u'8.0', u'last_sold_price': u'1825000', u'zestimate_amount': u'5536334', u'tax_value': u'2809300.0', u'zestimate_valuation_range_high': u'5813151', u'tax_year': u'2014', u'zestimate_value_change': u'1962', u'latitude': u'42.354107', u'zestimate_percentile': u'0', u'bedrooms': u'7', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59172615', u'last_sold_date': u'07/02/2003', u'year_built': u'1864', u'zestimate_valuationRange_low': u'5259517', u'graph_data_link': u'http://www.zillow.com/homedetails/16-Marlborough-St-Boston-MA-02116/59172615_zpid/#charts-and-data', u'home_size': u'6207', u'longitude': u'-71.073182', u'map_this_home_link': u'http://www.zillow.com/homes/59172615_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/16-Marlborough-St-Boston-MA-02116/59172615_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0390812, u'prices': u'475,000', u'address': u'159 Emerson St, South Boston, MA', u'lat': 42.3353224, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': None, 'property_size': '676', 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/159-Emerson-St-Boston-MA-02127/81854393_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '1', 'latitude': '42.335151', 'zillow_id': '81854393', 'basement': None, 'year_built': '1920', 'home_size': '676', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/159-Emerson-St-Boston-MA-02127/81854393_zpid/', 'home_info': 'http://www.zillow.com/homedetails/159-Emerson-St-Boston-MA-02127/81854393_zpid/'}, u'zillow': {u'property_size': u'676', u'bathrooms': u'1.0', u'last_sold_price': u'299900', u'zestimate_amount': u'461166', u'tax_value': u'336000.0', u'zestimate_valuation_range_high': u'498059', u'tax_year': u'2015', u'zestimate_value_change': u'5480', u'latitude': u'42.335151', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81854393', u'last_sold_date': u'05/01/2006', u'year_built': u'1920', u'zestimate_valuationRange_low': u'433496', u'graph_data_link': u'http://www.zillow.com/homedetails/159-Emerson-St-Boston-MA-02127/81854393_zpid/#charts-and-data', u'home_size': u'676', u'longitude': u'-71.03923', u'map_this_home_link': u'http://www.zillow.com/homes/81854393_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/159-Emerson-St-Boston-MA-02127/81854393_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02467', u'long': -71.1578304, u'prices': u'1,875,000', u'address': u'51 Randolph Rd, Chestnut Hill, MA', u'lat': 42.3230903, u'zillow': {u'property_size': u'10820', u'bathrooms': u'4.0', u'last_sold_price': u'975000', u'zestimate_amount': u'2118239', u'tax_value': u'1196300.0', u'zestimate_valuation_range_high': u'2287698', u'tax_year': u'2014', u'zestimate_value_change': u'272695', u'latitude': u'42.341164', u'zestimate_percentile': u'0', u'bedrooms': u'5', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'56573941', u'last_sold_date': u'02/28/2002', u'year_built': u'1937', u'zestimate_valuationRange_low': u'1969962', u'graph_data_link': u'http://www.zillow.com/homedetails/51-Randolph-Rd-Chestnut-Hill-MA-02467/56573941_zpid/#charts-and-data', u'home_size': u'3200', u'longitude': u'-71.064255', u'map_this_home_link': u'http://www.zillow.com/homes/56573941_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/51-Randolph-Rd-Chestnut-Hill-MA-02467/56573941_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02108', u'long': -71.064748, u'prices': u'9,000,000', u'address': u'25 Beacon St # 5, Boston, MA', u'lat': 42.357503, u'zillow': {u'property_size': None, u'bathrooms': u'4.0', u'last_sold_price': None, u'zestimate_amount': u'7100799', u'tax_value': None, u'zestimate_valuation_range_high': u'7455839', u'tax_year': None, u'zestimate_value_change': u'-320863', u'latitude': u'42.357501', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2099225487', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'568064', u'graph_data_link': None, u'home_size': u'3577', u'longitude': u'-71.06475', u'map_this_home_link': u'http://www.zillow.com/homes/2099225487_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/25-Beacon-St-5-Boston-MA-02108/2099225487_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02108', u'long': -71.0690482, u'prices': u'2,395,000', u'address': u'7 Acorn St, Boston, MA', u'lat': 42.3574942, u'zillow': {u'property_size': u'435', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'2449476', u'tax_value': u'1440000.0', u'zestimate_valuation_range_high': u'2596445', u'tax_year': u'2014', u'zestimate_value_change': u'14688', u'latitude': u'42.3575', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59174792', u'last_sold_date': None, u'year_built': u'1826', u'zestimate_valuationRange_low': u'2302507', u'graph_data_link': u'http://www.zillow.com/homedetails/7-Acorn-St-Boston-MA-02108/59174792_zpid/#charts-and-data', u'home_size': u'1900', u'longitude': u'-71.069054', u'map_this_home_link': u'http://www.zillow.com/homes/59174792_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/7-Acorn-St-Boston-MA-02108/59174792_zpid/'}}, {u'status': u'For Sale by Owner', u'zip': u'02110', u'long': -71.0504859, u'prices': u'675,000', u'address': u'65 E India Row APT 28A, Boston, MA', u'lat': 42.3576699, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': None, 'property_size': '756', 'num_floors': '1', 'heating_system': 'Forced air', 'photo_gallery': 'http://www.zillow.com/homedetails/65-E-India-Row-APT-28A-Boston-MA-02110/59175144_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood, Other', 'year_updated': None, 'bedrooms': '1', 'latitude': '42.35792', 'zillow_id': '59175144', 'basement': None, 'year_built': '1972', 'home_size': '756', 'roof': None, 'view': 'City', 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/65-E-India-Row-APT-28A-Boston-MA-02110/59175144_zpid/', 'home_info': 'http://www.zillow.com/homedetails/65-E-India-Row-APT-28A-Boston-MA-02110/59175144_zpid/'}, u'zillow': {u'property_size': u'756', u'bathrooms': u'1.0', u'last_sold_price': u'378000', u'zestimate_amount': u'704095', u'tax_value': u'422908.0', u'zestimate_valuation_range_high': u'746341', u'tax_year': u'2014', u'zestimate_value_change': u'4146', u'latitude': u'42.35792', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59175144', u'last_sold_date': u'03/26/2010', u'year_built': u'1972', u'zestimate_valuationRange_low': u'668890', u'graph_data_link': u'http://www.zillow.com/homedetails/65-E-India-Row-APT-28A-Boston-MA-02110/59175144_zpid/#charts-and-data', u'home_size': u'756', u'longitude': u'-71.050708', u'map_this_home_link': u'http://www.zillow.com/homes/59175144_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/65-E-India-Row-APT-28A-Boston-MA-02110/59175144_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.0651908, u'prices': u'495,000', u'address': u'35 Fay St UNIT 610, Boston, MA', u'lat': 42.3431659, u'zillow': {u'property_size': u'505', u'bathrooms': u'1.0', u'last_sold_price': u'400000', u'zestimate_amount': u'492308', u'tax_value': u'310000.0', u'zestimate_valuation_range_high': u'531693', u'tax_year': u'2014', u'zestimate_value_change': u'26205', u'latitude': u'42.343255', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81856648', u'last_sold_date': u'07/30/2015', u'year_built': u'2006', u'zestimate_valuationRange_low': u'452923', u'graph_data_link': u'http://www.zillow.com/homedetails/35-Fay-St-UNIT-610-Boston-MA-02118/81856648_zpid/#charts-and-data', u'home_size': u'506', u'longitude': u'-71.065034', u'map_this_home_link': u'http://www.zillow.com/homes/81856648_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/35-Fay-St-UNIT-610-Boston-MA-02118/81856648_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02114', u'long': -71.06970869999999, u'prices': u'425,000', u'address': u'7 Primus Ave APT 5, Boston, MA', u'lat': 42.3601679, u'zillow': {u'property_size': u'380', u'bathrooms': u'1.0', u'last_sold_price': u'285000', u'zestimate_amount': u'433776', u'tax_value': u'289000.0', u'zestimate_valuation_range_high': u'455465', u'tax_year': u'2014', u'zestimate_value_change': u'1858', u'latitude': u'42.360127', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59173739', u'last_sold_date': u'10/01/2007', u'year_built': u'1899', u'zestimate_valuationRange_low': u'399074', u'graph_data_link': u'http://www.zillow.com/homedetails/7-Primus-Ave-APT-5-Boston-MA-02114/59173739_zpid/#charts-and-data', u'home_size': u'380', u'longitude': u'-71.069731', u'map_this_home_link': u'http://www.zillow.com/homes/59173739_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/7-Primus-Ave-APT-5-Boston-MA-02114/59173739_zpid/'}}, {u'status': u'Foreclosed', u'zip': u'02129', u'long': -71.0687923, u'prices': -1, u'address': u'40 Chappie St UNIT 1, Boston, MA', u'lat': 42.3830222, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'This city condo unit sits on a quaint, quiet, and tree lined street. A common back yard space with patio, which is rare in the city. Within a quick stroll to boat access, public transportation, schools, restaurants/bars, and shops.', 'property_size': '821', 'num_floors': '2', 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/40-Chappie-St-UNIT-1-Boston-MA-02129/71329755_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood', 'year_updated': None, 'bedrooms': '2', 'latitude': '42.383029', 'zillow_id': '71329755', 'basement': None, 'year_built': '1900', 'home_size': '890', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': 'On-street', 'home_detail_link': 'http://www.zillow.com/homedetails/40-Chappie-St-UNIT-1-Boston-MA-02129/71329755_zpid/', 'home_info': 'http://www.zillow.com/homedetails/40-Chappie-St-UNIT-1-Boston-MA-02129/71329755_zpid/'}, u'zillow': {u'property_size': u'821', u'bathrooms': u'1.0', u'last_sold_price': u'300000', u'zestimate_amount': u'539728', u'tax_value': u'302900.0', u'zestimate_valuation_range_high': u'566714', u'tax_year': u'2015', u'zestimate_value_change': u'18977', u'latitude': u'42.383029', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'71329755', u'last_sold_date': u'07/11/2006', u'year_built': u'1900', u'zestimate_valuationRange_low': u'501947', u'graph_data_link': u'http://www.zillow.com/homedetails/40-Chappie-St-UNIT-1-Boston-MA-02129/71329755_zpid/#charts-and-data', u'home_size': u'890', u'longitude': u'-71.068832', u'map_this_home_link': u'http://www.zillow.com/homes/71329755_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/40-Chappie-St-UNIT-1-Boston-MA-02129/71329755_zpid/'}}, {u'status': u'New Construction', u'zip': u'02118', u'long': -71.065861, u'prices': u'6,750,000', u'address': u'136 Shawmut Ave # 6, Boston, MA', u'lat': 42.345897, u'zillow': {u'property_size': None, u'bathrooms': u'5.5', u'last_sold_price': None, u'zestimate_amount': u'5594914', u'tax_value': None, u'zestimate_valuation_range_high': u'5874660', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.345897', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097216014', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'615440', u'graph_data_link': None, u'home_size': u'5295', u'longitude': u'-71.065864', u'map_this_home_link': u'http://www.zillow.com/homes/2097216014_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/136-Shawmut-Ave-6-Boston-MA-02118/2097216014_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.0684575, u'prices': u'870,000', u'address': u'258 Shawmut Ave APT 11, Boston, MA', u'lat': 42.3432118, u'zillow': {u'property_size': u'980', u'bathrooms': u'1.0', u'last_sold_price': u'482625', u'zestimate_amount': u'906887', u'tax_value': u'607600.0', u'zestimate_valuation_range_high': u'952231', u'tax_year': u'2015', u'zestimate_value_change': u'-898', u'latitude': u'42.343257', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59182227', u'last_sold_date': u'11/29/2004', u'year_built': u'1885', u'zestimate_valuationRange_low': u'861543', u'graph_data_link': u'http://www.zillow.com/homedetails/258-Shawmut-Ave-APT-11-Boston-MA-02118/59182227_zpid/#charts-and-data', u'home_size': u'980', u'longitude': u'-71.068563', u'map_this_home_link': u'http://www.zillow.com/homes/59182227_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/258-Shawmut-Ave-APT-11-Boston-MA-02118/59182227_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02121', u'long': -71.08602239999999, u'prices': u'522,250', u'address': u'64 Cheney St, Boston, MA', u'lat': 42.3096773, u'zillow': {u'property_size': u'9147', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'678229', u'tax_value': None, u'zestimate_valuation_range_high': u'712140', u'tax_year': None, u'zestimate_value_change': u'14223', u'latitude': u'42.309574', u'zestimate_percentile': u'0', u'bedrooms': u'6', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2101436253', u'last_sold_date': None, u'year_built': u'1935', u'zestimate_valuationRange_low': u'637535', u'graph_data_link': None, u'home_size': u'4541', u'longitude': u'-71.086112', u'map_this_home_link': u'http://www.zillow.com/homes/2101436253_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/64-Cheney-St-Boston-MA-02121/2101436253_zpid/'}}, {u'status': u'Lot/Land For Sale', u'zip': u'02115', u'long': -71.0992997, u'prices': u'99,000', u'address': u'0 Ward St, Boston, MA', u'lat': 42.3361295, u'zillow': {u'property_size': u'435', u'bathrooms': None, u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.330441', u'zestimate_percentile': u'0', u'bedrooms': None, u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2097337653', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': None, u'longitude': u'-71.055328', u'map_this_home_link': u'http://www.zillow.com/homes/2097337653_zpid/', u'home_type': u'VacantResidentialLand', u'home_detail_link': u'http://www.zillow.com/homedetails/0-Ward-St-Boston-MA-02127/2097337653_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02108', u'long': -71.07201839999999, u'prices': u'1,695,000', u'address': u'91 Beacon St APT 1, Boston, MA', u'lat': 42.3557709, u'zillow': {u'property_size': u'1511', u'bathrooms': u'2.0', u'last_sold_price': u'965000', u'zestimate_amount': u'1765950', u'tax_value': u'1025100.0', u'zestimate_valuation_range_high': u'1871907', u'tax_year': u'2014', u'zestimate_value_change': u'-4330', u'latitude': u'42.355808', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'113389787', u'last_sold_date': u'03/04/2011', u'year_built': u'1890', u'zestimate_valuationRange_low': u'1659993', u'graph_data_link': u'http://www.zillow.com/homedetails/91-Beacon-St-APT-1-Boston-MA-02108/113389787_zpid/#charts-and-data', u'home_size': u'1511', u'longitude': u'-71.072044', u'map_this_home_link': u'http://www.zillow.com/homes/113389787_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/91-Beacon-St-APT-1-Boston-MA-02108/113389787_zpid/'}}, {u'status': u'Co-op For Sale', u'zip': u'02131', u'long': -71.1278083, u'prices': u'185,000', u'address': u'17 Florence St APT 6, Roslindale, MA', u'lat': 42.2849189, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'299943', u'tax_value': None, u'zestimate_valuation_range_high': u'314940', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.28482', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097385742', u'last_sold_date': None, u'year_built': u'1899', u'zestimate_valuationRange_low': u'272948', u'graph_data_link': None, u'home_size': u'740', u'longitude': u'-71.12748', u'map_this_home_link': u'http://www.zillow.com/homes/2097385742_zpid/', u'home_type': u'Cooperative', u'home_detail_link': u'http://www.zillow.com/homedetails/17-Florence-St-APT-6-Roslindale-MA-02131/2097385742_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.1676279, u'prices': u'919,000', u'address': u'257 Temple St, Boston, MA', u'lat': 42.284914, u'zillow': {u'property_size': u'6534', u'bathrooms': u'4.0', u'last_sold_price': u'430000', u'zestimate_amount': u'652151', u'tax_value': u'399700.0', u'zestimate_valuation_range_high': u'717366', u'tax_year': u'2015', u'zestimate_value_change': u'95194', u'latitude': u'42.284914', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59157856', u'last_sold_date': u'01/14/2016', u'year_built': u'1885', u'zestimate_valuationRange_low': u'593457', u'graph_data_link': u'http://www.zillow.com/homedetails/257-Temple-St-Boston-MA-02132/59157856_zpid/#charts-and-data', u'home_size': u'2750', u'longitude': u'-71.167628', u'map_this_home_link': u'http://www.zillow.com/homes/59157856_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/257-Temple-St-Boston-MA-02132/59157856_zpid/'}}, {u'status': u'Coming Soon', u'zip': u'02130', u'long': -71.1062571, u'prices': u'799,900', u'address': u'69 Boylston St, Boston, MA', u'lat': 42.3168896, 'property': {'neighborhood': None, 'bathrooms': '2.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'Great opportunity to get into one of the best sections of Jamaica Plain! Would be ideal for an owner occupant that wants to rent out 1 and live in another or for a condo conversion project.', 'property_size': '2990', 'num_floors': '2', 'heating_system': 'Other', 'photo_gallery': 'http://www.zillow.com/homedetails/69-Boylston-St-Boston-MA-02130/59132387_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': '1984', 'bedrooms': '7', 'latitude': '42.316865', 'zillow_id': '59132387', 'basement': None, 'year_built': '1910', 'home_size': '2740', 'roof': 'Asphalt', 'view': None, 'home_type': 'MultiFamily2To4', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/69-Boylston-St-Boston-MA-02130/59132387_zpid/', 'home_info': 'http://www.zillow.com/homedetails/69-Boylston-St-Boston-MA-02130/59132387_zpid/'}, u'zillow': {u'property_size': u'2990', u'bathrooms': u'2.0', u'last_sold_price': u'660000', u'zestimate_amount': u'812693', u'tax_value': u'420900.0', u'zestimate_valuation_range_high': u'853328', u'tax_year': u'2014', u'zestimate_value_change': u'11422', u'latitude': u'42.316865', u'zestimate_percentile': u'0', u'bedrooms': u'7', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59132387', u'last_sold_date': u'09/09/2016', u'year_built': u'1910', u'zestimate_valuationRange_low': u'772058', u'graph_data_link': u'http://www.zillow.com/homedetails/69-Boylston-St-Boston-MA-02130/59132387_zpid/#charts-and-data', u'home_size': u'2740', u'longitude': u'-71.106286', u'map_this_home_link': u'http://www.zillow.com/homes/59132387_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/69-Boylston-St-Boston-MA-02130/59132387_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.07540209999999, u'prices': u'555,000', u'address': u'31 E Springfield St APT 2, Boston, MA', u'lat': 42.3361701, u'zillow': {u'property_size': u'9997', u'bathrooms': u'1.0', u'last_sold_price': u'535000', u'zestimate_amount': u'562913', u'tax_value': u'334100.0', u'zestimate_valuation_range_high': u'591059', u'tax_year': u'2015', u'zestimate_value_change': u'-1248', u'latitude': u'42.336278', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59183803', u'last_sold_date': u'06/02/2016', u'year_built': u'1899', u'zestimate_valuationRange_low': u'529138', u'graph_data_link': u'http://www.zillow.com/homedetails/31-E-Springfield-St-APT-2-Boston-MA-02118/59183803_zpid/#charts-and-data', u'home_size': u'568', u'longitude': u'-71.075573', u'map_this_home_link': u'http://www.zillow.com/homes/59183803_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/31-E-Springfield-St-APT-2-Boston-MA-02118/59183803_zpid/'}}, {u'status': u'Pre-Foreclosure', u'zip': None, u'long': -1, u'prices': -1, u'address': u'Sign in for details', u'lat': -1}, {u'status': u'Pre-Foreclosure', u'zip': None, u'long': -1, u'prices': -1, u'address': u'Sign in for details', u'lat': -1}, {u'status': u'Pre-Foreclosure (Auction)', u'zip': None, u'long': -1, u'prices': -1, u'address': u'Sign in for details', u'lat': -1}, {u'status': u'House For Sale', u'zip': u'02127', u'long': -71.03309899999999, u'prices': u'799,000', u'address': u'138 M St, South Boston, MA', u'lat': 42.333304, u'zillow': {u'property_size': u'950', u'bathrooms': u'2.0', u'last_sold_price': u'439000', u'zestimate_amount': u'789338', u'tax_value': u'455700.0', u'zestimate_valuation_range_high': u'836698', u'tax_year': u'2014', u'zestimate_value_change': u'20389', u'latitude': u'42.333304', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59150559', u'last_sold_date': u'04/22/2004', u'year_built': u'1870', u'zestimate_valuationRange_low': u'741978', u'graph_data_link': u'http://www.zillow.com/homedetails/138-M-St-South-Boston-MA-02127/59150559_zpid/#charts-and-data', u'home_size': u'1771', u'longitude': u'-71.033099', u'map_this_home_link': u'http://www.zillow.com/homes/59150559_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/138-M-St-South-Boston-MA-02127/59150559_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02114', u'long': -71.0639964, u'prices': u'12,750,000', u'address': u'32 Derne St # 6AB, Boston, MA', u'lat': 42.3594177, u'zillow': {u'property_size': None, u'bathrooms': u'9.0', u'last_sold_price': None, u'zestimate_amount': u'12401945', u'tax_value': None, u'zestimate_valuation_range_high': u'13022042', u'tax_year': None, u'zestimate_value_change': u'-591540', u'latitude': u'42.359406', u'zestimate_percentile': u'0', u'bedrooms': u'6', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2099485920', u'last_sold_date': None, u'year_built': u'1880', u'zestimate_valuationRange_low': u'496078', u'graph_data_link': None, u'home_size': u'6270', u'longitude': u'-71.064142', u'map_this_home_link': u'http://www.zillow.com/homes/2099485920_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/32-Derne-St-6AB-Boston-MA-02114/2099485920_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.0648142, u'prices': u'799,000', u'address': u'40 Fay St UNIT H502, Boston, MA', u'lat': 42.3433672, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'821840', u'tax_value': None, u'zestimate_valuation_range_high': u'862932', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.343418', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096915820', u'last_sold_date': None, u'year_built': u'2006', u'zestimate_valuationRange_low': u'780748', u'graph_data_link': None, u'home_size': u'886', u'longitude': u'-71.06472', u'map_this_home_link': u'http://www.zillow.com/homes/2096915820_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/40-Fay-St-UNIT-H502-Boston-MA-02118/2096915820_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.151016, u'prices': u'575,000', u'address': u'31 Running Brook Rd, Boston, MA', u'lat': 42.264639, u'zillow': {u'property_size': u'6969', u'bathrooms': u'2.0', u'last_sold_price': u'266500', u'zestimate_amount': u'575757', u'tax_value': u'247400.0', u'zestimate_valuation_range_high': u'650605', u'tax_year': u'2015', u'zestimate_value_change': u'-12922', u'latitude': u'42.264635', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59160342', u'last_sold_date': u'01/16/2015', u'year_built': u'1964', u'zestimate_valuationRange_low': u'460606', u'graph_data_link': u'http://www.zillow.com/homedetails/31-Running-Brook-Rd-Boston-MA-02132/59160342_zpid/#charts-and-data', u'home_size': u'1726', u'longitude': u'-71.15102', u'map_this_home_link': u'http://www.zillow.com/homes/59160342_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/31-Running-Brook-Rd-Boston-MA-02132/59160342_zpid/'}}, {u'status': u'Lot/Land For Sale', u'zip': u'02119', u'long': -71.09449099999999, u'prices': u'150,000', u'address': u'9-11 Cedar Park, Boston, MA', u'lat': 42.326906, u'zillow': {u'property_size': u'3920', u'bathrooms': None, u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.326908', u'zestimate_percentile': u'0', u'bedrooms': None, u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2117407728', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': None, u'longitude': u'-71.09449', u'map_this_home_link': u'http://www.zillow.com/homes/2117407728_zpid/', u'home_type': u'VacantResidentialLand', u'home_detail_link': u'http://www.zillow.com/homedetails/9-11-Cedar-Park-Boston-MA-02119/2117407728_zpid/'}}, {u'status': u'Lot/Land For Sale', u'zip': u'02130', u'long': -71.10589139999999, u'prices': u'500,000', u'address': u'87 Forbes St, Boston, MA', u'lat': 42.3199841, u'zillow': {u'property_size': u'3049', u'bathrooms': None, u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.321105', u'zestimate_percentile': u'0', u'bedrooms': None, u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2098003486', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': None, u'longitude': u'-71.106818', u'map_this_home_link': u'http://www.zillow.com/homes/2098003486_zpid/', u'home_type': u'VacantResidentialLand', u'home_detail_link': u'http://www.zillow.com/homedetails/87-Forbes-St-Boston-MA-02130/2098003486_zpid/'}}, {u'status': u'Pre-Foreclosure', u'zip': None, u'long': -1, u'prices': -1, u'address': u'Sign in for details', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02128', u'long': -71.03894919999999, u'prices': u'600,000', u'address': u'349 Meridian St # 2, East Boston, MA', u'lat': 42.3784757, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'513403', u'tax_value': None, u'zestimate_valuation_range_high': u'554475', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.37825', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097399141', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'487733', u'graph_data_link': None, u'home_size': u'1253', u'longitude': u'-71.0391', u'map_this_home_link': u'http://www.zillow.com/homes/2097399141_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/349-Meridian-St-2-East-Boston-MA-02128/2097399141_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02116', u'long': -71.082786, u'prices': u'3,990,000', u'address': u'18 Fairfield St, Boston, MA', u'lat': 42.351437, u'zillow': {u'property_size': u'1306', u'bathrooms': u'5.0', u'last_sold_price': u'1500000', u'zestimate_amount': u'3991654', u'tax_value': u'2693900.0', u'zestimate_valuation_range_high': u'4231153', u'tax_year': u'2014', u'zestimate_value_change': u'42105', u'latitude': u'42.351437', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59170467', u'last_sold_date': u'03/02/2000', u'year_built': u'1870', u'zestimate_valuationRange_low': u'3752155', u'graph_data_link': u'http://www.zillow.com/homedetails/18-Fairfield-St-Boston-MA-02116/59170467_zpid/#charts-and-data', u'home_size': u'4034', u'longitude': u'-71.082786', u'map_this_home_link': u'http://www.zillow.com/homes/59170467_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/18-Fairfield-St-Boston-MA-02116/59170467_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02125', u'long': -71.070089, u'prices': u'389,000', u'address': u'9 Mount Everett St, Dorchester, MA', u'lat': 42.3108379, u'zillow': {u'property_size': u'4356', u'bathrooms': u'2.0', u'last_sold_price': u'2000', u'zestimate_amount': u'457574', u'tax_value': u'248900.0', u'zestimate_valuation_range_high': u'507907', u'tax_year': u'2014', u'zestimate_value_change': u'-36681', u'latitude': u'42.310845', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59104690', u'last_sold_date': u'09/25/1998', u'year_built': u'1880', u'zestimate_valuationRange_low': u'379786', u'graph_data_link': u'http://www.zillow.com/homedetails/9-Mount-Everett-St-Dorchester-MA-02125/59104690_zpid/#charts-and-data', u'home_size': u'3189', u'longitude': u'-71.070092', u'map_this_home_link': u'http://www.zillow.com/homes/59104690_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/9-Mount-Everett-St-Dorchester-MA-02125/59104690_zpid/'}}, {u'status': u'Apartment For Sale', u'zip': u'02118', u'long': -71.078323, u'prices': u'5,850,000', u'address': u'82 Worcester St, Boston, MA', u'lat': 42.3393749, u'zillow': {u'property_size': None, u'bathrooms': u'9.0', u'last_sold_price': None, u'zestimate_amount': u'4596061', u'tax_value': None, u'zestimate_valuation_range_high': u'4825864', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.339374', u'zestimate_percentile': u'0', u'bedrooms': u'9', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2114321238', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'321724', u'graph_data_link': None, u'home_size': u'5865', u'longitude': u'-71.078323', u'map_this_home_link': u'http://www.zillow.com/homes/2114321238_zpid/', u'home_type': u'MultiFamily2To4', u'home_detail_link': u'http://www.zillow.com/homedetails/82-Worcester-St-Boston-MA-02118/2114321238_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02109', u'long': -71.05345319999999, u'prices': u'594,000', u'address': u'81 Richmond St UNIT 2H, Boston, MA', u'lat': 42.3627148, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'390000', u'zestimate_amount': u'604612', u'tax_value': u'386555.0', u'zestimate_valuation_range_high': u'634843', u'tax_year': u'2014', u'zestimate_value_change': u'-11087', u'latitude': u'42.362506', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59164395', u'last_sold_date': u'03/23/2011', u'year_built': u'1890', u'zestimate_valuationRange_low': u'562289', u'graph_data_link': u'http://www.zillow.com/homedetails/81-Richmond-St-UNIT-2H-Boston-MA-02109/59164395_zpid/#charts-and-data', u'home_size': u'676', u'longitude': u'-71.053257', u'map_this_home_link': u'http://www.zillow.com/homes/59164395_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/81-Richmond-St-UNIT-2H-Boston-MA-02109/59164395_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02119', u'long': -71.083063, u'prices': u'375,000', u'address': u'5 Sherman St, Roxbury, MA', u'lat': 42.321342, u'zillow': {u'property_size': u'2613', u'bathrooms': u'2.0', u'last_sold_price': u'55000', u'zestimate_amount': u'433365', u'tax_value': u'287100.0', u'zestimate_valuation_range_high': u'459367', u'tax_year': u'2014', u'zestimate_value_change': u'470', u'latitude': u'42.321344', u'zestimate_percentile': u'0', u'bedrooms': u'6', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59186203', u'last_sold_date': u'01/05/1998', u'year_built': u'1905', u'zestimate_valuationRange_low': u'368360', u'graph_data_link': u'http://www.zillow.com/homedetails/5-Sherman-St-Roxbury-MA-02119/59186203_zpid/#charts-and-data', u'home_size': u'2356', u'longitude': u'-71.08307', u'map_this_home_link': u'http://www.zillow.com/homes/59186203_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/5-Sherman-St-Roxbury-MA-02119/59186203_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02118', u'long': -71.081667, u'prices': u'2,795,000', u'address': u'13 Wellington St, Boston, MA', u'lat': 42.341742, u'zillow': {u'property_size': u'2178', u'bathrooms': u'3.0', u'last_sold_price': u'725000', u'zestimate_amount': u'3157984', u'tax_value': u'2079300.0', u'zestimate_valuation_range_high': u'3315883', u'tax_year': u'2015', u'zestimate_value_change': u'15932', u'latitude': u'42.341742', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59183039', u'last_sold_date': u'07/27/1998', u'year_built': u'1870', u'zestimate_valuationRange_low': u'3000085', u'graph_data_link': u'http://www.zillow.com/homedetails/13-Wellington-St-Boston-MA-02118/59183039_zpid/#charts-and-data', u'home_size': u'3110', u'longitude': u'-71.081667', u'map_this_home_link': u'http://www.zillow.com/homes/59183039_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/13-Wellington-St-Boston-MA-02118/59183039_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.1173642, u'prices': u'349,000', u'address': u'29 Custer St APT 304, Boston, MA', u'lat': 42.3073217, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'166000', u'zestimate_amount': u'359642', u'tax_value': u'212300.0', u'zestimate_valuation_range_high': u'377624', u'tax_year': u'2014', u'zestimate_value_change': u'785', u'latitude': u'42.307268', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59134492', u'last_sold_date': u'12/12/2002', u'year_built': u'1965', u'zestimate_valuationRange_low': u'341660', u'graph_data_link': u'http://www.zillow.com/homedetails/29-Custer-St-APT-304-Boston-MA-02130/59134492_zpid/#charts-and-data', u'home_size': u'720', u'longitude': u'-71.117407', u'map_this_home_link': u'http://www.zillow.com/homes/59134492_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/29-Custer-St-APT-304-Boston-MA-02130/59134492_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0476857, u'prices': u'429,000', u'address': u'77 Old Harbor St UNIT 2, Boston, MA', u'lat': 42.3321924, u'zillow': {u'property_size': u'600', u'bathrooms': u'1.0', u'last_sold_price': u'269000', u'zestimate_amount': u'464389', u'tax_value': u'255100.0', u'zestimate_valuation_range_high': u'501540', u'tax_year': u'2014', u'zestimate_value_change': u'1326', u'latitude': u'42.332195', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'67095754', u'last_sold_date': u'06/13/2008', u'year_built': u'1905', u'zestimate_valuationRange_low': u'441170', u'graph_data_link': u'http://www.zillow.com/homedetails/77-Old-Harbor-St-UNIT-2-Boston-MA-02127/67095754_zpid/#charts-and-data', u'home_size': u'600', u'longitude': u'-71.047691', u'map_this_home_link': u'http://www.zillow.com/homes/67095754_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/77-Old-Harbor-St-UNIT-2-Boston-MA-02127/67095754_zpid/'}}, {u'status': u'Pre-Foreclosure', u'zip': None, u'long': -1, u'prices': -1, u'address': u'Sign in for details', u'lat': -1}, {u'status': u'Pre-Foreclosure', u'zip': None, u'long': -1, u'prices': -1, u'address': u'Sign in for details', u'lat': -1}, {u'status': u'Pre-Foreclosure', u'zip': None, u'long': -1, u'prices': -1, u'address': u'Sign in for details', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.05405100000002, u'prices': u'849,000', u'address': u'321 Dorchester St # 1, Boston, MA', u'lat': 42.331281, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'766387', u'tax_value': None, u'zestimate_valuation_range_high': u'804706', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.33145', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096497652', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'728068', u'graph_data_link': None, u'home_size': u'1400', u'longitude': u'-71.05343', u'map_this_home_link': u'http://www.zillow.com/homes/2096497652_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497652_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02125', u'long': -71.049533, u'prices': u'899,000', u'address': u'54 Grampian Way, Dorchester, MA', u'lat': 42.312072, u'zillow': {u'property_size': u'6534', u'bathrooms': u'2.0', u'last_sold_price': u'197000', u'zestimate_amount': u'769717', u'tax_value': u'499300.0', u'zestimate_valuation_range_high': u'877477', u'tax_year': u'2015', u'zestimate_value_change': u'-25499', u'latitude': u'42.312059', u'zestimate_percentile': u'0', u'bedrooms': u'5', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59113320', u'last_sold_date': u'12/11/1998', u'year_built': u'1885', u'zestimate_valuationRange_low': u'692745', u'graph_data_link': u'http://www.zillow.com/homedetails/54-Grampian-Way-Dorchester-MA-02125/59113320_zpid/#charts-and-data', u'home_size': u'2423', u'longitude': u'-71.049545', u'map_this_home_link': u'http://www.zillow.com/homes/59113320_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/54-Grampian-Way-Dorchester-MA-02125/59113320_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.171084, u'prices': u'849,000', u'address': u'129 Gardner St, Boston, MA', u'lat': 42.277522, u'zillow': {u'property_size': u'6969', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'858867', u'tax_value': None, u'zestimate_valuation_range_high': u'1039229', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.277522', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096677074', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'695682', u'graph_data_link': None, u'home_size': u'2800', u'longitude': u'-71.171084', u'map_this_home_link': u'http://www.zillow.com/homes/2096677074_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/129-Gardner-St-Boston-MA-02132/2096677074_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.1162116, u'prices': u'529,000', u'address': u'7-9 Herbertson # 2, Jamaica Plain, MA', u'lat': 42.2920089, u'zillow': {u'property_size': u'9999', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'595133', u'tax_value': None, u'zestimate_valuation_range_high': u'761770', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.292142', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096675064', u'last_sold_date': None, u'year_built': u'1925', u'zestimate_valuationRange_low': u'458252', u'graph_data_link': None, u'home_size': u'1260', u'longitude': u'-71.116361', u'map_this_home_link': u'http://www.zillow.com/homes/2096675064_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/7-9-Herbertson-2-Jamaica-Plain-MA-02130/2096675064_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.1544114, u'prices': u'739,900', u'address': u'31 Maple St, Boston, MA', u'lat': 42.287886, u'zillow': {u'property_size': u'4356', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'715295', u'tax_value': u'448800.0', u'zestimate_valuation_range_high': u'765366', u'tax_year': u'2014', u'zestimate_value_change': u'1927', u'latitude': u'42.287908', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59155302', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'665224', u'graph_data_link': u'http://www.zillow.com/homedetails/31-Maple-St-Boston-MA-02132/59155302_zpid/#charts-and-data', u'home_size': u'1847', u'longitude': u'-71.154418', u'map_this_home_link': u'http://www.zillow.com/homes/59155302_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/31-Maple-St-Boston-MA-02132/59155302_zpid/'}}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'675,000', u'address': u'255 Northampton St UNIT 501, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'339,900', u'address': u'43 Parkvale Ave APT 5, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'339,000', u'address': u'53 Torrey St # 2, Boston, MA', u'lat': 42.287372, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'New renovation an easy walk to both the Ashmont and Shawmut stops on the red line. This penthouse unit features an open floor plan with oak floors, granite countertops, breakfast bar and stainless steel appliances. Central air and washer dryer hookups as well as storage are included. Private front and back decks as well as a common driveway and large fenced yard all add to the charm. New windows all around a newly renovated exterior, a good deal of new plumbing and wiring with a newer roof make this property an excellent value and an ideal starter home.\\n\\nFirst open house this Sunday 10/9 from 12:00 to 1pm.', 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': '2016', 'bedrooms': '2', 'latitude': '42.287284', 'zillow_id': '2096823174', 'basement': None, 'year_built': '1920', 'home_size': '1000', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/', 'home_info': 'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'386209', u'tax_value': None, u'zestimate_valuation_range_high': u'544555', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.287284', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096823174', u'last_sold_date': None, u'year_built': u'1920', u'zestimate_valuationRange_low': u'254898', u'graph_data_link': None, u'home_size': u'1000', u'longitude': u'-71.073818', u'map_this_home_link': u'http://www.zillow.com/homes/2096823174_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0522682, u'prices': u'479,000', u'address': u'31 Houghton St # 2, Boston, MA', u'lat': 42.2952453, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'471644', u'tax_value': None, u'zestimate_valuation_range_high': u'499943', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.295265', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096881020', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'438629', u'graph_data_link': None, u'home_size': u'1400', u'longitude': u'-71.052066', u'map_this_home_link': u'http://www.zillow.com/homes/2096881020_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/31-Houghton-St-2-Boston-MA-02122/2096881020_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02124', u'long': -71.089551, u'prices': u'284,999', u'address': u'10 Arbutus St, Dorchester Center, MA', u'lat': 42.2879239, u'zillow': {u'property_size': u'2613', u'bathrooms': u'2.0', u'last_sold_price': u'192079', u'zestimate_amount': u'280016', u'tax_value': u'156300.0', u'zestimate_valuation_range_high': u'305217', u'tax_year': u'2014', u'zestimate_value_change': u'4024', u'latitude': u'42.287927', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59102139', u'last_sold_date': u'09/19/2005', u'year_built': u'1991', u'zestimate_valuationRange_low': u'252014', u'graph_data_link': u'http://www.zillow.com/homedetails/10-Arbutus-St-Dorchester-Center-MA-02124/59102139_zpid/#charts-and-data', u'home_size': u'1520', u'longitude': u'-71.089552', u'map_this_home_link': u'http://www.zillow.com/homes/59102139_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/10-Arbutus-St-Dorchester-Center-MA-02124/59102139_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.080952, u'prices': u'399,000', u'address': u'181 Glenway St, Dorchester, MA', u'lat': 42.296947, u'zillow': {u'property_size': u'5662', u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'443293', u'tax_value': u'242000.0', u'zestimate_valuation_range_high': u'469891', u'tax_year': u'2015', u'zestimate_value_change': u'1434', u'latitude': u'42.296947', u'zestimate_percentile': u'0', u'bedrooms': u'5', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59112097', u'last_sold_date': None, u'year_built': u'1890', u'zestimate_valuationRange_low': u'407830', u'graph_data_link': u'http://www.zillow.com/homedetails/181-Glenway-St-Dorchester-MA-02121/59112097_zpid/#charts-and-data', u'home_size': u'2684', u'longitude': u'-71.080952', u'map_this_home_link': u'http://www.zillow.com/homes/59112097_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/181-Glenway-St-Dorchester-MA-02121/59112097_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'345,000', u'address': u'53 Torrey St # 3, Boston, MA', u'lat': 42.287372, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'386209', u'tax_value': None, u'zestimate_valuation_range_high': u'544555', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.287282', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096896512', u'last_sold_date': None, u'year_built': u'1920', u'zestimate_valuationRange_low': u'254898', u'graph_data_link': None, u'home_size': u'1000', u'longitude': u'-71.073797', u'map_this_home_link': u'http://www.zillow.com/homes/2096896512_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0795012, u'prices': u'2,495,000', u'address': u'242 Beacon St APT 6, Boston, MA', u'lat': 42.3536559, u'zillow': {u'property_size': u'2267', u'bathrooms': u'3.0', u'last_sold_price': u'1325000', u'zestimate_amount': u'2826169', u'tax_value': u'1783000.0', u'zestimate_valuation_range_high': u'2995739', u'tax_year': u'2014', u'zestimate_value_change': u'-16709', u'latitude': u'42.353794', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59170501', u'last_sold_date': u'09/09/2009', u'year_built': u'1884', u'zestimate_valuationRange_low': u'2628337', u'graph_data_link': u'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/#charts-and-data', u'home_size': u'2267', u'longitude': u'-71.079593', u'map_this_home_link': u'http://www.zillow.com/homes/59170501_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02132', u'long': -71.1587218, u'prices': u'399,900', u'address': u'23 Goethe St # 2, Boston, MA', u'lat': 42.2565786, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'427574', u'tax_value': None, u'zestimate_valuation_range_high': u'448953', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.256671', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096807696', u'last_sold_date': None, u'year_built': u'1940', u'zestimate_valuationRange_low': u'401920', u'graph_data_link': None, u'home_size': u'1370', u'longitude': u'-71.158866', u'map_this_home_link': u'http://www.zillow.com/homes/2096807696_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/23-Goethe-St-2-Boston-MA-02132/2096807696_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.08661099999999, u'prices': u'599,000', u'address': u'100 Maple St, Boston, MA', u'lat': 42.3075847, u'zillow': {u'property_size': u'7157', u'bathrooms': None, u'last_sold_price': u'3360981', u'zestimate_amount': u'695455', u'tax_value': u'426577.0', u'zestimate_valuation_range_high': u'785864', u'tax_year': u'2015', u'zestimate_value_change': u'-9334', u'latitude': u'42.289875', u'zestimate_percentile': u'0', u'bedrooms': None, u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'90139732', u'last_sold_date': u'02/19/1992', u'year_built': u'1925', u'zestimate_valuationRange_low': u'598091', u'graph_data_link': u'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/#charts-and-data', u'home_size': u'16857', u'longitude': u'-71.156478', u'map_this_home_link': u'http://www.zillow.com/homes/90139732_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.11666129999999, u'prices': u'669,000', u'address': u'801 Centre St # 3C, Boston, MA', u'lat': 42.3092487, u'zillow': {u'property_size': u'1916', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'817363', u'tax_value': None, u'zestimate_valuation_range_high': u'858231', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.30924', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097055956', u'last_sold_date': None, u'year_built': u'1899', u'zestimate_valuationRange_low': u'776495', u'graph_data_link': None, u'home_size': u'1916', u'longitude': u'-71.1166', u'map_this_home_link': u'http://www.zillow.com/homes/2097055956_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/801-Centre-St-3C-Boston-MA-02130/2097055956_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0703915, u'prices': u'1,540,000', u'address': u'505 Tremont St UNIT 417, Boston, MA', u'lat': 42.3450221, u'zillow': {u'property_size': u'1364', u'bathrooms': u'2.0', u'last_sold_price': u'1088000', u'zestimate_amount': u'1678483', u'tax_value': u'1132500.0', u'zestimate_valuation_range_high': u'1896686', u'tax_year': u'2014', u'zestimate_value_change': u'-21974', u'latitude': u'42.345039', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'67710271', u'last_sold_date': u'05/30/2008', u'year_built': u'2004', u'zestimate_valuationRange_low': u'1594559', u'graph_data_link': u'http://www.zillow.com/homedetails/505-Tremont-St-UNIT-417-Boston-MA-02116/67710271_zpid/#charts-and-data', u'home_size': u'1364', u'longitude': u'-71.070299', u'map_this_home_link': u'http://www.zillow.com/homes/67710271_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/505-Tremont-St-UNIT-417-Boston-MA-02116/67710271_zpid/'}}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'389,000', u'address': u'16 Chelmsford St UNIT 2, Dorchester, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'399,500', u'address': u'1391 Hyde Park Ave STE G, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'1,300,000', u'address': u'1 Franklin St # 1601, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'479,000', u'address': u'29 Houghton St # 1, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0559853, u'prices': u'875,000', u'address': u'28 Woodward St # 1, Boston, MA', u'lat': 42.3314431, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'899088', u'tax_value': None, u'zestimate_valuation_range_high': u'1123860', u'tax_year': None, u'zestimate_value_change': u'-17891', u'latitude': u'42.331474', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2107330626', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'674316', u'graph_data_link': None, u'home_size': u'1700', u'longitude': u'-71.055931', u'map_this_home_link': u'http://www.zillow.com/homes/2107330626_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/28-Woodward-St-1-Boston-MA-02127/2107330626_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02131', u'long': -71.1230212, u'prices': u'549,500', u'address': u'12 Mosgrove Ave, Boston, MA', u'lat': 42.2919334, u'zillow': {u'property_size': u'5530', u'bathrooms': u'2.0', u'last_sold_price': u'250000', u'zestimate_amount': u'621969', u'tax_value': u'382100.0', u'zestimate_valuation_range_high': u'653067', u'tax_year': u'2014', u'zestimate_value_change': u'-8375', u'latitude': u'42.291848', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59144888', u'last_sold_date': u'02/25/2015', u'year_built': u'1901', u'zestimate_valuationRange_low': u'590871', u'graph_data_link': u'http://www.zillow.com/homedetails/12-Mosgrove-Ave-Boston-MA-02131/59144888_zpid/#charts-and-data', u'home_size': u'1950', u'longitude': u'-71.123093', u'map_this_home_link': u'http://www.zillow.com/homes/59144888_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/12-Mosgrove-Ave-Boston-MA-02131/59144888_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0446874, u'prices': u'769,000', u'address': u'235 Victory Rd UNIT 235, Quincy, MA', u'lat': 42.2994295, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'474680', u'zestimate_amount': u'787351', u'tax_value': u'630200.0', u'zestimate_valuation_range_high': u'826719', u'tax_year': u'2014', u'zestimate_value_change': u'7402', u'latitude': u'42.299416', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'56605009', u'last_sold_date': u'11/24/1999', u'year_built': u'1999', u'zestimate_valuationRange_low': u'747983', u'graph_data_link': u'http://www.zillow.com/homedetails/235-Victory-Rd-UNIT-235-Quincy-MA-02171/56605009_zpid/#charts-and-data', u'home_size': u'2286', u'longitude': u'-71.044724', u'map_this_home_link': u'http://www.zillow.com/homes/56605009_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/235-Victory-Rd-UNIT-235-Quincy-MA-02171/56605009_zpid/'}}, {u'status': u'For Sale by Owner', u'zip': u'02134', u'long': -71.131332, u'prices': u'549,000', u'address': u'29 Brainerd Rd, Boston, MA', u'lat': 42.3486087, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'420929', u'tax_value': None, u'zestimate_valuation_range_high': u'446185', u'tax_year': None, u'zestimate_value_change': u'16295', u'latitude': u'42.34912', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097576158', u'last_sold_date': None, u'year_built': u'1904', u'zestimate_valuationRange_low': u'378836', u'graph_data_link': None, u'home_size': u'850', u'longitude': u'-71.13047', u'map_this_home_link': u'http://www.zillow.com/homes/2097576158_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/29-Brainerd-Rd-Boston-MA-02134/2097576158_zpid/'}}, {u'status': u'Townhouse For Sale', u'zip': u'02130', u'long': -71.1157648, u'prices': u'749,000', u'address': u'5 Atwood Sq # 5, Boston, MA', u'lat': 42.3072151, u'zillow': {u'property_size': None, u'bathrooms': u'2.5', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.307212', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096375498', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'1603', u'longitude': u'-71.115613', u'map_this_home_link': u'http://www.zillow.com/homes/2096375498_zpid/', u'home_type': u'Townhouse', u'home_detail_link': u'http://www.zillow.com/homedetails/5-Atwood-Sq-5-Boston-MA-02130/2096375498_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.05405100000002, u'prices': u'849,000', u'address': u'321 Dorchester St # 1, Boston, MA', u'lat': 42.331281, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'925305', u'tax_value': None, u'zestimate_valuation_range_high': u'971570', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.33145', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096497571', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'879040', u'graph_data_link': None, u'home_size': u'2400', u'longitude': u'-71.05343', u'map_this_home_link': u'http://www.zillow.com/homes/2096497571_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497571_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02125', u'long': -71.049533, u'prices': u'899,000', u'address': u'54 Grampian Way, Dorchester, MA', u'lat': 42.312072, u'zillow': {u'property_size': u'6534', u'bathrooms': u'2.0', u'last_sold_price': u'197000', u'zestimate_amount': u'769717', u'tax_value': u'499300.0', u'zestimate_valuation_range_high': u'877477', u'tax_year': u'2015', u'zestimate_value_change': u'-25499', u'latitude': u'42.312059', u'zestimate_percentile': u'0', u'bedrooms': u'5', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59113320', u'last_sold_date': u'12/11/1998', u'year_built': u'1885', u'zestimate_valuationRange_low': u'692745', u'graph_data_link': u'http://www.zillow.com/homedetails/54-Grampian-Way-Dorchester-MA-02125/59113320_zpid/#charts-and-data', u'home_size': u'2423', u'longitude': u'-71.049545', u'map_this_home_link': u'http://www.zillow.com/homes/59113320_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/54-Grampian-Way-Dorchester-MA-02125/59113320_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.171084, u'prices': u'849,000', u'address': u'129 Gardner St, Boston, MA', u'lat': 42.277522, u'zillow': {u'property_size': u'6969', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'858867', u'tax_value': None, u'zestimate_valuation_range_high': u'1039229', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.277522', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096677074', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'695682', u'graph_data_link': None, u'home_size': u'2800', u'longitude': u'-71.171084', u'map_this_home_link': u'http://www.zillow.com/homes/2096677074_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/129-Gardner-St-Boston-MA-02132/2096677074_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.1162116, u'prices': u'529,000', u'address': u'7-9 Herbertson # 2, Jamaica Plain, MA', u'lat': 42.2920089, u'zillow': {u'property_size': u'9999', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'595133', u'tax_value': None, u'zestimate_valuation_range_high': u'761770', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.292142', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096675064', u'last_sold_date': None, u'year_built': u'1925', u'zestimate_valuationRange_low': u'458252', u'graph_data_link': None, u'home_size': u'1260', u'longitude': u'-71.116361', u'map_this_home_link': u'http://www.zillow.com/homes/2096675064_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/7-9-Herbertson-2-Jamaica-Plain-MA-02130/2096675064_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.1544114, u'prices': u'739,900', u'address': u'31 Maple St, Boston, MA', u'lat': 42.287886, u'zillow': {u'property_size': u'4356', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'715295', u'tax_value': u'448800.0', u'zestimate_valuation_range_high': u'765366', u'tax_year': u'2014', u'zestimate_value_change': u'1927', u'latitude': u'42.287908', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59155302', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'665224', u'graph_data_link': u'http://www.zillow.com/homedetails/31-Maple-St-Boston-MA-02132/59155302_zpid/#charts-and-data', u'home_size': u'1847', u'longitude': u'-71.154418', u'map_this_home_link': u'http://www.zillow.com/homes/59155302_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/31-Maple-St-Boston-MA-02132/59155302_zpid/'}}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'675,000', u'address': u'255 Northampton St UNIT 501, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'339,900', u'address': u'43 Parkvale Ave APT 5, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'339,000', u'address': u'53 Torrey St # 2, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0522682, u'prices': u'479,000', u'address': u'31 Houghton St # 2, Boston, MA', u'lat': 42.2952453, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'471644', u'tax_value': None, u'zestimate_valuation_range_high': u'499943', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.295265', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096881020', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'438629', u'graph_data_link': None, u'home_size': u'1400', u'longitude': u'-71.052066', u'map_this_home_link': u'http://www.zillow.com/homes/2096881020_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/31-Houghton-St-2-Boston-MA-02122/2096881020_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02124', u'long': -71.089551, u'prices': u'284,999', u'address': u'10 Arbutus St, Dorchester Center, MA', u'lat': 42.2879239, u'zillow': {u'property_size': u'2613', u'bathrooms': u'2.0', u'last_sold_price': u'192079', u'zestimate_amount': u'280016', u'tax_value': u'156300.0', u'zestimate_valuation_range_high': u'305217', u'tax_year': u'2014', u'zestimate_value_change': u'4024', u'latitude': u'42.287927', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59102139', u'last_sold_date': u'09/19/2005', u'year_built': u'1991', u'zestimate_valuationRange_low': u'252014', u'graph_data_link': u'http://www.zillow.com/homedetails/10-Arbutus-St-Dorchester-Center-MA-02124/59102139_zpid/#charts-and-data', u'home_size': u'1520', u'longitude': u'-71.089552', u'map_this_home_link': u'http://www.zillow.com/homes/59102139_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/10-Arbutus-St-Dorchester-Center-MA-02124/59102139_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.080952, u'prices': u'399,000', u'address': u'181 Glenway St, Dorchester, MA', u'lat': 42.296947, u'zillow': {u'property_size': u'5662', u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'443293', u'tax_value': u'242000.0', u'zestimate_valuation_range_high': u'469891', u'tax_year': u'2015', u'zestimate_value_change': u'1434', u'latitude': u'42.296947', u'zestimate_percentile': u'0', u'bedrooms': u'5', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59112097', u'last_sold_date': None, u'year_built': u'1890', u'zestimate_valuationRange_low': u'407830', u'graph_data_link': u'http://www.zillow.com/homedetails/181-Glenway-St-Dorchester-MA-02121/59112097_zpid/#charts-and-data', u'home_size': u'2684', u'longitude': u'-71.080952', u'map_this_home_link': u'http://www.zillow.com/homes/59112097_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/181-Glenway-St-Dorchester-MA-02121/59112097_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'345,000', u'address': u'53 Torrey St # 3, Boston, MA', u'lat': 42.287372, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'New renovation an easy walk to both the Ashmont and Shawmut stops on the red line. This penthouse unit features an open floor plan with oak floors, granite countertops, breakfast bar and stainless steel appliances. Central air and washer dryer hookups as well as storage are included. Private front and back decks as well as a common driveway and large fenced yard all add to the charm. New windows all around a newly renovated exterior, a good deal of new plumbing and wiring with a newer roof make this property an excellent value and an ideal starter home.', 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': '2016', 'bedrooms': '2', 'latitude': '42.287282', 'zillow_id': '2096896512', 'basement': None, 'year_built': '1920', 'home_size': '1000', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/', 'home_info': 'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'386209', u'tax_value': None, u'zestimate_valuation_range_high': u'544555', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.287282', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096896512', u'last_sold_date': None, u'year_built': u'1920', u'zestimate_valuationRange_low': u'254898', u'graph_data_link': None, u'home_size': u'1000', u'longitude': u'-71.073797', u'map_this_home_link': u'http://www.zillow.com/homes/2096896512_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0795012, u'prices': u'2,495,000', u'address': u'242 Beacon St APT 6, Boston, MA', u'lat': 42.3536559, 'property': {'neighborhood': 'Back Bay', 'bathrooms': '3.0', 'school_district': None, 'heating_sources': 'Other', 'rooms': 'Dining room, Family room, Laundry room, Master bath', 'home_description': 'Waterside renovated three bedroom, two and a half bathroom floor-through condominium. Direct elevator access. Exceptionally well laid-out home featuring a grand living room with fireplace and bow window overlooking the Charles River Esplanade. Large galley offers a breakfast bar and sliding doors to the balcony. Elegant master bedroom suite boasts a bow window and marble fireplace. Central air-conditioning, new bathrooms, well-sized second and third bedrooms. Excellent closet space and ceiling height throughout. Association parking with direct access. 1 Year pre-paid parking will be offered with the sale. Well maintained brownstone that just completed a total restoration. Any idyllic Boston home! ', 'property_size': '2267', 'num_floors': '1', 'heating_system': 'Other', 'photo_gallery': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood', 'year_updated': '2007', 'bedrooms': '3', 'latitude': '42.353794', 'zillow_id': '59170501', 'basement': 'None', 'year_built': '1884', 'home_size': '2267', 'roof': None, 'view': 'City, Water', 'home_type': 'Condominium', 'parking_type': 'Off-street, On-street', 'home_detail_link': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/', 'home_info': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/'}, u'zillow': {u'property_size': u'2267', u'bathrooms': u'3.0', u'last_sold_price': u'1325000', u'zestimate_amount': u'2826169', u'tax_value': u'1783000.0', u'zestimate_valuation_range_high': u'2995739', u'tax_year': u'2014', u'zestimate_value_change': u'-16709', u'latitude': u'42.353794', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59170501', u'last_sold_date': u'09/09/2009', u'year_built': u'1884', u'zestimate_valuationRange_low': u'2628337', u'graph_data_link': u'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/#charts-and-data', u'home_size': u'2267', u'longitude': u'-71.079593', u'map_this_home_link': u'http://www.zillow.com/homes/59170501_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02132', u'long': -71.1587218, u'prices': u'399,900', u'address': u'23 Goethe St # 2, Boston, MA', u'lat': 42.2565786, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'427574', u'tax_value': None, u'zestimate_valuation_range_high': u'448953', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.256671', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096807696', u'last_sold_date': None, u'year_built': u'1940', u'zestimate_valuationRange_low': u'401920', u'graph_data_link': None, u'home_size': u'1370', u'longitude': u'-71.158866', u'map_this_home_link': u'http://www.zillow.com/homes/2096807696_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/23-Goethe-St-2-Boston-MA-02132/2096807696_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.08661099999999, u'prices': u'599,000', u'address': u'100 Maple St, Boston, MA', u'lat': 42.3075847, u'zillow': {u'property_size': u'7157', u'bathrooms': None, u'last_sold_price': u'3360981', u'zestimate_amount': u'695455', u'tax_value': u'426577.0', u'zestimate_valuation_range_high': u'785864', u'tax_year': u'2015', u'zestimate_value_change': u'-9334', u'latitude': u'42.289875', u'zestimate_percentile': u'0', u'bedrooms': None, u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'90139732', u'last_sold_date': u'02/19/1992', u'year_built': u'1925', u'zestimate_valuationRange_low': u'598091', u'graph_data_link': u'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/#charts-and-data', u'home_size': u'16857', u'longitude': u'-71.156478', u'map_this_home_link': u'http://www.zillow.com/homes/90139732_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.11666129999999, u'prices': u'669,000', u'address': u'801 Centre St # 3C, Boston, MA', u'lat': 42.3092487, u'zillow': {u'property_size': u'1916', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'817363', u'tax_value': None, u'zestimate_valuation_range_high': u'858231', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.30924', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097055956', u'last_sold_date': None, u'year_built': u'1899', u'zestimate_valuationRange_low': u'776495', u'graph_data_link': None, u'home_size': u'1916', u'longitude': u'-71.1166', u'map_this_home_link': u'http://www.zillow.com/homes/2097055956_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/801-Centre-St-3C-Boston-MA-02130/2097055956_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0703915, u'prices': u'1,540,000', u'address': u'505 Tremont St UNIT 417, Boston, MA', u'lat': 42.3450221, u'zillow': {u'property_size': u'1364', u'bathrooms': u'2.0', u'last_sold_price': u'1088000', u'zestimate_amount': u'1678483', u'tax_value': u'1132500.0', u'zestimate_valuation_range_high': u'1896686', u'tax_year': u'2014', u'zestimate_value_change': u'-21974', u'latitude': u'42.345039', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'67710271', u'last_sold_date': u'05/30/2008', u'year_built': u'2004', u'zestimate_valuationRange_low': u'1594559', u'graph_data_link': u'http://www.zillow.com/homedetails/505-Tremont-St-UNIT-417-Boston-MA-02116/67710271_zpid/#charts-and-data', u'home_size': u'1364', u'longitude': u'-71.070299', u'map_this_home_link': u'http://www.zillow.com/homes/67710271_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/505-Tremont-St-UNIT-417-Boston-MA-02116/67710271_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0540671, u'prices': u'389,000', u'address': u'16 Chelmsford St UNIT 2, Dorchester, MA', u'lat': 42.284953, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'261000', u'zestimate_amount': u'381960', u'tax_value': u'212600.0', u'zestimate_valuation_range_high': u'401058', u'tax_year': u'2014', u'zestimate_value_change': u'6502', u'latitude': u'42.28495', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81854555', u'last_sold_date': u'07/11/2006', u'year_built': u'1905', u'zestimate_valuationRange_low': u'362862', u'graph_data_link': u'http://www.zillow.com/homedetails/16-Chelmsford-St-UNIT-2-Dorchester-MA-02122/81854555_zpid/#charts-and-data', u'home_size': u'1061', u'longitude': u'-71.054061', u'map_this_home_link': u'http://www.zillow.com/homes/81854555_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/16-Chelmsford-St-UNIT-2-Dorchester-MA-02122/81854555_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02136', u'long': -71.12602799999999, u'prices': u'399,500', u'address': u'1391 Hyde Park Ave STE G, Boston, MA', u'lat': 42.2511409, u'zillow': {u'property_size': u'3484', u'bathrooms': u'1.0', u'last_sold_price': u'310000', u'zestimate_amount': u'399402', u'tax_value': u'450000.0', u'zestimate_valuation_range_high': u'463306', u'tax_year': u'2014', u'zestimate_value_change': u'-12511', u'latitude': u'42.250944', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81855097', u'last_sold_date': u'03/17/2014', u'year_built': u'1950', u'zestimate_valuationRange_low': u'343486', u'graph_data_link': u'http://www.zillow.com/homedetails/1391-Hyde-Park-Ave-STE-G-Boston-MA-02136/81855097_zpid/#charts-and-data', u'home_size': u'1570', u'longitude': u'-71.125871', u'map_this_home_link': u'http://www.zillow.com/homes/81855097_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1391-Hyde-Park-Ave-STE-G-Boston-MA-02136/81855097_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02108', u'long': -71.05945, u'prices': u'1,300,000', u'address': u'1 Franklin St # 1601, Boston, MA', u'lat': 42.35631, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': \"Gorgeous One Bedroom at Millennium Towers! Towering above the adjacent building, allowing for expansive views of The State House and the Back Bay. A state of the art luxury living at it's best! Private screening room, Residents Only Restaurant and Lounge, Indoor swimming pool with a Miami style flair and Jacuzzi. One of a kind Fitness Center featuring a Boxing Club, Pilates/Yoga Studio/Cycling to name a few. Adjacent to the renovated historic Burnham Building, Millennium Tower will stand at the center of a reinvigorated downtown Boston, home to vibrant retail, and a new Roche Bros. gourmet grocery. Come see why Millennium Tower Boston is the evolution of luxury residential living.\", 'property_size': None, 'num_floors': None, 'heating_system': 'Forced air', 'photo_gallery': 'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Carpet, Hardwood', 'year_updated': None, 'bedrooms': '1', 'latitude': '42.355785', 'zillow_id': '2097180167', 'basement': None, 'year_built': '2016', 'home_size': '923', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/', 'home_info': 'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'945000', u'zestimate_amount': u'1175611', u'tax_value': None, u'zestimate_valuation_range_high': u'1493026', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.355785', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097180167', u'last_sold_date': u'09/15/2016', u'year_built': u'2016', u'zestimate_valuationRange_low': u'846440', u'graph_data_link': None, u'home_size': u'923', u'longitude': u'-71.059526', u'map_this_home_link': u'http://www.zillow.com/homes/2097180167_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0522963, u'prices': u'479,000', u'address': u'29 Houghton St # 1, Boston, MA', u'lat': 42.295264, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'472901', u'tax_value': None, u'zestimate_valuation_range_high': u'501275', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.295223', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096881071', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'439798', u'graph_data_link': None, u'home_size': u'1400', u'longitude': u'-71.052345', u'map_this_home_link': u'http://www.zillow.com/homes/2096881071_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/29-Houghton-St-1-Boston-MA-02122/2096881071_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0559853, u'prices': u'875,000', u'address': u'28 Woodward St # 1, Boston, MA', u'lat': 42.3314431, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'899088', u'tax_value': None, u'zestimate_valuation_range_high': u'1123860', u'tax_year': None, u'zestimate_value_change': u'-17891', u'latitude': u'42.331474', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2107330626', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'674316', u'graph_data_link': None, u'home_size': u'1700', u'longitude': u'-71.055931', u'map_this_home_link': u'http://www.zillow.com/homes/2107330626_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/28-Woodward-St-1-Boston-MA-02127/2107330626_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02131', u'long': -71.1230212, u'prices': u'549,500', u'address': u'12 Mosgrove Ave, Boston, MA', u'lat': 42.2919334, u'zillow': {u'property_size': u'5530', u'bathrooms': u'2.0', u'last_sold_price': u'250000', u'zestimate_amount': u'621969', u'tax_value': u'382100.0', u'zestimate_valuation_range_high': u'653067', u'tax_year': u'2014', u'zestimate_value_change': u'-8375', u'latitude': u'42.291848', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59144888', u'last_sold_date': u'02/25/2015', u'year_built': u'1901', u'zestimate_valuationRange_low': u'590871', u'graph_data_link': u'http://www.zillow.com/homedetails/12-Mosgrove-Ave-Boston-MA-02131/59144888_zpid/#charts-and-data', u'home_size': u'1950', u'longitude': u'-71.123093', u'map_this_home_link': u'http://www.zillow.com/homes/59144888_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/12-Mosgrove-Ave-Boston-MA-02131/59144888_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0446874, u'prices': u'769,000', u'address': u'235 Victory Rd UNIT 235, Quincy, MA', u'lat': 42.2994295, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'474680', u'zestimate_amount': u'787351', u'tax_value': u'630200.0', u'zestimate_valuation_range_high': u'826719', u'tax_year': u'2014', u'zestimate_value_change': u'7402', u'latitude': u'42.299416', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'56605009', u'last_sold_date': u'11/24/1999', u'year_built': u'1999', u'zestimate_valuationRange_low': u'747983', u'graph_data_link': u'http://www.zillow.com/homedetails/235-Victory-Rd-UNIT-235-Quincy-MA-02171/56605009_zpid/#charts-and-data', u'home_size': u'2286', u'longitude': u'-71.044724', u'map_this_home_link': u'http://www.zillow.com/homes/56605009_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/235-Victory-Rd-UNIT-235-Quincy-MA-02171/56605009_zpid/'}}, {u'status': u'For Sale by Owner', u'zip': u'02134', u'long': -71.131332, u'prices': u'549,000', u'address': u'29 Brainerd Rd, Boston, MA', u'lat': 42.3486087, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'420929', u'tax_value': None, u'zestimate_valuation_range_high': u'446185', u'tax_year': None, u'zestimate_value_change': u'16295', u'latitude': u'42.34912', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097576158', u'last_sold_date': None, u'year_built': u'1904', u'zestimate_valuationRange_low': u'378836', u'graph_data_link': None, u'home_size': u'850', u'longitude': u'-71.13047', u'map_this_home_link': u'http://www.zillow.com/homes/2097576158_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/29-Brainerd-Rd-Boston-MA-02134/2097576158_zpid/'}}, {u'status': u'Townhouse For Sale', u'zip': u'02130', u'long': -71.1157648, u'prices': u'749,000', u'address': u'5 Atwood Sq # 5, Boston, MA', u'lat': 42.3072151, u'zillow': {u'property_size': None, u'bathrooms': u'2.5', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.307212', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096375498', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'1603', u'longitude': u'-71.115613', u'map_this_home_link': u'http://www.zillow.com/homes/2096375498_zpid/', u'home_type': u'Townhouse', u'home_detail_link': u'http://www.zillow.com/homedetails/5-Atwood-Sq-5-Boston-MA-02130/2096375498_zpid/'}}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'849,000', u'address': u'321 Dorchester St # 1, Boston, MA', u'lat': -1}, {u'status': u'House For Sale', u'zip': None, u'long': -1, u'prices': u'899,000', u'address': u'54 Grampian Way, Dorchester, MA', u'lat': -1}, {u'status': u'House For Sale', u'zip': None, u'long': -71.171084, u'prices': u'849,000', u'address': u'129 Gardner St, Boston, MA', u'lat': 42.277522}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.1162116, u'prices': u'529,000', u'address': u'7-9 Herbertson # 2, Jamaica Plain, MA', u'lat': 42.2920089, u'zillow': {u'property_size': u'9999', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'595133', u'tax_value': None, u'zestimate_valuation_range_high': u'761770', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.292142', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096675064', u'last_sold_date': None, u'year_built': u'1925', u'zestimate_valuationRange_low': u'458252', u'graph_data_link': None, u'home_size': u'1260', u'longitude': u'-71.116361', u'map_this_home_link': u'http://www.zillow.com/homes/2096675064_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/7-9-Herbertson-2-Jamaica-Plain-MA-02130/2096675064_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.1544114, u'prices': u'739,900', u'address': u'31 Maple St, Boston, MA', u'lat': 42.287886, u'zillow': {u'property_size': u'4356', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'715295', u'tax_value': u'448800.0', u'zestimate_valuation_range_high': u'765366', u'tax_year': u'2014', u'zestimate_value_change': u'1927', u'latitude': u'42.287908', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59155302', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'665224', u'graph_data_link': u'http://www.zillow.com/homedetails/31-Maple-St-Boston-MA-02132/59155302_zpid/#charts-and-data', u'home_size': u'1847', u'longitude': u'-71.154418', u'map_this_home_link': u'http://www.zillow.com/homes/59155302_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/31-Maple-St-Boston-MA-02132/59155302_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.0814012, u'prices': u'675,000', u'address': u'255 Northampton St UNIT 501, Boston, MA', u'lat': 42.3394238, u'zillow': {u'property_size': u'1057', u'bathrooms': u'1.0', u'last_sold_price': u'475000', u'zestimate_amount': u'782221', u'tax_value': u'509100.0', u'zestimate_valuation_range_high': u'821332', u'tax_year': u'2014', u'zestimate_value_change': u'-38684', u'latitude': u'42.339385', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'87796106', u'last_sold_date': u'09/03/2010', u'year_built': u'2006', u'zestimate_valuationRange_low': u'743110', u'graph_data_link': u'http://www.zillow.com/homedetails/255-Northampton-St-UNIT-501-Boston-MA-02118/87796106_zpid/#charts-and-data', u'home_size': u'1057', u'longitude': u'-71.081382', u'map_this_home_link': u'http://www.zillow.com/homes/87796106_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/255-Northampton-St-UNIT-501-Boston-MA-02118/87796106_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02134', u'long': -71.1329925, u'prices': u'339,900', u'address': u'43 Parkvale Ave APT 5, Boston, MA', u'lat': 42.3523208, u'zillow': {u'property_size': u'578', u'bathrooms': u'1.0', u'last_sold_price': u'197000', u'zestimate_amount': u'343185', u'tax_value': u'183100.0', u'zestimate_valuation_range_high': u'360344', u'tax_year': u'2014', u'zestimate_value_change': None, u'latitude': u'42.351999', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59088144', u'last_sold_date': u'08/31/2006', u'year_built': u'1910', u'zestimate_valuationRange_low': u'326026', u'graph_data_link': u'http://www.zillow.com/homedetails/43-Parkvale-Ave-APT-5-Boston-MA-02134/59088144_zpid/#charts-and-data', u'home_size': u'578', u'longitude': u'-71.133272', u'map_this_home_link': u'http://www.zillow.com/homes/59088144_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/43-Parkvale-Ave-APT-5-Boston-MA-02134/59088144_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'339,000', u'address': u'53 Torrey St # 2, Boston, MA', u'lat': 42.287372, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'New renovation an easy walk to both the Ashmont and Shawmut stops on the red line. This penthouse unit features an open floor plan with oak floors, granite countertops, breakfast bar and stainless steel appliances. Central air and washer dryer hookups as well as storage are included. Private front and back decks as well as a common driveway and large fenced yard all add to the charm. New windows all around a newly renovated exterior, a good deal of new plumbing and wiring with a newer roof make this property an excellent value and an ideal starter home.\\n\\nFirst open house this Sunday 10/9 from 12:00 to 1pm.', 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': '2016', 'bedrooms': '2', 'latitude': '42.287284', 'zillow_id': '2096823174', 'basement': None, 'year_built': '1920', 'home_size': '1000', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/', 'home_info': 'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'386209', u'tax_value': None, u'zestimate_valuation_range_high': u'544555', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.287284', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096823174', u'last_sold_date': None, u'year_built': u'1920', u'zestimate_valuationRange_low': u'254898', u'graph_data_link': None, u'home_size': u'1000', u'longitude': u'-71.073818', u'map_this_home_link': u'http://www.zillow.com/homes/2096823174_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0522682, u'prices': u'479,000', u'address': u'31 Houghton St # 2, Boston, MA', u'lat': 42.2952453, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'471644', u'tax_value': None, u'zestimate_valuation_range_high': u'499943', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.295265', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096881020', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'438629', u'graph_data_link': None, u'home_size': u'1400', u'longitude': u'-71.052066', u'map_this_home_link': u'http://www.zillow.com/homes/2096881020_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/31-Houghton-St-2-Boston-MA-02122/2096881020_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02124', u'long': -71.089551, u'prices': u'284,999', u'address': u'10 Arbutus St, Dorchester Center, MA', u'lat': 42.2879239, u'zillow': {u'property_size': u'2613', u'bathrooms': u'2.0', u'last_sold_price': u'192079', u'zestimate_amount': u'280016', u'tax_value': u'156300.0', u'zestimate_valuation_range_high': u'305217', u'tax_year': u'2014', u'zestimate_value_change': u'4024', u'latitude': u'42.287927', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59102139', u'last_sold_date': u'09/19/2005', u'year_built': u'1991', u'zestimate_valuationRange_low': u'252014', u'graph_data_link': u'http://www.zillow.com/homedetails/10-Arbutus-St-Dorchester-Center-MA-02124/59102139_zpid/#charts-and-data', u'home_size': u'1520', u'longitude': u'-71.089552', u'map_this_home_link': u'http://www.zillow.com/homes/59102139_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/10-Arbutus-St-Dorchester-Center-MA-02124/59102139_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.080952, u'prices': u'399,000', u'address': u'181 Glenway St, Dorchester, MA', u'lat': 42.296947, u'zillow': {u'property_size': u'5662', u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'443293', u'tax_value': u'242000.0', u'zestimate_valuation_range_high': u'469891', u'tax_year': u'2015', u'zestimate_value_change': u'1434', u'latitude': u'42.296947', u'zestimate_percentile': u'0', u'bedrooms': u'5', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59112097', u'last_sold_date': None, u'year_built': u'1890', u'zestimate_valuationRange_low': u'407830', u'graph_data_link': u'http://www.zillow.com/homedetails/181-Glenway-St-Dorchester-MA-02121/59112097_zpid/#charts-and-data', u'home_size': u'2684', u'longitude': u'-71.080952', u'map_this_home_link': u'http://www.zillow.com/homes/59112097_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/181-Glenway-St-Dorchester-MA-02121/59112097_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'345,000', u'address': u'53 Torrey St # 3, Boston, MA', u'lat': 42.287372, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'New renovation an easy walk to both the Ashmont and Shawmut stops on the red line. This penthouse unit features an open floor plan with oak floors, granite countertops, breakfast bar and stainless steel appliances. Central air and washer dryer hookups as well as storage are included. Private front and back decks as well as a common driveway and large fenced yard all add to the charm. New windows all around a newly renovated exterior, a good deal of new plumbing and wiring with a newer roof make this property an excellent value and an ideal starter home.', 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': '2016', 'bedrooms': '2', 'latitude': '42.287282', 'zillow_id': '2096896512', 'basement': None, 'year_built': '1920', 'home_size': '1000', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/', 'home_info': 'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'386209', u'tax_value': None, u'zestimate_valuation_range_high': u'544555', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.287282', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096896512', u'last_sold_date': None, u'year_built': u'1920', u'zestimate_valuationRange_low': u'254898', u'graph_data_link': None, u'home_size': u'1000', u'longitude': u'-71.073797', u'map_this_home_link': u'http://www.zillow.com/homes/2096896512_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0795012, u'prices': u'2,495,000', u'address': u'242 Beacon St APT 6, Boston, MA', u'lat': 42.3536559, u'zillow': {u'property_size': u'2267', u'bathrooms': u'3.0', u'last_sold_price': u'1325000', u'zestimate_amount': u'2826169', u'tax_value': u'1783000.0', u'zestimate_valuation_range_high': u'2995739', u'tax_year': u'2014', u'zestimate_value_change': u'-16709', u'latitude': u'42.353794', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59170501', u'last_sold_date': u'09/09/2009', u'year_built': u'1884', u'zestimate_valuationRange_low': u'2628337', u'graph_data_link': u'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/#charts-and-data', u'home_size': u'2267', u'longitude': u'-71.079593', u'map_this_home_link': u'http://www.zillow.com/homes/59170501_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/'}}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'399,900', u'address': u'23 Goethe St # 2, Boston, MA', u'lat': -1}, {u'status': u'House For Sale', u'zip': None, u'long': -1, u'prices': u'599,000', u'address': u'100 Maple St, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'669,000', u'address': u'801 Centre St # 3C, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0703915, u'prices': u'1,540,000', u'address': u'505 Tremont St UNIT 417, Boston, MA', u'lat': 42.3450221, u'zillow': {u'property_size': u'1364', u'bathrooms': u'2.0', u'last_sold_price': u'1088000', u'zestimate_amount': u'1678483', u'tax_value': u'1132500.0', u'zestimate_valuation_range_high': u'1896686', u'tax_year': u'2014', u'zestimate_value_change': u'-21974', u'latitude': u'42.345039', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'67710271', u'last_sold_date': u'05/30/2008', u'year_built': u'2004', u'zestimate_valuationRange_low': u'1594559', u'graph_data_link': u'http://www.zillow.com/homedetails/505-Tremont-St-UNIT-417-Boston-MA-02116/67710271_zpid/#charts-and-data', u'home_size': u'1364', u'longitude': u'-71.070299', u'map_this_home_link': u'http://www.zillow.com/homes/67710271_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/505-Tremont-St-UNIT-417-Boston-MA-02116/67710271_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0540671, u'prices': u'389,000', u'address': u'16 Chelmsford St UNIT 2, Dorchester, MA', u'lat': 42.284953, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'261000', u'zestimate_amount': u'381960', u'tax_value': u'212600.0', u'zestimate_valuation_range_high': u'401058', u'tax_year': u'2014', u'zestimate_value_change': u'6502', u'latitude': u'42.28495', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81854555', u'last_sold_date': u'07/11/2006', u'year_built': u'1905', u'zestimate_valuationRange_low': u'362862', u'graph_data_link': u'http://www.zillow.com/homedetails/16-Chelmsford-St-UNIT-2-Dorchester-MA-02122/81854555_zpid/#charts-and-data', u'home_size': u'1061', u'longitude': u'-71.054061', u'map_this_home_link': u'http://www.zillow.com/homes/81854555_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/16-Chelmsford-St-UNIT-2-Dorchester-MA-02122/81854555_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02136', u'long': -71.12602799999999, u'prices': u'399,500', u'address': u'1391 Hyde Park Ave STE G, Boston, MA', u'lat': 42.2511409, u'zillow': {u'property_size': u'3484', u'bathrooms': u'1.0', u'last_sold_price': u'310000', u'zestimate_amount': u'399402', u'tax_value': u'450000.0', u'zestimate_valuation_range_high': u'463306', u'tax_year': u'2014', u'zestimate_value_change': u'-12511', u'latitude': u'42.250944', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81855097', u'last_sold_date': u'03/17/2014', u'year_built': u'1950', u'zestimate_valuationRange_low': u'343486', u'graph_data_link': u'http://www.zillow.com/homedetails/1391-Hyde-Park-Ave-STE-G-Boston-MA-02136/81855097_zpid/#charts-and-data', u'home_size': u'1570', u'longitude': u'-71.125871', u'map_this_home_link': u'http://www.zillow.com/homes/81855097_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1391-Hyde-Park-Ave-STE-G-Boston-MA-02136/81855097_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02108', u'long': -71.05945, u'prices': u'1,300,000', u'address': u'1 Franklin St # 1601, Boston, MA', u'lat': 42.35631, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': \"Gorgeous One Bedroom at Millennium Towers! Towering above the adjacent building, allowing for expansive views of The State House and the Back Bay. A state of the art luxury living at it's best! Private screening room, Residents Only Restaurant and Lounge, Indoor swimming pool with a Miami style flair and Jacuzzi. One of a kind Fitness Center featuring a Boxing Club, Pilates/Yoga Studio/Cycling to name a few. Adjacent to the renovated historic Burnham Building, Millennium Tower will stand at the center of a reinvigorated downtown Boston, home to vibrant retail, and a new Roche Bros. gourmet grocery. Come see why Millennium Tower Boston is the evolution of luxury residential living.\", 'property_size': None, 'num_floors': None, 'heating_system': 'Forced air', 'photo_gallery': 'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Carpet, Hardwood', 'year_updated': None, 'bedrooms': '1', 'latitude': '42.355785', 'zillow_id': '2097180167', 'basement': None, 'year_built': '2016', 'home_size': '923', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/', 'home_info': 'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'945000', u'zestimate_amount': u'1175611', u'tax_value': None, u'zestimate_valuation_range_high': u'1493026', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.355785', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097180167', u'last_sold_date': u'09/15/2016', u'year_built': u'2016', u'zestimate_valuationRange_low': u'846440', u'graph_data_link': None, u'home_size': u'923', u'longitude': u'-71.059526', u'map_this_home_link': u'http://www.zillow.com/homes/2097180167_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0522963, u'prices': u'479,000', u'address': u'29 Houghton St # 1, Boston, MA', u'lat': 42.295264, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'472901', u'tax_value': None, u'zestimate_valuation_range_high': u'501275', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.295223', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096881071', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'439798', u'graph_data_link': None, u'home_size': u'1400', u'longitude': u'-71.052345', u'map_this_home_link': u'http://www.zillow.com/homes/2096881071_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/29-Houghton-St-1-Boston-MA-02122/2096881071_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0559853, u'prices': u'875,000', u'address': u'28 Woodward St # 1, Boston, MA', u'lat': 42.3314431, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'899088', u'tax_value': None, u'zestimate_valuation_range_high': u'1123860', u'tax_year': None, u'zestimate_value_change': u'-17891', u'latitude': u'42.331474', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2107330626', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'674316', u'graph_data_link': None, u'home_size': u'1700', u'longitude': u'-71.055931', u'map_this_home_link': u'http://www.zillow.com/homes/2107330626_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/28-Woodward-St-1-Boston-MA-02127/2107330626_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02131', u'long': -71.1230212, u'prices': u'549,500', u'address': u'12 Mosgrove Ave, Boston, MA', u'lat': 42.2919334, u'zillow': {u'property_size': u'5530', u'bathrooms': u'2.0', u'last_sold_price': u'250000', u'zestimate_amount': u'621969', u'tax_value': u'382100.0', u'zestimate_valuation_range_high': u'653067', u'tax_year': u'2014', u'zestimate_value_change': u'-8375', u'latitude': u'42.291848', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59144888', u'last_sold_date': u'02/25/2015', u'year_built': u'1901', u'zestimate_valuationRange_low': u'590871', u'graph_data_link': u'http://www.zillow.com/homedetails/12-Mosgrove-Ave-Boston-MA-02131/59144888_zpid/#charts-and-data', u'home_size': u'1950', u'longitude': u'-71.123093', u'map_this_home_link': u'http://www.zillow.com/homes/59144888_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/12-Mosgrove-Ave-Boston-MA-02131/59144888_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0446874, u'prices': u'769,000', u'address': u'235 Victory Rd UNIT 235, Quincy, MA', u'lat': 42.2994295, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'474680', u'zestimate_amount': u'787351', u'tax_value': u'630200.0', u'zestimate_valuation_range_high': u'826719', u'tax_year': u'2014', u'zestimate_value_change': u'7402', u'latitude': u'42.299416', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'56605009', u'last_sold_date': u'11/24/1999', u'year_built': u'1999', u'zestimate_valuationRange_low': u'747983', u'graph_data_link': u'http://www.zillow.com/homedetails/235-Victory-Rd-UNIT-235-Quincy-MA-02171/56605009_zpid/#charts-and-data', u'home_size': u'2286', u'longitude': u'-71.044724', u'map_this_home_link': u'http://www.zillow.com/homes/56605009_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/235-Victory-Rd-UNIT-235-Quincy-MA-02171/56605009_zpid/'}}, {u'status': u'For Sale by Owner', u'zip': u'02134', u'long': -71.131332, u'prices': u'549,000', u'address': u'29 Brainerd Rd, Boston, MA', u'lat': 42.3486087, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': \"Light-filled corner unit with polished hardwood flooring throughout and desirable open-concept living and dining space. Only one short block to Green Line subway, and bus lines. Excellent restaurants and nightlife only steps away! Harvard Avenue is known to have some of the best restaurants in Boston, and Coolidge Corner is a bustling neighborhood hot-spot. Boston University and Boston College are minutes away, so this could be great for students looking to live in the city! Building amenities include laundry, dedicated storage, bicycle parking, secure buzzer access and professional property management. This is not one to miss! Condo fees include common area maintenance, cold water, and master policy building insurance for common areas. Homeowner is responsible for heat and hot water for unit. Hot water heater and HVAC unit are both located in unit, so there is no sharing utilities with neighbors. Taxes were $854 this past quarter. Copy and paste the link below into your browser to view and download this property's fact sheet: https://drive.google.com/file/d/0B8DDIx2QJdihc1NkSTRBUzAwX0E/view?usp=sharing\", 'property_size': None, 'num_floors': None, 'heating_system': 'Forced air', 'photo_gallery': 'http://www.zillow.com/homedetails/29-Brainerd-Rd-Boston-MA-02134/2097576158_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood', 'year_updated': None, 'bedrooms': '2', 'latitude': '42.34912', 'zillow_id': '2097576158', 'basement': None, 'year_built': '1904', 'home_size': '850', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': 'On-street', 'home_detail_link': 'http://www.zillow.com/homedetails/29-Brainerd-Rd-Boston-MA-02134/2097576158_zpid/', 'home_info': 'http://www.zillow.com/homedetails/29-Brainerd-Rd-Boston-MA-02134/2097576158_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'420929', u'tax_value': None, u'zestimate_valuation_range_high': u'446185', u'tax_year': None, u'zestimate_value_change': u'16295', u'latitude': u'42.34912', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097576158', u'last_sold_date': None, u'year_built': u'1904', u'zestimate_valuationRange_low': u'378836', u'graph_data_link': None, u'home_size': u'850', u'longitude': u'-71.13047', u'map_this_home_link': u'http://www.zillow.com/homes/2097576158_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/29-Brainerd-Rd-Boston-MA-02134/2097576158_zpid/'}}, {u'status': u'Townhouse For Sale', u'zip': u'02130', u'long': -71.1157648, u'prices': u'749,000', u'address': u'5 Atwood Sq # 5, Boston, MA', u'lat': 42.3072151, u'zillow': {u'property_size': None, u'bathrooms': u'2.5', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.307212', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096375498', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'1603', u'longitude': u'-71.115613', u'map_this_home_link': u'http://www.zillow.com/homes/2096375498_zpid/', u'home_type': u'Townhouse', u'home_detail_link': u'http://www.zillow.com/homedetails/5-Atwood-Sq-5-Boston-MA-02130/2096375498_zpid/'}}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'849,000', u'address': u'321 Dorchester St # 1, Boston, MA', u'lat': -1}, {u'status': u'House For Sale', u'zip': None, u'long': -1, u'prices': u'899,000', u'address': u'54 Grampian Way, Dorchester, MA', u'lat': -1}, {u'status': u'House For Sale', u'zip': None, u'long': -71.171084, u'prices': u'849,000', u'address': u'129 Gardner St, Boston, MA', u'lat': 42.277522}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'529,000', u'address': u'7-9 Herbertson # 2, Jamaica Plain, MA', u'lat': -1}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.1544114, u'prices': u'739,900', u'address': u'31 Maple St, Boston, MA', u'lat': 42.287886, u'zillow': {u'property_size': u'4356', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'715295', u'tax_value': u'448800.0', u'zestimate_valuation_range_high': u'765366', u'tax_year': u'2014', u'zestimate_value_change': u'1927', u'latitude': u'42.287908', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59155302', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'665224', u'graph_data_link': u'http://www.zillow.com/homedetails/31-Maple-St-Boston-MA-02132/59155302_zpid/#charts-and-data', u'home_size': u'1847', u'longitude': u'-71.154418', u'map_this_home_link': u'http://www.zillow.com/homes/59155302_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/31-Maple-St-Boston-MA-02132/59155302_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.0814012, u'prices': u'675,000', u'address': u'255 Northampton St UNIT 501, Boston, MA', u'lat': 42.3394238, u'zillow': {u'property_size': u'1057', u'bathrooms': u'1.0', u'last_sold_price': u'475000', u'zestimate_amount': u'782221', u'tax_value': u'509100.0', u'zestimate_valuation_range_high': u'821332', u'tax_year': u'2014', u'zestimate_value_change': u'-38684', u'latitude': u'42.339385', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'87796106', u'last_sold_date': u'09/03/2010', u'year_built': u'2006', u'zestimate_valuationRange_low': u'743110', u'graph_data_link': u'http://www.zillow.com/homedetails/255-Northampton-St-UNIT-501-Boston-MA-02118/87796106_zpid/#charts-and-data', u'home_size': u'1057', u'longitude': u'-71.081382', u'map_this_home_link': u'http://www.zillow.com/homes/87796106_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/255-Northampton-St-UNIT-501-Boston-MA-02118/87796106_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02134', u'long': -71.1329925, u'prices': u'339,900', u'address': u'43 Parkvale Ave APT 5, Boston, MA', u'lat': 42.3523208, u'zillow': {u'property_size': u'578', u'bathrooms': u'1.0', u'last_sold_price': u'197000', u'zestimate_amount': u'343185', u'tax_value': u'183100.0', u'zestimate_valuation_range_high': u'360344', u'tax_year': u'2014', u'zestimate_value_change': None, u'latitude': u'42.351999', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59088144', u'last_sold_date': u'08/31/2006', u'year_built': u'1910', u'zestimate_valuationRange_low': u'326026', u'graph_data_link': u'http://www.zillow.com/homedetails/43-Parkvale-Ave-APT-5-Boston-MA-02134/59088144_zpid/#charts-and-data', u'home_size': u'578', u'longitude': u'-71.133272', u'map_this_home_link': u'http://www.zillow.com/homes/59088144_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/43-Parkvale-Ave-APT-5-Boston-MA-02134/59088144_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'339,000', u'address': u'53 Torrey St # 2, Boston, MA', u'lat': 42.287372, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'386209', u'tax_value': None, u'zestimate_valuation_range_high': u'544555', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.287284', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096823174', u'last_sold_date': None, u'year_built': u'1920', u'zestimate_valuationRange_low': u'254898', u'graph_data_link': None, u'home_size': u'1000', u'longitude': u'-71.073818', u'map_this_home_link': u'http://www.zillow.com/homes/2096823174_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0522682, u'prices': u'479,000', u'address': u'31 Houghton St # 2, Boston, MA', u'lat': 42.2952453, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'471644', u'tax_value': None, u'zestimate_valuation_range_high': u'499943', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.295265', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096881020', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'438629', u'graph_data_link': None, u'home_size': u'1400', u'longitude': u'-71.052066', u'map_this_home_link': u'http://www.zillow.com/homes/2096881020_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/31-Houghton-St-2-Boston-MA-02122/2096881020_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02124', u'long': -71.089551, u'prices': u'284,999', u'address': u'10 Arbutus St, Dorchester Center, MA', u'lat': 42.2879239, u'zillow': {u'property_size': u'2613', u'bathrooms': u'2.0', u'last_sold_price': u'192079', u'zestimate_amount': u'280016', u'tax_value': u'156300.0', u'zestimate_valuation_range_high': u'305217', u'tax_year': u'2014', u'zestimate_value_change': u'4024', u'latitude': u'42.287927', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59102139', u'last_sold_date': u'09/19/2005', u'year_built': u'1991', u'zestimate_valuationRange_low': u'252014', u'graph_data_link': u'http://www.zillow.com/homedetails/10-Arbutus-St-Dorchester-Center-MA-02124/59102139_zpid/#charts-and-data', u'home_size': u'1520', u'longitude': u'-71.089552', u'map_this_home_link': u'http://www.zillow.com/homes/59102139_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/10-Arbutus-St-Dorchester-Center-MA-02124/59102139_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.080952, u'prices': u'399,000', u'address': u'181 Glenway St, Dorchester, MA', u'lat': 42.296947, u'zillow': {u'property_size': u'5662', u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'443293', u'tax_value': u'242000.0', u'zestimate_valuation_range_high': u'469891', u'tax_year': u'2015', u'zestimate_value_change': u'1434', u'latitude': u'42.296947', u'zestimate_percentile': u'0', u'bedrooms': u'5', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59112097', u'last_sold_date': None, u'year_built': u'1890', u'zestimate_valuationRange_low': u'407830', u'graph_data_link': u'http://www.zillow.com/homedetails/181-Glenway-St-Dorchester-MA-02121/59112097_zpid/#charts-and-data', u'home_size': u'2684', u'longitude': u'-71.080952', u'map_this_home_link': u'http://www.zillow.com/homes/59112097_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/181-Glenway-St-Dorchester-MA-02121/59112097_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'345,000', u'address': u'53 Torrey St # 3, Boston, MA', u'lat': 42.287372, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'New renovation an easy walk to both the Ashmont and Shawmut stops on the red line. This penthouse unit features an open floor plan with oak floors, granite countertops, breakfast bar and stainless steel appliances. Central air and washer dryer hookups as well as storage are included. Private front and back decks as well as a common driveway and large fenced yard all add to the charm. New windows all around a newly renovated exterior, a good deal of new plumbing and wiring with a newer roof make this property an excellent value and an ideal starter home.', 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': '2016', 'bedrooms': '2', 'latitude': '42.287282', 'zillow_id': '2096896512', 'basement': None, 'year_built': '1920', 'home_size': '1000', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/', 'home_info': 'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'386209', u'tax_value': None, u'zestimate_valuation_range_high': u'544555', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.287282', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096896512', u'last_sold_date': None, u'year_built': u'1920', u'zestimate_valuationRange_low': u'254898', u'graph_data_link': None, u'home_size': u'1000', u'longitude': u'-71.073797', u'map_this_home_link': u'http://www.zillow.com/homes/2096896512_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0795012, u'prices': u'2,495,000', u'address': u'242 Beacon St APT 6, Boston, MA', u'lat': 42.3536559, u'zillow': {u'property_size': u'2267', u'bathrooms': u'3.0', u'last_sold_price': u'1325000', u'zestimate_amount': u'2826169', u'tax_value': u'1783000.0', u'zestimate_valuation_range_high': u'2995739', u'tax_year': u'2014', u'zestimate_value_change': u'-16709', u'latitude': u'42.353794', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59170501', u'last_sold_date': u'09/09/2009', u'year_built': u'1884', u'zestimate_valuationRange_low': u'2628337', u'graph_data_link': u'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/#charts-and-data', u'home_size': u'2267', u'longitude': u'-71.079593', u'map_this_home_link': u'http://www.zillow.com/homes/59170501_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02132', u'long': -71.1587218, u'prices': u'399,900', u'address': u'23 Goethe St # 2, Boston, MA', u'lat': 42.2565786, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'427574', u'tax_value': None, u'zestimate_valuation_range_high': u'448953', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.256671', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096807696', u'last_sold_date': None, u'year_built': u'1940', u'zestimate_valuationRange_low': u'401920', u'graph_data_link': None, u'home_size': u'1370', u'longitude': u'-71.158866', u'map_this_home_link': u'http://www.zillow.com/homes/2096807696_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/23-Goethe-St-2-Boston-MA-02132/2096807696_zpid/'}}, {u'status': u'House For Sale', u'zip': None, u'long': -1, u'prices': u'599,000', u'address': u'100 Maple St, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'669,000', u'address': u'801 Centre St # 3C, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'1,540,000', u'address': u'505 Tremont St UNIT 417, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0540671, u'prices': u'389,000', u'address': u'16 Chelmsford St UNIT 2, Dorchester, MA', u'lat': 42.284953, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'261000', u'zestimate_amount': u'381960', u'tax_value': u'212600.0', u'zestimate_valuation_range_high': u'401058', u'tax_year': u'2014', u'zestimate_value_change': u'6502', u'latitude': u'42.28495', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81854555', u'last_sold_date': u'07/11/2006', u'year_built': u'1905', u'zestimate_valuationRange_low': u'362862', u'graph_data_link': u'http://www.zillow.com/homedetails/16-Chelmsford-St-UNIT-2-Dorchester-MA-02122/81854555_zpid/#charts-and-data', u'home_size': u'1061', u'longitude': u'-71.054061', u'map_this_home_link': u'http://www.zillow.com/homes/81854555_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/16-Chelmsford-St-UNIT-2-Dorchester-MA-02122/81854555_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02136', u'long': -71.12602799999999, u'prices': u'399,500', u'address': u'1391 Hyde Park Ave STE G, Boston, MA', u'lat': 42.2511409, u'zillow': {u'property_size': u'3484', u'bathrooms': u'1.0', u'last_sold_price': u'310000', u'zestimate_amount': u'399402', u'tax_value': u'450000.0', u'zestimate_valuation_range_high': u'463306', u'tax_year': u'2014', u'zestimate_value_change': u'-12511', u'latitude': u'42.250944', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81855097', u'last_sold_date': u'03/17/2014', u'year_built': u'1950', u'zestimate_valuationRange_low': u'343486', u'graph_data_link': u'http://www.zillow.com/homedetails/1391-Hyde-Park-Ave-STE-G-Boston-MA-02136/81855097_zpid/#charts-and-data', u'home_size': u'1570', u'longitude': u'-71.125871', u'map_this_home_link': u'http://www.zillow.com/homes/81855097_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1391-Hyde-Park-Ave-STE-G-Boston-MA-02136/81855097_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02108', u'long': -71.05945, u'prices': u'1,300,000', u'address': u'1 Franklin St # 1601, Boston, MA', u'lat': 42.35631, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'945000', u'zestimate_amount': u'1175611', u'tax_value': None, u'zestimate_valuation_range_high': u'1493026', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.355785', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097180167', u'last_sold_date': u'09/15/2016', u'year_built': u'2016', u'zestimate_valuationRange_low': u'846440', u'graph_data_link': None, u'home_size': u'923', u'longitude': u'-71.059526', u'map_this_home_link': u'http://www.zillow.com/homes/2097180167_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0522963, u'prices': u'479,000', u'address': u'29 Houghton St # 1, Boston, MA', u'lat': 42.295264, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'472901', u'tax_value': None, u'zestimate_valuation_range_high': u'501275', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.295223', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096881071', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'439798', u'graph_data_link': None, u'home_size': u'1400', u'longitude': u'-71.052345', u'map_this_home_link': u'http://www.zillow.com/homes/2096881071_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/29-Houghton-St-1-Boston-MA-02122/2096881071_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0559853, u'prices': u'875,000', u'address': u'28 Woodward St # 1, Boston, MA', u'lat': 42.3314431, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'899088', u'tax_value': None, u'zestimate_valuation_range_high': u'1123860', u'tax_year': None, u'zestimate_value_change': u'-17891', u'latitude': u'42.331474', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2107330626', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'674316', u'graph_data_link': None, u'home_size': u'1700', u'longitude': u'-71.055931', u'map_this_home_link': u'http://www.zillow.com/homes/2107330626_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/28-Woodward-St-1-Boston-MA-02127/2107330626_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02131', u'long': -71.1230212, u'prices': u'549,500', u'address': u'12 Mosgrove Ave, Boston, MA', u'lat': 42.2919334, u'zillow': {u'property_size': u'5530', u'bathrooms': u'2.0', u'last_sold_price': u'250000', u'zestimate_amount': u'621969', u'tax_value': u'382100.0', u'zestimate_valuation_range_high': u'653067', u'tax_year': u'2014', u'zestimate_value_change': u'-8375', u'latitude': u'42.291848', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59144888', u'last_sold_date': u'02/25/2015', u'year_built': u'1901', u'zestimate_valuationRange_low': u'590871', u'graph_data_link': u'http://www.zillow.com/homedetails/12-Mosgrove-Ave-Boston-MA-02131/59144888_zpid/#charts-and-data', u'home_size': u'1950', u'longitude': u'-71.123093', u'map_this_home_link': u'http://www.zillow.com/homes/59144888_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/12-Mosgrove-Ave-Boston-MA-02131/59144888_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0446874, u'prices': u'769,000', u'address': u'235 Victory Rd UNIT 235, Quincy, MA', u'lat': 42.2994295, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'474680', u'zestimate_amount': u'787351', u'tax_value': u'630200.0', u'zestimate_valuation_range_high': u'826719', u'tax_year': u'2014', u'zestimate_value_change': u'7402', u'latitude': u'42.299416', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'56605009', u'last_sold_date': u'11/24/1999', u'year_built': u'1999', u'zestimate_valuationRange_low': u'747983', u'graph_data_link': u'http://www.zillow.com/homedetails/235-Victory-Rd-UNIT-235-Quincy-MA-02171/56605009_zpid/#charts-and-data', u'home_size': u'2286', u'longitude': u'-71.044724', u'map_this_home_link': u'http://www.zillow.com/homes/56605009_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/235-Victory-Rd-UNIT-235-Quincy-MA-02171/56605009_zpid/'}}, {u'status': u'For Sale by Owner', u'zip': u'02134', u'long': -71.131332, u'prices': u'549,000', u'address': u'29 Brainerd Rd, Boston, MA', u'lat': 42.3486087, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': \"Light-filled corner unit with polished hardwood flooring throughout and desirable open-concept living and dining space. Only one short block to Green Line subway, and bus lines. Excellent restaurants and nightlife only steps away! Harvard Avenue is known to have some of the best restaurants in Boston, and Coolidge Corner is a bustling neighborhood hot-spot. Boston University and Boston College are minutes away, so this could be great for students looking to live in the city! Building amenities include laundry, dedicated storage, bicycle parking, secure buzzer access and professional property management. This is not one to miss! Condo fees include common area maintenance, cold water, and master policy building insurance for common areas. Homeowner is responsible for heat and hot water for unit. Hot water heater and HVAC unit are both located in unit, so there is no sharing utilities with neighbors. Taxes were $854 this past quarter. Copy and paste the link below into your browser to view and download this property's fact sheet: https://drive.google.com/file/d/0B8DDIx2QJdihc1NkSTRBUzAwX0E/view?usp=sharing\", 'property_size': None, 'num_floors': None, 'heating_system': 'Forced air', 'photo_gallery': 'http://www.zillow.com/homedetails/29-Brainerd-Rd-Boston-MA-02134/2097576158_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood', 'year_updated': None, 'bedrooms': '2', 'latitude': '42.34912', 'zillow_id': '2097576158', 'basement': None, 'year_built': '1904', 'home_size': '850', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': 'On-street', 'home_detail_link': 'http://www.zillow.com/homedetails/29-Brainerd-Rd-Boston-MA-02134/2097576158_zpid/', 'home_info': 'http://www.zillow.com/homedetails/29-Brainerd-Rd-Boston-MA-02134/2097576158_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'420929', u'tax_value': None, u'zestimate_valuation_range_high': u'446185', u'tax_year': None, u'zestimate_value_change': u'16295', u'latitude': u'42.34912', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097576158', u'last_sold_date': None, u'year_built': u'1904', u'zestimate_valuationRange_low': u'378836', u'graph_data_link': None, u'home_size': u'850', u'longitude': u'-71.13047', u'map_this_home_link': u'http://www.zillow.com/homes/2097576158_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/29-Brainerd-Rd-Boston-MA-02134/2097576158_zpid/'}}, {u'status': u'Townhouse For Sale', u'zip': u'02130', u'long': -71.1157648, u'prices': u'749,000', u'address': u'5 Atwood Sq # 5, Boston, MA', u'lat': 42.3072151, u'zillow': {u'property_size': None, u'bathrooms': u'2.5', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.307212', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096375498', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'1603', u'longitude': u'-71.115613', u'map_this_home_link': u'http://www.zillow.com/homes/2096375498_zpid/', u'home_type': u'Townhouse', u'home_detail_link': u'http://www.zillow.com/homedetails/5-Atwood-Sq-5-Boston-MA-02130/2096375498_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.05405100000002, u'prices': u'849,000', u'address': u'321 Dorchester St # 1, Boston, MA', u'lat': 42.331281, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'925305', u'tax_value': None, u'zestimate_valuation_range_high': u'971570', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.33145', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096497571', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'879040', u'graph_data_link': None, u'home_size': u'2400', u'longitude': u'-71.05343', u'map_this_home_link': u'http://www.zillow.com/homes/2096497571_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497571_zpid/'}}, {u'status': u'House For Sale', u'zip': None, u'long': -1, u'prices': u'899,000', u'address': u'54 Grampian Way, Dorchester, MA', u'lat': -1}, {u'status': u'House For Sale', u'zip': None, u'long': -71.171084, u'prices': u'849,000', u'address': u'129 Gardner St, Boston, MA', u'lat': 42.277522}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'529,000', u'address': u'7-9 Herbertson # 2, Jamaica Plain, MA', u'lat': -1}, {u'status': u'House For Sale', u'zip': None, u'long': -1, u'prices': u'739,900', u'address': u'31 Maple St, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.0814012, u'prices': u'675,000', u'address': u'255 Northampton St UNIT 501, Boston, MA', u'lat': 42.3394238, u'zillow': {u'property_size': u'1057', u'bathrooms': u'1.0', u'last_sold_price': u'475000', u'zestimate_amount': u'782221', u'tax_value': u'509100.0', u'zestimate_valuation_range_high': u'821332', u'tax_year': u'2014', u'zestimate_value_change': u'-38684', u'latitude': u'42.339385', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'87796106', u'last_sold_date': u'09/03/2010', u'year_built': u'2006', u'zestimate_valuationRange_low': u'743110', u'graph_data_link': u'http://www.zillow.com/homedetails/255-Northampton-St-UNIT-501-Boston-MA-02118/87796106_zpid/#charts-and-data', u'home_size': u'1057', u'longitude': u'-71.081382', u'map_this_home_link': u'http://www.zillow.com/homes/87796106_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/255-Northampton-St-UNIT-501-Boston-MA-02118/87796106_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02134', u'long': -71.1329925, u'prices': u'339,900', u'address': u'43 Parkvale Ave APT 5, Boston, MA', u'lat': 42.3523208, u'zillow': {u'property_size': u'578', u'bathrooms': u'1.0', u'last_sold_price': u'197000', u'zestimate_amount': u'343185', u'tax_value': u'183100.0', u'zestimate_valuation_range_high': u'360344', u'tax_year': u'2014', u'zestimate_value_change': None, u'latitude': u'42.351999', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59088144', u'last_sold_date': u'08/31/2006', u'year_built': u'1910', u'zestimate_valuationRange_low': u'326026', u'graph_data_link': u'http://www.zillow.com/homedetails/43-Parkvale-Ave-APT-5-Boston-MA-02134/59088144_zpid/#charts-and-data', u'home_size': u'578', u'longitude': u'-71.133272', u'map_this_home_link': u'http://www.zillow.com/homes/59088144_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/43-Parkvale-Ave-APT-5-Boston-MA-02134/59088144_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'339,000', u'address': u'53 Torrey St # 2, Boston, MA', u'lat': 42.287372, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'386209', u'tax_value': None, u'zestimate_valuation_range_high': u'544555', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.287284', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096823174', u'last_sold_date': None, u'year_built': u'1920', u'zestimate_valuationRange_low': u'254898', u'graph_data_link': None, u'home_size': u'1000', u'longitude': u'-71.073818', u'map_this_home_link': u'http://www.zillow.com/homes/2096823174_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0522682, u'prices': u'479,000', u'address': u'31 Houghton St # 2, Boston, MA', u'lat': 42.2952453, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'471644', u'tax_value': None, u'zestimate_valuation_range_high': u'499943', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.295265', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096881020', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'438629', u'graph_data_link': None, u'home_size': u'1400', u'longitude': u'-71.052066', u'map_this_home_link': u'http://www.zillow.com/homes/2096881020_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/31-Houghton-St-2-Boston-MA-02122/2096881020_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02124', u'long': -71.089551, u'prices': u'284,999', u'address': u'10 Arbutus St, Dorchester Center, MA', u'lat': 42.2879239, u'zillow': {u'property_size': u'2613', u'bathrooms': u'2.0', u'last_sold_price': u'192079', u'zestimate_amount': u'280016', u'tax_value': u'156300.0', u'zestimate_valuation_range_high': u'305217', u'tax_year': u'2014', u'zestimate_value_change': u'4024', u'latitude': u'42.287927', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59102139', u'last_sold_date': u'09/19/2005', u'year_built': u'1991', u'zestimate_valuationRange_low': u'252014', u'graph_data_link': u'http://www.zillow.com/homedetails/10-Arbutus-St-Dorchester-Center-MA-02124/59102139_zpid/#charts-and-data', u'home_size': u'1520', u'longitude': u'-71.089552', u'map_this_home_link': u'http://www.zillow.com/homes/59102139_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/10-Arbutus-St-Dorchester-Center-MA-02124/59102139_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.080952, u'prices': u'399,000', u'address': u'181 Glenway St, Dorchester, MA', u'lat': 42.296947, u'zillow': {u'property_size': u'5662', u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'443293', u'tax_value': u'242000.0', u'zestimate_valuation_range_high': u'469891', u'tax_year': u'2015', u'zestimate_value_change': u'1434', u'latitude': u'42.296947', u'zestimate_percentile': u'0', u'bedrooms': u'5', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59112097', u'last_sold_date': None, u'year_built': u'1890', u'zestimate_valuationRange_low': u'407830', u'graph_data_link': u'http://www.zillow.com/homedetails/181-Glenway-St-Dorchester-MA-02121/59112097_zpid/#charts-and-data', u'home_size': u'2684', u'longitude': u'-71.080952', u'map_this_home_link': u'http://www.zillow.com/homes/59112097_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/181-Glenway-St-Dorchester-MA-02121/59112097_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'345,000', u'address': u'53 Torrey St # 3, Boston, MA', u'lat': 42.287372, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'386209', u'tax_value': None, u'zestimate_valuation_range_high': u'544555', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.287282', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096896512', u'last_sold_date': None, u'year_built': u'1920', u'zestimate_valuationRange_low': u'254898', u'graph_data_link': None, u'home_size': u'1000', u'longitude': u'-71.073797', u'map_this_home_link': u'http://www.zillow.com/homes/2096896512_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0795012, u'prices': u'2,495,000', u'address': u'242 Beacon St APT 6, Boston, MA', u'lat': 42.3536559, 'property': {'neighborhood': 'Back Bay', 'bathrooms': '3.0', 'school_district': None, 'heating_sources': 'Other', 'rooms': 'Dining room, Family room, Laundry room, Master bath', 'home_description': 'Waterside renovated three bedroom, two and a half bathroom floor-through condominium. Direct elevator access. Exceptionally well laid-out home featuring a grand living room with fireplace and bow window overlooking the Charles River Esplanade. Large galley offers a breakfast bar and sliding doors to the balcony. Elegant master bedroom suite boasts a bow window and marble fireplace. Central air-conditioning, new bathrooms, well-sized second and third bedrooms. Excellent closet space and ceiling height throughout. Association parking with direct access. 1 Year pre-paid parking will be offered with the sale. Well maintained brownstone that just completed a total restoration. Any idyllic Boston home! ', 'property_size': '2267', 'num_floors': '1', 'heating_system': 'Other', 'photo_gallery': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood', 'year_updated': '2007', 'bedrooms': '3', 'latitude': '42.353794', 'zillow_id': '59170501', 'basement': 'None', 'year_built': '1884', 'home_size': '2267', 'roof': None, 'view': 'City, Water', 'home_type': 'Condominium', 'parking_type': 'Off-street, On-street', 'home_detail_link': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/', 'home_info': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/'}, u'zillow': {u'property_size': u'2267', u'bathrooms': u'3.0', u'last_sold_price': u'1325000', u'zestimate_amount': u'2826169', u'tax_value': u'1783000.0', u'zestimate_valuation_range_high': u'2995739', u'tax_year': u'2014', u'zestimate_value_change': u'-16709', u'latitude': u'42.353794', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59170501', u'last_sold_date': u'09/09/2009', u'year_built': u'1884', u'zestimate_valuationRange_low': u'2628337', u'graph_data_link': u'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/#charts-and-data', u'home_size': u'2267', u'longitude': u'-71.079593', u'map_this_home_link': u'http://www.zillow.com/homes/59170501_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02132', u'long': -71.1587218, u'prices': u'399,900', u'address': u'23 Goethe St # 2, Boston, MA', u'lat': 42.2565786, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'427574', u'tax_value': None, u'zestimate_valuation_range_high': u'448953', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.256671', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096807696', u'last_sold_date': None, u'year_built': u'1940', u'zestimate_valuationRange_low': u'401920', u'graph_data_link': None, u'home_size': u'1370', u'longitude': u'-71.158866', u'map_this_home_link': u'http://www.zillow.com/homes/2096807696_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/23-Goethe-St-2-Boston-MA-02132/2096807696_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.08661099999999, u'prices': u'599,000', u'address': u'100 Maple St, Boston, MA', u'lat': 42.3075847, u'zillow': {u'property_size': u'7157', u'bathrooms': None, u'last_sold_price': u'3360981', u'zestimate_amount': u'695455', u'tax_value': u'426577.0', u'zestimate_valuation_range_high': u'785864', u'tax_year': u'2015', u'zestimate_value_change': u'-9334', u'latitude': u'42.289875', u'zestimate_percentile': u'0', u'bedrooms': None, u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'90139732', u'last_sold_date': u'02/19/1992', u'year_built': u'1925', u'zestimate_valuationRange_low': u'598091', u'graph_data_link': u'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/#charts-and-data', u'home_size': u'16857', u'longitude': u'-71.156478', u'map_this_home_link': u'http://www.zillow.com/homes/90139732_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/'}}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'669,000', u'address': u'801 Centre St # 3C, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'1,540,000', u'address': u'505 Tremont St UNIT 417, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'389,000', u'address': u'16 Chelmsford St UNIT 2, Dorchester, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'399,500', u'address': u'1391 Hyde Park Ave STE G, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02108', u'long': -71.05945, u'prices': u'1,300,000', u'address': u'1 Franklin St # 1601, Boston, MA', u'lat': 42.35631, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'945000', u'zestimate_amount': u'1175611', u'tax_value': None, u'zestimate_valuation_range_high': u'1493026', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.355785', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097180167', u'last_sold_date': u'09/15/2016', u'year_built': u'2016', u'zestimate_valuationRange_low': u'846440', u'graph_data_link': None, u'home_size': u'923', u'longitude': u'-71.059526', u'map_this_home_link': u'http://www.zillow.com/homes/2097180167_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0522963, u'prices': u'479,000', u'address': u'29 Houghton St # 1, Boston, MA', u'lat': 42.295264, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'472901', u'tax_value': None, u'zestimate_valuation_range_high': u'501275', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.295223', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096881071', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'439798', u'graph_data_link': None, u'home_size': u'1400', u'longitude': u'-71.052345', u'map_this_home_link': u'http://www.zillow.com/homes/2096881071_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/29-Houghton-St-1-Boston-MA-02122/2096881071_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0559853, u'prices': u'875,000', u'address': u'28 Woodward St # 1, Boston, MA', u'lat': 42.3314431, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'899088', u'tax_value': None, u'zestimate_valuation_range_high': u'1123860', u'tax_year': None, u'zestimate_value_change': u'-17891', u'latitude': u'42.331474', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2107330626', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'674316', u'graph_data_link': None, u'home_size': u'1700', u'longitude': u'-71.055931', u'map_this_home_link': u'http://www.zillow.com/homes/2107330626_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/28-Woodward-St-1-Boston-MA-02127/2107330626_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02131', u'long': -71.1230212, u'prices': u'549,500', u'address': u'12 Mosgrove Ave, Boston, MA', u'lat': 42.2919334, u'zillow': {u'property_size': u'5530', u'bathrooms': u'2.0', u'last_sold_price': u'250000', u'zestimate_amount': u'621969', u'tax_value': u'382100.0', u'zestimate_valuation_range_high': u'653067', u'tax_year': u'2014', u'zestimate_value_change': u'-8375', u'latitude': u'42.291848', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59144888', u'last_sold_date': u'02/25/2015', u'year_built': u'1901', u'zestimate_valuationRange_low': u'590871', u'graph_data_link': u'http://www.zillow.com/homedetails/12-Mosgrove-Ave-Boston-MA-02131/59144888_zpid/#charts-and-data', u'home_size': u'1950', u'longitude': u'-71.123093', u'map_this_home_link': u'http://www.zillow.com/homes/59144888_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/12-Mosgrove-Ave-Boston-MA-02131/59144888_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0446874, u'prices': u'769,000', u'address': u'235 Victory Rd UNIT 235, Quincy, MA', u'lat': 42.2994295, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'474680', u'zestimate_amount': u'787351', u'tax_value': u'630200.0', u'zestimate_valuation_range_high': u'826719', u'tax_year': u'2014', u'zestimate_value_change': u'7402', u'latitude': u'42.299416', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'56605009', u'last_sold_date': u'11/24/1999', u'year_built': u'1999', u'zestimate_valuationRange_low': u'747983', u'graph_data_link': u'http://www.zillow.com/homedetails/235-Victory-Rd-UNIT-235-Quincy-MA-02171/56605009_zpid/#charts-and-data', u'home_size': u'2286', u'longitude': u'-71.044724', u'map_this_home_link': u'http://www.zillow.com/homes/56605009_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/235-Victory-Rd-UNIT-235-Quincy-MA-02171/56605009_zpid/'}}, {u'status': u'For Sale by Owner', u'zip': u'02134', u'long': -71.131332, u'prices': u'549,000', u'address': u'29 Brainerd Rd, Boston, MA', u'lat': 42.3486087, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': \"Light-filled corner unit with polished hardwood flooring throughout and desirable open-concept living and dining space. Only one short block to Green Line subway, and bus lines. Excellent restaurants and nightlife only steps away! Harvard Avenue is known to have some of the best restaurants in Boston, and Coolidge Corner is a bustling neighborhood hot-spot. Boston University and Boston College are minutes away, so this could be great for students looking to live in the city! Building amenities include laundry, dedicated storage, bicycle parking, secure buzzer access and professional property management. This is not one to miss! Condo fees include common area maintenance, cold water, and master policy building insurance for common areas. Homeowner is responsible for heat and hot water for unit. Hot water heater and HVAC unit are both located in unit, so there is no sharing utilities with neighbors. Taxes were $854 this past quarter. Copy and paste the link below into your browser to view and download this property's fact sheet: https://drive.google.com/file/d/0B8DDIx2QJdihc1NkSTRBUzAwX0E/view?usp=sharing\", 'property_size': None, 'num_floors': None, 'heating_system': 'Forced air', 'photo_gallery': 'http://www.zillow.com/homedetails/29-Brainerd-Rd-Boston-MA-02134/2097576158_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood', 'year_updated': None, 'bedrooms': '2', 'latitude': '42.34912', 'zillow_id': '2097576158', 'basement': None, 'year_built': '1904', 'home_size': '850', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': 'On-street', 'home_detail_link': 'http://www.zillow.com/homedetails/29-Brainerd-Rd-Boston-MA-02134/2097576158_zpid/', 'home_info': 'http://www.zillow.com/homedetails/29-Brainerd-Rd-Boston-MA-02134/2097576158_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'420929', u'tax_value': None, u'zestimate_valuation_range_high': u'446185', u'tax_year': None, u'zestimate_value_change': u'16295', u'latitude': u'42.34912', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097576158', u'last_sold_date': None, u'year_built': u'1904', u'zestimate_valuationRange_low': u'378836', u'graph_data_link': None, u'home_size': u'850', u'longitude': u'-71.13047', u'map_this_home_link': u'http://www.zillow.com/homes/2097576158_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/29-Brainerd-Rd-Boston-MA-02134/2097576158_zpid/'}}, {u'status': u'Townhouse For Sale', u'zip': u'02130', u'long': -71.1157648, u'prices': u'749,000', u'address': u'5 Atwood Sq # 5, Boston, MA', u'lat': 42.3072151, u'zillow': {u'property_size': None, u'bathrooms': u'2.5', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.307212', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096375498', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'1603', u'longitude': u'-71.115613', u'map_this_home_link': u'http://www.zillow.com/homes/2096375498_zpid/', u'home_type': u'Townhouse', u'home_detail_link': u'http://www.zillow.com/homedetails/5-Atwood-Sq-5-Boston-MA-02130/2096375498_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.05405100000002, u'prices': u'849,000', u'address': u'321 Dorchester St # 1, Boston, MA', u'lat': 42.331281, 'property': {'neighborhood': None, 'bathrooms': '2.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': '321 Dorchester Street is a boutique luxury development in the heart of South Boston. These floor-through condominiums feature high end kitchens with Carrera marble tops, Samsung appliances and ample storage. Each residence offers 4 bedrooms, 2 bathrooms and access to the common roof deck with a panoramic Boston skyline views.', 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497652_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '4', 'latitude': '42.33145', 'zillow_id': '2096497652', 'basement': None, 'year_built': None, 'home_size': '1400', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497652_zpid/', 'home_info': 'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497652_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'766387', u'tax_value': None, u'zestimate_valuation_range_high': u'804706', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.33145', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096497652', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'728068', u'graph_data_link': None, u'home_size': u'1400', u'longitude': u'-71.05343', u'map_this_home_link': u'http://www.zillow.com/homes/2096497652_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497652_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02125', u'long': -71.049533, u'prices': u'899,000', u'address': u'54 Grampian Way, Dorchester, MA', u'lat': 42.312072, u'zillow': {u'property_size': u'6534', u'bathrooms': u'2.0', u'last_sold_price': u'197000', u'zestimate_amount': u'769717', u'tax_value': u'499300.0', u'zestimate_valuation_range_high': u'877477', u'tax_year': u'2015', u'zestimate_value_change': u'-25499', u'latitude': u'42.312059', u'zestimate_percentile': u'0', u'bedrooms': u'5', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59113320', u'last_sold_date': u'12/11/1998', u'year_built': u'1885', u'zestimate_valuationRange_low': u'692745', u'graph_data_link': u'http://www.zillow.com/homedetails/54-Grampian-Way-Dorchester-MA-02125/59113320_zpid/#charts-and-data', u'home_size': u'2423', u'longitude': u'-71.049545', u'map_this_home_link': u'http://www.zillow.com/homes/59113320_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/54-Grampian-Way-Dorchester-MA-02125/59113320_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.171084, u'prices': u'849,000', u'address': u'129 Gardner St, Boston, MA', u'lat': 42.277522, u'zillow': {u'property_size': u'6969', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'858867', u'tax_value': None, u'zestimate_valuation_range_high': u'1039229', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.277522', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096677074', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'695682', u'graph_data_link': None, u'home_size': u'2800', u'longitude': u'-71.171084', u'map_this_home_link': u'http://www.zillow.com/homes/2096677074_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/129-Gardner-St-Boston-MA-02132/2096677074_zpid/'}}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'529,000', u'address': u'7-9 Herbertson # 2, Jamaica Plain, MA', u'lat': -1}, {u'status': u'House For Sale', u'zip': None, u'long': -1, u'prices': u'739,900', u'address': u'31 Maple St, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'675,000', u'address': u'255 Northampton St UNIT 501, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02134', u'long': -71.1329925, u'prices': u'339,900', u'address': u'43 Parkvale Ave APT 5, Boston, MA', u'lat': 42.3523208, u'zillow': {u'property_size': u'578', u'bathrooms': u'1.0', u'last_sold_price': u'197000', u'zestimate_amount': u'343185', u'tax_value': u'183100.0', u'zestimate_valuation_range_high': u'360344', u'tax_year': u'2014', u'zestimate_value_change': None, u'latitude': u'42.351999', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59088144', u'last_sold_date': u'08/31/2006', u'year_built': u'1910', u'zestimate_valuationRange_low': u'326026', u'graph_data_link': u'http://www.zillow.com/homedetails/43-Parkvale-Ave-APT-5-Boston-MA-02134/59088144_zpid/#charts-and-data', u'home_size': u'578', u'longitude': u'-71.133272', u'map_this_home_link': u'http://www.zillow.com/homes/59088144_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/43-Parkvale-Ave-APT-5-Boston-MA-02134/59088144_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'339,000', u'address': u'53 Torrey St # 2, Boston, MA', u'lat': 42.287372, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'New renovation an easy walk to both the Ashmont and Shawmut stops on the red line. This penthouse unit features an open floor plan with oak floors, granite countertops, breakfast bar and stainless steel appliances. Central air and washer dryer hookups as well as storage are included. Private front and back decks as well as a common driveway and large fenced yard all add to the charm. New windows all around a newly renovated exterior, a good deal of new plumbing and wiring with a newer roof make this property an excellent value and an ideal starter home.\\n\\nFirst open house this Sunday 10/9 from 12:00 to 1pm.', 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': '2016', 'bedrooms': '2', 'latitude': '42.287284', 'zillow_id': '2096823174', 'basement': None, 'year_built': '1920', 'home_size': '1000', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/', 'home_info': 'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'386209', u'tax_value': None, u'zestimate_valuation_range_high': u'544555', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.287284', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096823174', u'last_sold_date': None, u'year_built': u'1920', u'zestimate_valuationRange_low': u'254898', u'graph_data_link': None, u'home_size': u'1000', u'longitude': u'-71.073818', u'map_this_home_link': u'http://www.zillow.com/homes/2096823174_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0522682, u'prices': u'479,000', u'address': u'31 Houghton St # 2, Boston, MA', u'lat': 42.2952453, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'471644', u'tax_value': None, u'zestimate_valuation_range_high': u'499943', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.295265', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096881020', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'438629', u'graph_data_link': None, u'home_size': u'1400', u'longitude': u'-71.052066', u'map_this_home_link': u'http://www.zillow.com/homes/2096881020_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/31-Houghton-St-2-Boston-MA-02122/2096881020_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02124', u'long': -71.089551, u'prices': u'284,999', u'address': u'10 Arbutus St, Dorchester Center, MA', u'lat': 42.2879239, u'zillow': {u'property_size': u'2613', u'bathrooms': u'2.0', u'last_sold_price': u'192079', u'zestimate_amount': u'280016', u'tax_value': u'156300.0', u'zestimate_valuation_range_high': u'305217', u'tax_year': u'2014', u'zestimate_value_change': u'4024', u'latitude': u'42.287927', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59102139', u'last_sold_date': u'09/19/2005', u'year_built': u'1991', u'zestimate_valuationRange_low': u'252014', u'graph_data_link': u'http://www.zillow.com/homedetails/10-Arbutus-St-Dorchester-Center-MA-02124/59102139_zpid/#charts-and-data', u'home_size': u'1520', u'longitude': u'-71.089552', u'map_this_home_link': u'http://www.zillow.com/homes/59102139_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/10-Arbutus-St-Dorchester-Center-MA-02124/59102139_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.080952, u'prices': u'399,000', u'address': u'181 Glenway St, Dorchester, MA', u'lat': 42.296947, u'zillow': {u'property_size': u'5662', u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'443293', u'tax_value': u'242000.0', u'zestimate_valuation_range_high': u'469891', u'tax_year': u'2015', u'zestimate_value_change': u'1434', u'latitude': u'42.296947', u'zestimate_percentile': u'0', u'bedrooms': u'5', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59112097', u'last_sold_date': None, u'year_built': u'1890', u'zestimate_valuationRange_low': u'407830', u'graph_data_link': u'http://www.zillow.com/homedetails/181-Glenway-St-Dorchester-MA-02121/59112097_zpid/#charts-and-data', u'home_size': u'2684', u'longitude': u'-71.080952', u'map_this_home_link': u'http://www.zillow.com/homes/59112097_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/181-Glenway-St-Dorchester-MA-02121/59112097_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'345,000', u'address': u'53 Torrey St # 3, Boston, MA', u'lat': 42.287372, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'386209', u'tax_value': None, u'zestimate_valuation_range_high': u'544555', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.287282', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096896512', u'last_sold_date': None, u'year_built': u'1920', u'zestimate_valuationRange_low': u'254898', u'graph_data_link': None, u'home_size': u'1000', u'longitude': u'-71.073797', u'map_this_home_link': u'http://www.zillow.com/homes/2096896512_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0795012, u'prices': u'2,495,000', u'address': u'242 Beacon St APT 6, Boston, MA', u'lat': 42.3536559, 'property': {'neighborhood': 'Back Bay', 'bathrooms': '3.0', 'school_district': None, 'heating_sources': 'Other', 'rooms': 'Dining room, Family room, Laundry room, Master bath', 'home_description': 'Waterside renovated three bedroom, two and a half bathroom floor-through condominium. Direct elevator access. Exceptionally well laid-out home featuring a grand living room with fireplace and bow window overlooking the Charles River Esplanade. Large galley offers a breakfast bar and sliding doors to the balcony. Elegant master bedroom suite boasts a bow window and marble fireplace. Central air-conditioning, new bathrooms, well-sized second and third bedrooms. Excellent closet space and ceiling height throughout. Association parking with direct access. 1 Year pre-paid parking will be offered with the sale. Well maintained brownstone that just completed a total restoration. Any idyllic Boston home! ', 'property_size': '2267', 'num_floors': '1', 'heating_system': 'Other', 'photo_gallery': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood', 'year_updated': '2007', 'bedrooms': '3', 'latitude': '42.353794', 'zillow_id': '59170501', 'basement': 'None', 'year_built': '1884', 'home_size': '2267', 'roof': None, 'view': 'City, Water', 'home_type': 'Condominium', 'parking_type': 'Off-street, On-street', 'home_detail_link': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/', 'home_info': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/'}, u'zillow': {u'property_size': u'2267', u'bathrooms': u'3.0', u'last_sold_price': u'1325000', u'zestimate_amount': u'2826169', u'tax_value': u'1783000.0', u'zestimate_valuation_range_high': u'2995739', u'tax_year': u'2014', u'zestimate_value_change': u'-16709', u'latitude': u'42.353794', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59170501', u'last_sold_date': u'09/09/2009', u'year_built': u'1884', u'zestimate_valuationRange_low': u'2628337', u'graph_data_link': u'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/#charts-and-data', u'home_size': u'2267', u'longitude': u'-71.079593', u'map_this_home_link': u'http://www.zillow.com/homes/59170501_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02132', u'long': -71.1587218, u'prices': u'399,900', u'address': u'23 Goethe St # 2, Boston, MA', u'lat': 42.2565786, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'427574', u'tax_value': None, u'zestimate_valuation_range_high': u'448953', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.256671', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096807696', u'last_sold_date': None, u'year_built': u'1940', u'zestimate_valuationRange_low': u'401920', u'graph_data_link': None, u'home_size': u'1370', u'longitude': u'-71.158866', u'map_this_home_link': u'http://www.zillow.com/homes/2096807696_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/23-Goethe-St-2-Boston-MA-02132/2096807696_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.08661099999999, u'prices': u'599,000', u'address': u'100 Maple St, Boston, MA', u'lat': 42.3075847, u'zillow': {u'property_size': u'7157', u'bathrooms': None, u'last_sold_price': u'3360981', u'zestimate_amount': u'695455', u'tax_value': u'426577.0', u'zestimate_valuation_range_high': u'785864', u'tax_year': u'2015', u'zestimate_value_change': u'-9334', u'latitude': u'42.289875', u'zestimate_percentile': u'0', u'bedrooms': None, u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'90139732', u'last_sold_date': u'02/19/1992', u'year_built': u'1925', u'zestimate_valuationRange_low': u'598091', u'graph_data_link': u'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/#charts-and-data', u'home_size': u'16857', u'longitude': u'-71.156478', u'map_this_home_link': u'http://www.zillow.com/homes/90139732_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.11666129999999, u'prices': u'669,000', u'address': u'801 Centre St # 3C, Boston, MA', u'lat': 42.3092487, u'zillow': {u'property_size': u'1916', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'817363', u'tax_value': None, u'zestimate_valuation_range_high': u'858231', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.30924', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097055956', u'last_sold_date': None, u'year_built': u'1899', u'zestimate_valuationRange_low': u'776495', u'graph_data_link': None, u'home_size': u'1916', u'longitude': u'-71.1166', u'map_this_home_link': u'http://www.zillow.com/homes/2097055956_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/801-Centre-St-3C-Boston-MA-02130/2097055956_zpid/'}}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'1,540,000', u'address': u'505 Tremont St UNIT 417, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'389,000', u'address': u'16 Chelmsford St UNIT 2, Dorchester, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'399,500', u'address': u'1391 Hyde Park Ave STE G, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'1,300,000', u'address': u'1 Franklin St # 1601, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0522963, u'prices': u'479,000', u'address': u'29 Houghton St # 1, Boston, MA', u'lat': 42.295264, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'472901', u'tax_value': None, u'zestimate_valuation_range_high': u'501275', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.295223', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096881071', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'439798', u'graph_data_link': None, u'home_size': u'1400', u'longitude': u'-71.052345', u'map_this_home_link': u'http://www.zillow.com/homes/2096881071_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/29-Houghton-St-1-Boston-MA-02122/2096881071_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0559853, u'prices': u'875,000', u'address': u'28 Woodward St # 1, Boston, MA', u'lat': 42.3314431, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'899088', u'tax_value': None, u'zestimate_valuation_range_high': u'1123860', u'tax_year': None, u'zestimate_value_change': u'-17891', u'latitude': u'42.331474', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2107330626', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'674316', u'graph_data_link': None, u'home_size': u'1700', u'longitude': u'-71.055931', u'map_this_home_link': u'http://www.zillow.com/homes/2107330626_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/28-Woodward-St-1-Boston-MA-02127/2107330626_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02131', u'long': -71.1230212, u'prices': u'549,500', u'address': u'12 Mosgrove Ave, Boston, MA', u'lat': 42.2919334, u'zillow': {u'property_size': u'5530', u'bathrooms': u'2.0', u'last_sold_price': u'250000', u'zestimate_amount': u'621969', u'tax_value': u'382100.0', u'zestimate_valuation_range_high': u'653067', u'tax_year': u'2014', u'zestimate_value_change': u'-8375', u'latitude': u'42.291848', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59144888', u'last_sold_date': u'02/25/2015', u'year_built': u'1901', u'zestimate_valuationRange_low': u'590871', u'graph_data_link': u'http://www.zillow.com/homedetails/12-Mosgrove-Ave-Boston-MA-02131/59144888_zpid/#charts-and-data', u'home_size': u'1950', u'longitude': u'-71.123093', u'map_this_home_link': u'http://www.zillow.com/homes/59144888_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/12-Mosgrove-Ave-Boston-MA-02131/59144888_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0446874, u'prices': u'769,000', u'address': u'235 Victory Rd UNIT 235, Quincy, MA', u'lat': 42.2994295, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'474680', u'zestimate_amount': u'787351', u'tax_value': u'630200.0', u'zestimate_valuation_range_high': u'826719', u'tax_year': u'2014', u'zestimate_value_change': u'7402', u'latitude': u'42.299416', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'56605009', u'last_sold_date': u'11/24/1999', u'year_built': u'1999', u'zestimate_valuationRange_low': u'747983', u'graph_data_link': u'http://www.zillow.com/homedetails/235-Victory-Rd-UNIT-235-Quincy-MA-02171/56605009_zpid/#charts-and-data', u'home_size': u'2286', u'longitude': u'-71.044724', u'map_this_home_link': u'http://www.zillow.com/homes/56605009_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/235-Victory-Rd-UNIT-235-Quincy-MA-02171/56605009_zpid/'}}, {u'status': u'For Sale by Owner', u'zip': u'02134', u'long': -71.131332, u'prices': u'549,000', u'address': u'29 Brainerd Rd, Boston, MA', u'lat': 42.3486087, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'420929', u'tax_value': None, u'zestimate_valuation_range_high': u'446185', u'tax_year': None, u'zestimate_value_change': u'16295', u'latitude': u'42.34912', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097576158', u'last_sold_date': None, u'year_built': u'1904', u'zestimate_valuationRange_low': u'378836', u'graph_data_link': None, u'home_size': u'850', u'longitude': u'-71.13047', u'map_this_home_link': u'http://www.zillow.com/homes/2097576158_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/29-Brainerd-Rd-Boston-MA-02134/2097576158_zpid/'}}, {u'status': u'Townhouse For Sale', u'zip': u'02130', u'long': -71.1157648, u'prices': u'749,000', u'address': u'5 Atwood Sq # 5, Boston, MA', u'lat': 42.3072151, u'zillow': {u'property_size': None, u'bathrooms': u'2.5', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.307212', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096375498', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'1603', u'longitude': u'-71.115613', u'map_this_home_link': u'http://www.zillow.com/homes/2096375498_zpid/', u'home_type': u'Townhouse', u'home_detail_link': u'http://www.zillow.com/homedetails/5-Atwood-Sq-5-Boston-MA-02130/2096375498_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.05405100000002, u'prices': u'849,000', u'address': u'321 Dorchester St # 1, Boston, MA', u'lat': 42.331281, 'property': {'neighborhood': None, 'bathrooms': '3.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'Newly renovated spacious 3 bed plus office duplex in up and coming Andrew Square, just moments from where Washington Village will begin construction soon. The main living space boasts a large open floor plan and designer kitchen. Main level has two full bedrooms, one full bath and a half bath off the kitchen for your guests. The lower level offers two more bedrooms and one that could be used specifically for a home office with the convenience of an exterior door. This boutique building leaves nothing to be desired. It could be the perfect first home with plenty of space to grow or an investors dream, 4 bedrooms minutes from public transportation in a area filled with trendy restaurants and bars. After a long day, make your way up to your common roof deck with views reaching Boston Harbor and downtown. Be one of the first to enjoy and make the investment into Andrew Square before the pricing catches up to the rest of South Boston!', 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497571_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '4', 'latitude': '42.33145', 'zillow_id': '2096497571', 'basement': None, 'year_built': None, 'home_size': '2400', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497571_zpid/', 'home_info': 'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497571_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'925305', u'tax_value': None, u'zestimate_valuation_range_high': u'971570', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.33145', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096497571', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'879040', u'graph_data_link': None, u'home_size': u'2400', u'longitude': u'-71.05343', u'map_this_home_link': u'http://www.zillow.com/homes/2096497571_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497571_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02125', u'long': -71.049533, u'prices': u'899,000', u'address': u'54 Grampian Way, Dorchester, MA', u'lat': 42.312072, u'zillow': {u'property_size': u'6534', u'bathrooms': u'2.0', u'last_sold_price': u'197000', u'zestimate_amount': u'769717', u'tax_value': u'499300.0', u'zestimate_valuation_range_high': u'877477', u'tax_year': u'2015', u'zestimate_value_change': u'-25499', u'latitude': u'42.312059', u'zestimate_percentile': u'0', u'bedrooms': u'5', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59113320', u'last_sold_date': u'12/11/1998', u'year_built': u'1885', u'zestimate_valuationRange_low': u'692745', u'graph_data_link': u'http://www.zillow.com/homedetails/54-Grampian-Way-Dorchester-MA-02125/59113320_zpid/#charts-and-data', u'home_size': u'2423', u'longitude': u'-71.049545', u'map_this_home_link': u'http://www.zillow.com/homes/59113320_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/54-Grampian-Way-Dorchester-MA-02125/59113320_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.171084, u'prices': u'849,000', u'address': u'129 Gardner St, Boston, MA', u'lat': 42.277522, u'zillow': {u'property_size': u'6969', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'858867', u'tax_value': None, u'zestimate_valuation_range_high': u'1039229', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.277522', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096677074', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'695682', u'graph_data_link': None, u'home_size': u'2800', u'longitude': u'-71.171084', u'map_this_home_link': u'http://www.zillow.com/homes/2096677074_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/129-Gardner-St-Boston-MA-02132/2096677074_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.1162116, u'prices': u'529,000', u'address': u'7-9 Herbertson # 2, Jamaica Plain, MA', u'lat': 42.2920089, u'zillow': {u'property_size': u'9999', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'595133', u'tax_value': None, u'zestimate_valuation_range_high': u'761770', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.292142', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096675064', u'last_sold_date': None, u'year_built': u'1925', u'zestimate_valuationRange_low': u'458252', u'graph_data_link': None, u'home_size': u'1260', u'longitude': u'-71.116361', u'map_this_home_link': u'http://www.zillow.com/homes/2096675064_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/7-9-Herbertson-2-Jamaica-Plain-MA-02130/2096675064_zpid/'}}, {u'status': u'House For Sale', u'zip': None, u'long': -1, u'prices': u'739,900', u'address': u'31 Maple St, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'675,000', u'address': u'255 Northampton St UNIT 501, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'339,900', u'address': u'43 Parkvale Ave APT 5, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'339,000', u'address': u'53 Torrey St # 2, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0522682, u'prices': u'479,000', u'address': u'31 Houghton St # 2, Boston, MA', u'lat': 42.2952453, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'471644', u'tax_value': None, u'zestimate_valuation_range_high': u'499943', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.295265', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096881020', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'438629', u'graph_data_link': None, u'home_size': u'1400', u'longitude': u'-71.052066', u'map_this_home_link': u'http://www.zillow.com/homes/2096881020_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/31-Houghton-St-2-Boston-MA-02122/2096881020_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02124', u'long': -71.089551, u'prices': u'284,999', u'address': u'10 Arbutus St, Dorchester Center, MA', u'lat': 42.2879239, u'zillow': {u'property_size': u'2613', u'bathrooms': u'2.0', u'last_sold_price': u'192079', u'zestimate_amount': u'280016', u'tax_value': u'156300.0', u'zestimate_valuation_range_high': u'305217', u'tax_year': u'2014', u'zestimate_value_change': u'4024', u'latitude': u'42.287927', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59102139', u'last_sold_date': u'09/19/2005', u'year_built': u'1991', u'zestimate_valuationRange_low': u'252014', u'graph_data_link': u'http://www.zillow.com/homedetails/10-Arbutus-St-Dorchester-Center-MA-02124/59102139_zpid/#charts-and-data', u'home_size': u'1520', u'longitude': u'-71.089552', u'map_this_home_link': u'http://www.zillow.com/homes/59102139_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/10-Arbutus-St-Dorchester-Center-MA-02124/59102139_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.080952, u'prices': u'399,000', u'address': u'181 Glenway St, Dorchester, MA', u'lat': 42.296947, u'zillow': {u'property_size': u'5662', u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'443293', u'tax_value': u'242000.0', u'zestimate_valuation_range_high': u'469891', u'tax_year': u'2015', u'zestimate_value_change': u'1434', u'latitude': u'42.296947', u'zestimate_percentile': u'0', u'bedrooms': u'5', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59112097', u'last_sold_date': None, u'year_built': u'1890', u'zestimate_valuationRange_low': u'407830', u'graph_data_link': u'http://www.zillow.com/homedetails/181-Glenway-St-Dorchester-MA-02121/59112097_zpid/#charts-and-data', u'home_size': u'2684', u'longitude': u'-71.080952', u'map_this_home_link': u'http://www.zillow.com/homes/59112097_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/181-Glenway-St-Dorchester-MA-02121/59112097_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'345,000', u'address': u'53 Torrey St # 3, Boston, MA', u'lat': 42.287372, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'New renovation an easy walk to both the Ashmont and Shawmut stops on the red line. This penthouse unit features an open floor plan with oak floors, granite countertops, breakfast bar and stainless steel appliances. Central air and washer dryer hookups as well as storage are included. Private front and back decks as well as a common driveway and large fenced yard all add to the charm. New windows all around a newly renovated exterior, a good deal of new plumbing and wiring with a newer roof make this property an excellent value and an ideal starter home.', 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': '2016', 'bedrooms': '2', 'latitude': '42.287282', 'zillow_id': '2096896512', 'basement': None, 'year_built': '1920', 'home_size': '1000', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/', 'home_info': 'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'386209', u'tax_value': None, u'zestimate_valuation_range_high': u'544555', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.287282', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096896512', u'last_sold_date': None, u'year_built': u'1920', u'zestimate_valuationRange_low': u'254898', u'graph_data_link': None, u'home_size': u'1000', u'longitude': u'-71.073797', u'map_this_home_link': u'http://www.zillow.com/homes/2096896512_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0795012, u'prices': u'2,495,000', u'address': u'242 Beacon St APT 6, Boston, MA', u'lat': 42.3536559, u'zillow': {u'property_size': u'2267', u'bathrooms': u'3.0', u'last_sold_price': u'1325000', u'zestimate_amount': u'2826169', u'tax_value': u'1783000.0', u'zestimate_valuation_range_high': u'2995739', u'tax_year': u'2014', u'zestimate_value_change': u'-16709', u'latitude': u'42.353794', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59170501', u'last_sold_date': u'09/09/2009', u'year_built': u'1884', u'zestimate_valuationRange_low': u'2628337', u'graph_data_link': u'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/#charts-and-data', u'home_size': u'2267', u'longitude': u'-71.079593', u'map_this_home_link': u'http://www.zillow.com/homes/59170501_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02132', u'long': -71.1587218, u'prices': u'399,900', u'address': u'23 Goethe St # 2, Boston, MA', u'lat': 42.2565786}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.08661099999999, u'prices': u'599,000', u'address': u'100 Maple St, Boston, MA', u'lat': 42.3075847}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.11666129999999, u'prices': u'669,000', u'address': u'801 Centre St # 3C, Boston, MA', u'lat': 42.3092487}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0703915, u'prices': u'1,540,000', u'address': u'505 Tremont St UNIT 417, Boston, MA', u'lat': 42.3450221}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0540671, u'prices': u'389,000', u'address': u'16 Chelmsford St UNIT 2, Dorchester, MA', u'lat': 42.284953}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'399,500', u'address': u'1391 Hyde Park Ave STE G, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'1,300,000', u'address': u'1 Franklin St # 1601, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'479,000', u'address': u'29 Houghton St # 1, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0559853, u'prices': u'875,000', u'address': u'28 Woodward St # 1, Boston, MA', u'lat': 42.3314431}, {u'status': u'Condo For Sale', u'zip': u'02131', u'long': -71.1230212, u'prices': u'549,500', u'address': u'12 Mosgrove Ave, Boston, MA', u'lat': 42.2919334, u'zillow': {u'property_size': u'5530', u'bathrooms': u'2.0', u'last_sold_price': u'250000', u'zestimate_amount': u'621969', u'tax_value': u'382100.0', u'zestimate_valuation_range_high': u'653067', u'tax_year': u'2014', u'zestimate_value_change': u'-8375', u'latitude': u'42.291848', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59144888', u'last_sold_date': u'02/25/2015', u'year_built': u'1901', u'zestimate_valuationRange_low': u'590871', u'graph_data_link': u'http://www.zillow.com/homedetails/12-Mosgrove-Ave-Boston-MA-02131/59144888_zpid/#charts-and-data', u'home_size': u'1950', u'longitude': u'-71.123093', u'map_this_home_link': u'http://www.zillow.com/homes/59144888_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/12-Mosgrove-Ave-Boston-MA-02131/59144888_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0446874, u'prices': u'769,000', u'address': u'235 Victory Rd UNIT 235, Quincy, MA', u'lat': 42.2994295, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'474680', u'zestimate_amount': u'787351', u'tax_value': u'630200.0', u'zestimate_valuation_range_high': u'826719', u'tax_year': u'2014', u'zestimate_value_change': u'7402', u'latitude': u'42.299416', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'56605009', u'last_sold_date': u'11/24/1999', u'year_built': u'1999', u'zestimate_valuationRange_low': u'747983', u'graph_data_link': u'http://www.zillow.com/homedetails/235-Victory-Rd-UNIT-235-Quincy-MA-02171/56605009_zpid/#charts-and-data', u'home_size': u'2286', u'longitude': u'-71.044724', u'map_this_home_link': u'http://www.zillow.com/homes/56605009_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/235-Victory-Rd-UNIT-235-Quincy-MA-02171/56605009_zpid/'}}, {u'status': u'For Sale by Owner', u'zip': u'02134', u'long': -71.131332, u'prices': u'549,000', u'address': u'29 Brainerd Rd, Boston, MA', u'lat': 42.3486087}, {u'status': u'Townhouse For Sale', u'zip': u'02130', u'long': -71.1157648, u'prices': u'749,000', u'address': u'5 Atwood Sq # 5, Boston, MA', u'lat': 42.3072151}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.05405100000002, u'prices': u'849,000', u'address': u'321 Dorchester St # 1, Boston, MA', u'lat': 42.331281, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'766387', u'tax_value': None, u'zestimate_valuation_range_high': u'804706', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.33145', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096497652', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'728068', u'graph_data_link': None, u'home_size': u'1400', u'longitude': u'-71.05343', u'map_this_home_link': u'http://www.zillow.com/homes/2096497652_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497652_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02125', u'long': -71.049533, u'prices': u'899,000', u'address': u'54 Grampian Way, Dorchester, MA', u'lat': 42.312072}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.171084, u'prices': u'849,000', u'address': u'129 Gardner St, Boston, MA', u'lat': 42.277522}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.1162116, u'prices': u'529,000', u'address': u'7-9 Herbertson # 2, Jamaica Plain, MA', u'lat': 42.2920089}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.1544114, u'prices': u'739,900', u'address': u'31 Maple St, Boston, MA', u'lat': 42.287886}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'675,000', u'address': u'255 Northampton St UNIT 501, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'339,900', u'address': u'43 Parkvale Ave APT 5, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'339,000', u'address': u'53 Torrey St # 2, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'479,000', u'address': u'31 Houghton St # 2, Boston, MA', u'lat': -1}, {u'status': u'House For Sale', u'zip': u'02124', u'long': -71.089551, u'prices': u'284,999', u'address': u'10 Arbutus St, Dorchester Center, MA', u'lat': 42.2879239, u'zillow': {u'property_size': u'2613', u'bathrooms': u'2.0', u'last_sold_price': u'192079', u'zestimate_amount': u'280016', u'tax_value': u'156300.0', u'zestimate_valuation_range_high': u'305217', u'tax_year': u'2014', u'zestimate_value_change': u'4024', u'latitude': u'42.287927', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59102139', u'last_sold_date': u'09/19/2005', u'year_built': u'1991', u'zestimate_valuationRange_low': u'252014', u'graph_data_link': u'http://www.zillow.com/homedetails/10-Arbutus-St-Dorchester-Center-MA-02124/59102139_zpid/#charts-and-data', u'home_size': u'1520', u'longitude': u'-71.089552', u'map_this_home_link': u'http://www.zillow.com/homes/59102139_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/10-Arbutus-St-Dorchester-Center-MA-02124/59102139_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.080952, u'prices': u'399,000', u'address': u'181 Glenway St, Dorchester, MA', u'lat': 42.296947}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'345,000', u'address': u'53 Torrey St # 3, Boston, MA', u'lat': 42.287372, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'386209', u'tax_value': None, u'zestimate_valuation_range_high': u'544555', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.287282', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096896512', u'last_sold_date': None, u'year_built': u'1920', u'zestimate_valuationRange_low': u'254898', u'graph_data_link': None, u'home_size': u'1000', u'longitude': u'-71.073797', u'map_this_home_link': u'http://www.zillow.com/homes/2096896512_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0795012, u'prices': u'2,495,000', u'address': u'242 Beacon St APT 6, Boston, MA', u'lat': 42.3536559}, {u'status': u'Condo For Sale', u'zip': u'02132', u'long': -71.1587218, u'prices': u'399,900', u'address': u'23 Goethe St # 2, Boston, MA', u'lat': 42.2565786}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.08661099999999, u'prices': u'599,000', u'address': u'100 Maple St, Boston, MA', u'lat': 42.3075847}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.11666129999999, u'prices': u'669,000', u'address': u'801 Centre St # 3C, Boston, MA', u'lat': 42.3092487}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0703915, u'prices': u'1,540,000', u'address': u'505 Tremont St UNIT 417, Boston, MA', u'lat': 42.3450221, u'zillow': {u'property_size': u'1364', u'bathrooms': u'2.0', u'last_sold_price': u'1088000', u'zestimate_amount': u'1678483', u'tax_value': u'1132500.0', u'zestimate_valuation_range_high': u'1896686', u'tax_year': u'2014', u'zestimate_value_change': u'-21974', u'latitude': u'42.345039', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'67710271', u'last_sold_date': u'05/30/2008', u'year_built': u'2004', u'zestimate_valuationRange_low': u'1594559', u'graph_data_link': u'http://www.zillow.com/homedetails/505-Tremont-St-UNIT-417-Boston-MA-02116/67710271_zpid/#charts-and-data', u'home_size': u'1364', u'longitude': u'-71.070299', u'map_this_home_link': u'http://www.zillow.com/homes/67710271_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/505-Tremont-St-UNIT-417-Boston-MA-02116/67710271_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0540671, u'prices': u'389,000', u'address': u'16 Chelmsford St UNIT 2, Dorchester, MA', u'lat': 42.284953}, {u'status': u'Condo For Sale', u'zip': u'02136', u'long': -71.12602799999999, u'prices': u'399,500', u'address': u'1391 Hyde Park Ave STE G, Boston, MA', u'lat': 42.2511409, u'zillow': {u'property_size': u'3484', u'bathrooms': u'1.0', u'last_sold_price': u'310000', u'zestimate_amount': u'399402', u'tax_value': u'450000.0', u'zestimate_valuation_range_high': u'463306', u'tax_year': u'2014', u'zestimate_value_change': u'-12511', u'latitude': u'42.250944', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81855097', u'last_sold_date': u'03/17/2014', u'year_built': u'1950', u'zestimate_valuationRange_low': u'343486', u'graph_data_link': u'http://www.zillow.com/homedetails/1391-Hyde-Park-Ave-STE-G-Boston-MA-02136/81855097_zpid/#charts-and-data', u'home_size': u'1570', u'longitude': u'-71.125871', u'map_this_home_link': u'http://www.zillow.com/homes/81855097_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1391-Hyde-Park-Ave-STE-G-Boston-MA-02136/81855097_zpid/'}}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'1,300,000', u'address': u'1 Franklin St # 1601, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'479,000', u'address': u'29 Houghton St # 1, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'875,000', u'address': u'28 Woodward St # 1, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'549,500', u'address': u'12 Mosgrove Ave, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0446874, u'prices': u'769,000', u'address': u'235 Victory Rd UNIT 235, Quincy, MA', u'lat': 42.2994295}, {u'status': u'For Sale by Owner', u'zip': u'02134', u'long': -71.131332, u'prices': u'549,000', u'address': u'29 Brainerd Rd, Boston, MA', u'lat': 42.3486087, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'420929', u'tax_value': None, u'zestimate_valuation_range_high': u'446185', u'tax_year': None, u'zestimate_value_change': u'16295', u'latitude': u'42.34912', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097576158', u'last_sold_date': None, u'year_built': u'1904', u'zestimate_valuationRange_low': u'378836', u'graph_data_link': None, u'home_size': u'850', u'longitude': u'-71.13047', u'map_this_home_link': u'http://www.zillow.com/homes/2097576158_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/29-Brainerd-Rd-Boston-MA-02134/2097576158_zpid/'}}, {u'status': u'Townhouse For Sale', u'zip': u'02130', u'long': -71.1157648, u'prices': u'749,000', u'address': u'5 Atwood Sq # 5, Boston, MA', u'lat': 42.3072151}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.05405100000002, u'prices': u'849,000', u'address': u'321 Dorchester St # 1, Boston, MA', u'lat': 42.331281, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'925305', u'tax_value': None, u'zestimate_valuation_range_high': u'971570', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.33145', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096497571', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'879040', u'graph_data_link': None, u'home_size': u'2400', u'longitude': u'-71.05343', u'map_this_home_link': u'http://www.zillow.com/homes/2096497571_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497571_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02125', u'long': -71.049533, u'prices': u'899,000', u'address': u'54 Grampian Way, Dorchester, MA', u'lat': 42.312072}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.171084, u'prices': u'849,000', u'address': u'129 Gardner St, Boston, MA', u'lat': 42.277522, u'zillow': {u'property_size': u'6969', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'858867', u'tax_value': None, u'zestimate_valuation_range_high': u'1039229', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.277522', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096677074', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'695682', u'graph_data_link': None, u'home_size': u'2800', u'longitude': u'-71.171084', u'map_this_home_link': u'http://www.zillow.com/homes/2096677074_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/129-Gardner-St-Boston-MA-02132/2096677074_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.1162116, u'prices': u'529,000', u'address': u'7-9 Herbertson # 2, Jamaica Plain, MA', u'lat': 42.2920089, u'zillow': {u'property_size': u'9999', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'595133', u'tax_value': None, u'zestimate_valuation_range_high': u'761770', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.292142', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096675064', u'last_sold_date': None, u'year_built': u'1925', u'zestimate_valuationRange_low': u'458252', u'graph_data_link': None, u'home_size': u'1260', u'longitude': u'-71.116361', u'map_this_home_link': u'http://www.zillow.com/homes/2096675064_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/7-9-Herbertson-2-Jamaica-Plain-MA-02130/2096675064_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.1544114, u'prices': u'739,900', u'address': u'31 Maple St, Boston, MA', u'lat': 42.287886}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.0814012, u'prices': u'675,000', u'address': u'255 Northampton St UNIT 501, Boston, MA', u'lat': 42.3394238}, {u'status': u'Condo For Sale', u'zip': u'02134', u'long': -71.1329925, u'prices': u'339,900', u'address': u'43 Parkvale Ave APT 5, Boston, MA', u'lat': 42.3523208, u'zillow': {u'property_size': u'578', u'bathrooms': u'1.0', u'last_sold_price': u'197000', u'zestimate_amount': u'343185', u'tax_value': u'183100.0', u'zestimate_valuation_range_high': u'360344', u'tax_year': u'2014', u'zestimate_value_change': None, u'latitude': u'42.351999', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59088144', u'last_sold_date': u'08/31/2006', u'year_built': u'1910', u'zestimate_valuationRange_low': u'326026', u'graph_data_link': u'http://www.zillow.com/homedetails/43-Parkvale-Ave-APT-5-Boston-MA-02134/59088144_zpid/#charts-and-data', u'home_size': u'578', u'longitude': u'-71.133272', u'map_this_home_link': u'http://www.zillow.com/homes/59088144_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/43-Parkvale-Ave-APT-5-Boston-MA-02134/59088144_zpid/'}}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'339,000', u'address': u'53 Torrey St # 2, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'479,000', u'address': u'31 Houghton St # 2, Boston, MA', u'lat': -1}, {u'status': u'House For Sale', u'zip': None, u'long': -1, u'prices': u'284,999', u'address': u'10 Arbutus St, Dorchester Center, MA', u'lat': -1}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.080952, u'prices': u'399,000', u'address': u'181 Glenway St, Dorchester, MA', u'lat': 42.296947}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'345,000', u'address': u'53 Torrey St # 3, Boston, MA', u'lat': 42.287372}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0795012, u'prices': u'2,495,000', u'address': u'242 Beacon St APT 6, Boston, MA', u'lat': 42.3536559, u'zillow': {u'property_size': u'2267', u'bathrooms': u'3.0', u'last_sold_price': u'1325000', u'zestimate_amount': u'2826169', u'tax_value': u'1783000.0', u'zestimate_valuation_range_high': u'2995739', u'tax_year': u'2014', u'zestimate_value_change': u'-16709', u'latitude': u'42.353794', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59170501', u'last_sold_date': u'09/09/2009', u'year_built': u'1884', u'zestimate_valuationRange_low': u'2628337', u'graph_data_link': u'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/#charts-and-data', u'home_size': u'2267', u'longitude': u'-71.079593', u'map_this_home_link': u'http://www.zillow.com/homes/59170501_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02132', u'long': -71.1587218, u'prices': u'399,900', u'address': u'23 Goethe St # 2, Boston, MA', u'lat': 42.2565786, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'427574', u'tax_value': None, u'zestimate_valuation_range_high': u'448953', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.256671', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096807696', u'last_sold_date': None, u'year_built': u'1940', u'zestimate_valuationRange_low': u'401920', u'graph_data_link': None, u'home_size': u'1370', u'longitude': u'-71.158866', u'map_this_home_link': u'http://www.zillow.com/homes/2096807696_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/23-Goethe-St-2-Boston-MA-02132/2096807696_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.08661099999999, u'prices': u'599,000', u'address': u'100 Maple St, Boston, MA', u'lat': 42.3075847, u'zillow': {u'property_size': u'7157', u'bathrooms': None, u'last_sold_price': u'3360981', u'zestimate_amount': u'695455', u'tax_value': u'426577.0', u'zestimate_valuation_range_high': u'785864', u'tax_year': u'2015', u'zestimate_value_change': u'-9334', u'latitude': u'42.289875', u'zestimate_percentile': u'0', u'bedrooms': None, u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'90139732', u'last_sold_date': u'02/19/1992', u'year_built': u'1925', u'zestimate_valuationRange_low': u'598091', u'graph_data_link': u'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/#charts-and-data', u'home_size': u'16857', u'longitude': u'-71.156478', u'map_this_home_link': u'http://www.zillow.com/homes/90139732_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.11666129999999, u'prices': u'669,000', u'address': u'801 Centre St # 3C, Boston, MA', u'lat': 42.3092487, u'zillow': {u'property_size': u'1916', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'817363', u'tax_value': None, u'zestimate_valuation_range_high': u'858231', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.30924', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097055956', u'last_sold_date': None, u'year_built': u'1899', u'zestimate_valuationRange_low': u'776495', u'graph_data_link': None, u'home_size': u'1916', u'longitude': u'-71.1166', u'map_this_home_link': u'http://www.zillow.com/homes/2097055956_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/801-Centre-St-3C-Boston-MA-02130/2097055956_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0703915, u'prices': u'1,540,000', u'address': u'505 Tremont St UNIT 417, Boston, MA', u'lat': 42.3450221}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0540671, u'prices': u'389,000', u'address': u'16 Chelmsford St UNIT 2, Dorchester, MA', u'lat': 42.284953, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'261000', u'zestimate_amount': u'381960', u'tax_value': u'212600.0', u'zestimate_valuation_range_high': u'401058', u'tax_year': u'2014', u'zestimate_value_change': u'6502', u'latitude': u'42.28495', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81854555', u'last_sold_date': u'07/11/2006', u'year_built': u'1905', u'zestimate_valuationRange_low': u'362862', u'graph_data_link': u'http://www.zillow.com/homedetails/16-Chelmsford-St-UNIT-2-Dorchester-MA-02122/81854555_zpid/#charts-and-data', u'home_size': u'1061', u'longitude': u'-71.054061', u'map_this_home_link': u'http://www.zillow.com/homes/81854555_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/16-Chelmsford-St-UNIT-2-Dorchester-MA-02122/81854555_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02136', u'long': -71.12602799999999, u'prices': u'399,500', u'address': u'1391 Hyde Park Ave STE G, Boston, MA', u'lat': 42.2511409}, {u'status': u'Condo For Sale', u'zip': u'02108', u'long': -71.05945, u'prices': u'1,300,000', u'address': u'1 Franklin St # 1601, Boston, MA', u'lat': 42.35631, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': \"Gorgeous One Bedroom at Millennium Towers! Towering above the adjacent building, allowing for expansive views of The State House and the Back Bay. A state of the art luxury living at it's best! Private screening room, Residents Only Restaurant and Lounge, Indoor swimming pool with a Miami style flair and Jacuzzi. One of a kind Fitness Center featuring a Boxing Club, Pilates/Yoga Studio/Cycling to name a few. Adjacent to the renovated historic Burnham Building, Millennium Tower will stand at the center of a reinvigorated downtown Boston, home to vibrant retail, and a new Roche Bros. gourmet grocery. Come see why Millennium Tower Boston is the evolution of luxury residential living.\", 'property_size': None, 'num_floors': None, 'heating_system': 'Forced air', 'photo_gallery': 'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Carpet, Hardwood', 'year_updated': None, 'bedrooms': '1', 'latitude': '42.355785', 'zillow_id': '2097180167', 'basement': None, 'year_built': '2016', 'home_size': '923', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/', 'home_info': 'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'945000', u'zestimate_amount': u'1175611', u'tax_value': None, u'zestimate_valuation_range_high': u'1493026', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.355785', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097180167', u'last_sold_date': u'09/15/2016', u'year_built': u'2016', u'zestimate_valuationRange_low': u'846440', u'graph_data_link': None, u'home_size': u'923', u'longitude': u'-71.059526', u'map_this_home_link': u'http://www.zillow.com/homes/2097180167_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/'}}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'479,000', u'address': u'29 Houghton St # 1, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'875,000', u'address': u'28 Woodward St # 1, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'549,500', u'address': u'12 Mosgrove Ave, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0446874, u'prices': u'769,000', u'address': u'235 Victory Rd UNIT 235, Quincy, MA', u'lat': 42.2994295, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': u'474680', u'zestimate_amount': u'787351', u'tax_value': u'630200.0', u'zestimate_valuation_range_high': u'826719', u'tax_year': u'2014', u'zestimate_value_change': u'7402', u'latitude': u'42.299416', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'56605009', u'last_sold_date': u'11/24/1999', u'year_built': u'1999', u'zestimate_valuationRange_low': u'747983', u'graph_data_link': u'http://www.zillow.com/homedetails/235-Victory-Rd-UNIT-235-Quincy-MA-02171/56605009_zpid/#charts-and-data', u'home_size': u'2286', u'longitude': u'-71.044724', u'map_this_home_link': u'http://www.zillow.com/homes/56605009_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/235-Victory-Rd-UNIT-235-Quincy-MA-02171/56605009_zpid/'}}, {u'status': u'For Sale by Owner', u'zip': u'02134', u'long': -71.131332, u'prices': u'549,000', u'address': u'29 Brainerd Rd, Boston, MA', u'lat': 42.3486087}, {u'status': u'Townhouse For Sale', u'zip': u'02130', u'long': -71.1157648, u'prices': u'749,000', u'address': u'5 Atwood Sq # 5, Boston, MA', u'lat': 42.3072151}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.05405100000002, u'prices': u'849,000', u'address': u'321 Dorchester St # 1, Boston, MA', u'lat': 42.331281}, {u'status': u'House For Sale', u'zip': u'02125', u'long': -71.049533, u'prices': u'899,000', u'address': u'54 Grampian Way, Dorchester, MA', u'lat': 42.312072, u'zillow': {u'property_size': u'6534', u'bathrooms': u'2.0', u'last_sold_price': u'197000', u'zestimate_amount': u'769717', u'tax_value': u'499300.0', u'zestimate_valuation_range_high': u'877477', u'tax_year': u'2015', u'zestimate_value_change': u'-25499', u'latitude': u'42.312059', u'zestimate_percentile': u'0', u'bedrooms': u'5', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59113320', u'last_sold_date': u'12/11/1998', u'year_built': u'1885', u'zestimate_valuationRange_low': u'692745', u'graph_data_link': u'http://www.zillow.com/homedetails/54-Grampian-Way-Dorchester-MA-02125/59113320_zpid/#charts-and-data', u'home_size': u'2423', u'longitude': u'-71.049545', u'map_this_home_link': u'http://www.zillow.com/homes/59113320_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/54-Grampian-Way-Dorchester-MA-02125/59113320_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.171084, u'prices': u'849,000', u'address': u'129 Gardner St, Boston, MA', u'lat': 42.277522, u'zillow': {u'property_size': u'6969', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'858867', u'tax_value': None, u'zestimate_valuation_range_high': u'1039229', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.277522', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096677074', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'695682', u'graph_data_link': None, u'home_size': u'2800', u'longitude': u'-71.171084', u'map_this_home_link': u'http://www.zillow.com/homes/2096677074_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/129-Gardner-St-Boston-MA-02132/2096677074_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.1162116, u'prices': u'529,000', u'address': u'7-9 Herbertson # 2, Jamaica Plain, MA', u'lat': 42.2920089, u'zillow': {u'property_size': u'9999', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'595133', u'tax_value': None, u'zestimate_valuation_range_high': u'761770', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.292142', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096675064', u'last_sold_date': None, u'year_built': u'1925', u'zestimate_valuationRange_low': u'458252', u'graph_data_link': None, u'home_size': u'1260', u'longitude': u'-71.116361', u'map_this_home_link': u'http://www.zillow.com/homes/2096675064_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/7-9-Herbertson-2-Jamaica-Plain-MA-02130/2096675064_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.1544114, u'prices': u'739,900', u'address': u'31 Maple St, Boston, MA', u'lat': 42.287886}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.0814012, u'prices': u'675,000', u'address': u'255 Northampton St UNIT 501, Boston, MA', u'lat': 42.3394238}, {u'status': u'Condo For Sale', u'zip': u'02134', u'long': -71.1329925, u'prices': u'339,900', u'address': u'43 Parkvale Ave APT 5, Boston, MA', u'lat': 42.3523208, u'zillow': {u'property_size': u'578', u'bathrooms': u'1.0', u'last_sold_price': u'197000', u'zestimate_amount': u'343185', u'tax_value': u'183100.0', u'zestimate_valuation_range_high': u'360344', u'tax_year': u'2014', u'zestimate_value_change': None, u'latitude': u'42.351999', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59088144', u'last_sold_date': u'08/31/2006', u'year_built': u'1910', u'zestimate_valuationRange_low': u'326026', u'graph_data_link': u'http://www.zillow.com/homedetails/43-Parkvale-Ave-APT-5-Boston-MA-02134/59088144_zpid/#charts-and-data', u'home_size': u'578', u'longitude': u'-71.133272', u'map_this_home_link': u'http://www.zillow.com/homes/59088144_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/43-Parkvale-Ave-APT-5-Boston-MA-02134/59088144_zpid/'}}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'339,000', u'address': u'53 Torrey St # 2, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'479,000', u'address': u'31 Houghton St # 2, Boston, MA', u'lat': -1}, {u'status': u'House For Sale', u'zip': None, u'long': -1, u'prices': u'284,999', u'address': u'10 Arbutus St, Dorchester Center, MA', u'lat': -1}, {u'status': u'House For Sale', u'zip': None, u'long': -1, u'prices': u'399,000', u'address': u'181 Glenway St, Dorchester, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'345,000', u'address': u'53 Torrey St # 3, Boston, MA', u'lat': 42.287372, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'386209', u'tax_value': None, u'zestimate_valuation_range_high': u'544555', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.287282', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096896512', u'last_sold_date': None, u'year_built': u'1920', u'zestimate_valuationRange_low': u'254898', u'graph_data_link': None, u'home_size': u'1000', u'longitude': u'-71.073797', u'map_this_home_link': u'http://www.zillow.com/homes/2096896512_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0795012, u'prices': u'2,495,000', u'address': u'242 Beacon St APT 6, Boston, MA', u'lat': 42.3536559, 'property': {'neighborhood': 'Back Bay', 'bathrooms': '3.0', 'school_district': None, 'heating_sources': 'Other', 'rooms': 'Dining room, Family room, Laundry room, Master bath', 'home_description': 'Waterside renovated three bedroom, two and a half bathroom floor-through condominium. Direct elevator access. Exceptionally well laid-out home featuring a grand living room with fireplace and bow window overlooking the Charles River Esplanade. Large galley offers a breakfast bar and sliding doors to the balcony. Elegant master bedroom suite boasts a bow window and marble fireplace. Central air-conditioning, new bathrooms, well-sized second and third bedrooms. Excellent closet space and ceiling height throughout. Association parking with direct access. 1 Year pre-paid parking will be offered with the sale. Well maintained brownstone that just completed a total restoration. Any idyllic Boston home! ', 'property_size': '2267', 'num_floors': '1', 'heating_system': 'Other', 'photo_gallery': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood', 'year_updated': '2007', 'bedrooms': '3', 'latitude': '42.353794', 'zillow_id': '59170501', 'basement': 'None', 'year_built': '1884', 'home_size': '2267', 'roof': None, 'view': 'City, Water', 'home_type': 'Condominium', 'parking_type': 'Off-street, On-street', 'home_detail_link': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/', 'home_info': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/'}, u'zillow': {u'property_size': u'2267', u'bathrooms': u'3.0', u'last_sold_price': u'1325000', u'zestimate_amount': u'2826169', u'tax_value': u'1783000.0', u'zestimate_valuation_range_high': u'2995739', u'tax_year': u'2014', u'zestimate_value_change': u'-16709', u'latitude': u'42.353794', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59170501', u'last_sold_date': u'09/09/2009', u'year_built': u'1884', u'zestimate_valuationRange_low': u'2628337', u'graph_data_link': u'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/#charts-and-data', u'home_size': u'2267', u'longitude': u'-71.079593', u'map_this_home_link': u'http://www.zillow.com/homes/59170501_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02132', u'long': -71.1587218, u'prices': u'399,900', u'address': u'23 Goethe St # 2, Boston, MA', u'lat': 42.2565786, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'427574', u'tax_value': None, u'zestimate_valuation_range_high': u'448953', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.256671', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096807696', u'last_sold_date': None, u'year_built': u'1940', u'zestimate_valuationRange_low': u'401920', u'graph_data_link': None, u'home_size': u'1370', u'longitude': u'-71.158866', u'map_this_home_link': u'http://www.zillow.com/homes/2096807696_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/23-Goethe-St-2-Boston-MA-02132/2096807696_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.08661099999999, u'prices': u'599,000', u'address': u'100 Maple St, Boston, MA', u'lat': 42.3075847, u'zillow': {u'property_size': u'7157', u'bathrooms': None, u'last_sold_price': u'3360981', u'zestimate_amount': u'695455', u'tax_value': u'426577.0', u'zestimate_valuation_range_high': u'785864', u'tax_year': u'2015', u'zestimate_value_change': u'-9334', u'latitude': u'42.289875', u'zestimate_percentile': u'0', u'bedrooms': None, u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'90139732', u'last_sold_date': u'02/19/1992', u'year_built': u'1925', u'zestimate_valuationRange_low': u'598091', u'graph_data_link': u'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/#charts-and-data', u'home_size': u'16857', u'longitude': u'-71.156478', u'map_this_home_link': u'http://www.zillow.com/homes/90139732_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.11666129999999, u'prices': u'669,000', u'address': u'801 Centre St # 3C, Boston, MA', u'lat': 42.3092487, u'zillow': {u'property_size': u'1916', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'817363', u'tax_value': None, u'zestimate_valuation_range_high': u'858231', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.30924', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097055956', u'last_sold_date': None, u'year_built': u'1899', u'zestimate_valuationRange_low': u'776495', u'graph_data_link': None, u'home_size': u'1916', u'longitude': u'-71.1166', u'map_this_home_link': u'http://www.zillow.com/homes/2097055956_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/801-Centre-St-3C-Boston-MA-02130/2097055956_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0703915, u'prices': u'1,540,000', u'address': u'505 Tremont St UNIT 417, Boston, MA', u'lat': 42.3450221, u'zillow': {u'property_size': u'1364', u'bathrooms': u'2.0', u'last_sold_price': u'1088000', u'zestimate_amount': u'1678483', u'tax_value': u'1132500.0', u'zestimate_valuation_range_high': u'1896686', u'tax_year': u'2014', u'zestimate_value_change': u'-21974', u'latitude': u'42.345039', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'67710271', u'last_sold_date': u'05/30/2008', u'year_built': u'2004', u'zestimate_valuationRange_low': u'1594559', u'graph_data_link': u'http://www.zillow.com/homedetails/505-Tremont-St-UNIT-417-Boston-MA-02116/67710271_zpid/#charts-and-data', u'home_size': u'1364', u'longitude': u'-71.070299', u'map_this_home_link': u'http://www.zillow.com/homes/67710271_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/505-Tremont-St-UNIT-417-Boston-MA-02116/67710271_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0540671, u'prices': u'389,000', u'address': u'16 Chelmsford St UNIT 2, Dorchester, MA', u'lat': 42.284953}, {u'status': u'Condo For Sale', u'zip': u'02136', u'long': -71.12602799999999, u'prices': u'399,500', u'address': u'1391 Hyde Park Ave STE G, Boston, MA', u'lat': 42.2511409}, {u'status': u'Condo For Sale', u'zip': u'02108', u'long': -71.05945, u'prices': u'1,300,000', u'address': u'1 Franklin St # 1601, Boston, MA', u'lat': 42.35631}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0522963, u'prices': u'479,000', u'address': u'29 Houghton St # 1, Boston, MA', u'lat': 42.295264}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'875,000', u'address': u'28 Woodward St # 1, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'549,500', u'address': u'12 Mosgrove Ave, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'769,000', u'address': u'235 Victory Rd UNIT 235, Quincy, MA', u'lat': -1}, {u'status': u'For Sale by Owner', u'zip': None, u'long': -1, u'prices': u'549,000', u'address': u'29 Brainerd Rd, Boston, MA', u'lat': -1}, {u'status': u'Townhouse For Sale', u'zip': u'02130', u'long': -71.1157648, u'prices': u'749,000', u'address': u'5 Atwood Sq # 5, Boston, MA', u'lat': 42.3072151}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.05405100000002, u'prices': u'849,000', u'address': u'321 Dorchester St # 1, Boston, MA', u'lat': 42.331281, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'925305', u'tax_value': None, u'zestimate_valuation_range_high': u'971570', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.33145', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096497571', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'879040', u'graph_data_link': None, u'home_size': u'2400', u'longitude': u'-71.05343', u'map_this_home_link': u'http://www.zillow.com/homes/2096497571_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497571_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02125', u'long': -71.049533, u'prices': u'899,000', u'address': u'54 Grampian Way, Dorchester, MA', u'lat': 42.312072, u'zillow': {u'property_size': u'6534', u'bathrooms': u'2.0', u'last_sold_price': u'197000', u'zestimate_amount': u'769717', u'tax_value': u'499300.0', u'zestimate_valuation_range_high': u'877477', u'tax_year': u'2015', u'zestimate_value_change': u'-25499', u'latitude': u'42.312059', u'zestimate_percentile': u'0', u'bedrooms': u'5', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59113320', u'last_sold_date': u'12/11/1998', u'year_built': u'1885', u'zestimate_valuationRange_low': u'692745', u'graph_data_link': u'http://www.zillow.com/homedetails/54-Grampian-Way-Dorchester-MA-02125/59113320_zpid/#charts-and-data', u'home_size': u'2423', u'longitude': u'-71.049545', u'map_this_home_link': u'http://www.zillow.com/homes/59113320_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/54-Grampian-Way-Dorchester-MA-02125/59113320_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.171084, u'prices': u'849,000', u'address': u'129 Gardner St, Boston, MA', u'lat': 42.277522}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.1162116, u'prices': u'529,000', u'address': u'7-9 Herbertson # 2, Jamaica Plain, MA', u'lat': 42.2920089}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.1544114, u'prices': u'739,900', u'address': u'31 Maple St, Boston, MA', u'lat': 42.287886, u'zillow': {u'property_size': u'4356', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'715295', u'tax_value': u'448800.0', u'zestimate_valuation_range_high': u'765366', u'tax_year': u'2014', u'zestimate_value_change': u'1927', u'latitude': u'42.287908', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59155302', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'665224', u'graph_data_link': u'http://www.zillow.com/homedetails/31-Maple-St-Boston-MA-02132/59155302_zpid/#charts-and-data', u'home_size': u'1847', u'longitude': u'-71.154418', u'map_this_home_link': u'http://www.zillow.com/homes/59155302_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/31-Maple-St-Boston-MA-02132/59155302_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.0814012, u'prices': u'675,000', u'address': u'255 Northampton St UNIT 501, Boston, MA', u'lat': 42.3394238, u'zillow': {u'property_size': u'1057', u'bathrooms': u'1.0', u'last_sold_price': u'475000', u'zestimate_amount': u'782221', u'tax_value': u'509100.0', u'zestimate_valuation_range_high': u'821332', u'tax_year': u'2014', u'zestimate_value_change': u'-38684', u'latitude': u'42.339385', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'87796106', u'last_sold_date': u'09/03/2010', u'year_built': u'2006', u'zestimate_valuationRange_low': u'743110', u'graph_data_link': u'http://www.zillow.com/homedetails/255-Northampton-St-UNIT-501-Boston-MA-02118/87796106_zpid/#charts-and-data', u'home_size': u'1057', u'longitude': u'-71.081382', u'map_this_home_link': u'http://www.zillow.com/homes/87796106_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/255-Northampton-St-UNIT-501-Boston-MA-02118/87796106_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02134', u'long': -71.1329925, u'prices': u'339,900', u'address': u'43 Parkvale Ave APT 5, Boston, MA', u'lat': 42.3523208}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'339,000', u'address': u'53 Torrey St # 2, Boston, MA', u'lat': 42.287372, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'New renovation an easy walk to both the Ashmont and Shawmut stops on the red line. This penthouse unit features an open floor plan with oak floors, granite countertops, breakfast bar and stainless steel appliances. Central air and washer dryer hookups as well as storage are included. Private front and back decks as well as a common driveway and large fenced yard all add to the charm. New windows all around a newly renovated exterior, a good deal of new plumbing and wiring with a newer roof make this property an excellent value and an ideal starter home.\\n\\nFirst open house this Sunday 10/9 from 12:00 to 1pm.', 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': '2016', 'bedrooms': '2', 'latitude': '42.287284', 'zillow_id': '2096823174', 'basement': None, 'year_built': '1920', 'home_size': '1000', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/', 'home_info': 'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'386209', u'tax_value': None, u'zestimate_valuation_range_high': u'544555', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.287284', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096823174', u'last_sold_date': None, u'year_built': u'1920', u'zestimate_valuationRange_low': u'254898', u'graph_data_link': None, u'home_size': u'1000', u'longitude': u'-71.073818', u'map_this_home_link': u'http://www.zillow.com/homes/2096823174_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0522682, u'prices': u'479,000', u'address': u'31 Houghton St # 2, Boston, MA', u'lat': 42.2952453, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'471644', u'tax_value': None, u'zestimate_valuation_range_high': u'499943', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.295265', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096881020', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'438629', u'graph_data_link': None, u'home_size': u'1400', u'longitude': u'-71.052066', u'map_this_home_link': u'http://www.zillow.com/homes/2096881020_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/31-Houghton-St-2-Boston-MA-02122/2096881020_zpid/'}}, {u'status': u'House For Sale', u'zip': None, u'long': -1, u'prices': u'284,999', u'address': u'10 Arbutus St, Dorchester Center, MA', u'lat': -1}, {u'status': u'House For Sale', u'zip': None, u'long': -1, u'prices': u'399,000', u'address': u'181 Glenway St, Dorchester, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'345,000', u'address': u'53 Torrey St # 3, Boston, MA', u'lat': 42.287372}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0795012, u'prices': u'2,495,000', u'address': u'242 Beacon St APT 6, Boston, MA', u'lat': 42.3536559, 'property': {'neighborhood': 'Back Bay', 'bathrooms': '3.0', 'school_district': None, 'heating_sources': 'Other', 'rooms': 'Dining room, Family room, Laundry room, Master bath', 'home_description': 'Waterside renovated three bedroom, two and a half bathroom floor-through condominium. Direct elevator access. Exceptionally well laid-out home featuring a grand living room with fireplace and bow window overlooking the Charles River Esplanade. Large galley offers a breakfast bar and sliding doors to the balcony. Elegant master bedroom suite boasts a bow window and marble fireplace. Central air-conditioning, new bathrooms, well-sized second and third bedrooms. Excellent closet space and ceiling height throughout. Association parking with direct access. 1 Year pre-paid parking will be offered with the sale. Well maintained brownstone that just completed a total restoration. Any idyllic Boston home! ', 'property_size': '2267', 'num_floors': '1', 'heating_system': 'Other', 'photo_gallery': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood', 'year_updated': '2007', 'bedrooms': '3', 'latitude': '42.353794', 'zillow_id': '59170501', 'basement': 'None', 'year_built': '1884', 'home_size': '2267', 'roof': None, 'view': 'City, Water', 'home_type': 'Condominium', 'parking_type': 'Off-street, On-street', 'home_detail_link': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/', 'home_info': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/'}, u'zillow': {u'property_size': u'2267', u'bathrooms': u'3.0', u'last_sold_price': u'1325000', u'zestimate_amount': u'2826169', u'tax_value': u'1783000.0', u'zestimate_valuation_range_high': u'2995739', u'tax_year': u'2014', u'zestimate_value_change': u'-16709', u'latitude': u'42.353794', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59170501', u'last_sold_date': u'09/09/2009', u'year_built': u'1884', u'zestimate_valuationRange_low': u'2628337', u'graph_data_link': u'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/#charts-and-data', u'home_size': u'2267', u'longitude': u'-71.079593', u'map_this_home_link': u'http://www.zillow.com/homes/59170501_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02132', u'long': -71.1587218, u'prices': u'399,900', u'address': u'23 Goethe St # 2, Boston, MA', u'lat': 42.2565786}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.08661099999999, u'prices': u'599,000', u'address': u'100 Maple St, Boston, MA', u'lat': 42.3075847}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.11666129999999, u'prices': u'669,000', u'address': u'801 Centre St # 3C, Boston, MA', u'lat': 42.3092487, u'zillow': {u'property_size': u'1916', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'817363', u'tax_value': None, u'zestimate_valuation_range_high': u'858231', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.30924', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097055956', u'last_sold_date': None, u'year_built': u'1899', u'zestimate_valuationRange_low': u'776495', u'graph_data_link': None, u'home_size': u'1916', u'longitude': u'-71.1166', u'map_this_home_link': u'http://www.zillow.com/homes/2097055956_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/801-Centre-St-3C-Boston-MA-02130/2097055956_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0703915, u'prices': u'1,540,000', u'address': u'505 Tremont St UNIT 417, Boston, MA', u'lat': 42.3450221}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0540671, u'prices': u'389,000', u'address': u'16 Chelmsford St UNIT 2, Dorchester, MA', u'lat': 42.284953}, {u'status': u'Condo For Sale', u'zip': u'02136', u'long': -71.12602799999999, u'prices': u'399,500', u'address': u'1391 Hyde Park Ave STE G, Boston, MA', u'lat': 42.2511409, u'zillow': {u'property_size': u'3484', u'bathrooms': u'1.0', u'last_sold_price': u'310000', u'zestimate_amount': u'399402', u'tax_value': u'450000.0', u'zestimate_valuation_range_high': u'463306', u'tax_year': u'2014', u'zestimate_value_change': u'-12511', u'latitude': u'42.250944', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81855097', u'last_sold_date': u'03/17/2014', u'year_built': u'1950', u'zestimate_valuationRange_low': u'343486', u'graph_data_link': u'http://www.zillow.com/homedetails/1391-Hyde-Park-Ave-STE-G-Boston-MA-02136/81855097_zpid/#charts-and-data', u'home_size': u'1570', u'longitude': u'-71.125871', u'map_this_home_link': u'http://www.zillow.com/homes/81855097_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1391-Hyde-Park-Ave-STE-G-Boston-MA-02136/81855097_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02108', u'long': -71.05945, u'prices': u'1,300,000', u'address': u'1 Franklin St # 1601, Boston, MA', u'lat': 42.35631}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0522963, u'prices': u'479,000', u'address': u'29 Houghton St # 1, Boston, MA', u'lat': 42.295264, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'472901', u'tax_value': None, u'zestimate_valuation_range_high': u'501275', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.295223', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096881071', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'439798', u'graph_data_link': None, u'home_size': u'1400', u'longitude': u'-71.052345', u'map_this_home_link': u'http://www.zillow.com/homes/2096881071_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/29-Houghton-St-1-Boston-MA-02122/2096881071_zpid/'}}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'875,000', u'address': u'28 Woodward St # 1, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'549,500', u'address': u'12 Mosgrove Ave, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'769,000', u'address': u'235 Victory Rd UNIT 235, Quincy, MA', u'lat': -1}, {u'status': u'For Sale by Owner', u'zip': None, u'long': -1, u'prices': u'549,000', u'address': u'29 Brainerd Rd, Boston, MA', u'lat': -1}, {u'status': u'Townhouse For Sale', u'zip': u'02130', u'long': -71.1157648, u'prices': u'749,000', u'address': u'5 Atwood Sq # 5, Boston, MA', u'lat': 42.3072151}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.05405100000002, u'prices': u'849,000', u'address': u'321 Dorchester St # 1, Boston, MA', u'lat': 42.331281}, {u'status': u'House For Sale', u'zip': u'02125', u'long': -71.049533, u'prices': u'899,000', u'address': u'54 Grampian Way, Dorchester, MA', u'lat': 42.312072, u'zillow': {u'property_size': u'6534', u'bathrooms': u'2.0', u'last_sold_price': u'197000', u'zestimate_amount': u'769717', u'tax_value': u'499300.0', u'zestimate_valuation_range_high': u'877477', u'tax_year': u'2015', u'zestimate_value_change': u'-25499', u'latitude': u'42.312059', u'zestimate_percentile': u'0', u'bedrooms': u'5', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59113320', u'last_sold_date': u'12/11/1998', u'year_built': u'1885', u'zestimate_valuationRange_low': u'692745', u'graph_data_link': u'http://www.zillow.com/homedetails/54-Grampian-Way-Dorchester-MA-02125/59113320_zpid/#charts-and-data', u'home_size': u'2423', u'longitude': u'-71.049545', u'map_this_home_link': u'http://www.zillow.com/homes/59113320_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/54-Grampian-Way-Dorchester-MA-02125/59113320_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.171084, u'prices': u'849,000', u'address': u'129 Gardner St, Boston, MA', u'lat': 42.277522, u'zillow': {u'property_size': u'6969', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'858867', u'tax_value': None, u'zestimate_valuation_range_high': u'1039229', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.277522', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096677074', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'695682', u'graph_data_link': None, u'home_size': u'2800', u'longitude': u'-71.171084', u'map_this_home_link': u'http://www.zillow.com/homes/2096677074_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/129-Gardner-St-Boston-MA-02132/2096677074_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.1162116, u'prices': u'529,000', u'address': u'7-9 Herbertson # 2, Jamaica Plain, MA', u'lat': 42.2920089}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.1544114, u'prices': u'739,900', u'address': u'31 Maple St, Boston, MA', u'lat': 42.287886, u'zillow': {u'property_size': u'4356', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'715295', u'tax_value': u'448800.0', u'zestimate_valuation_range_high': u'765366', u'tax_year': u'2014', u'zestimate_value_change': u'1927', u'latitude': u'42.287908', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59155302', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'665224', u'graph_data_link': u'http://www.zillow.com/homedetails/31-Maple-St-Boston-MA-02132/59155302_zpid/#charts-and-data', u'home_size': u'1847', u'longitude': u'-71.154418', u'map_this_home_link': u'http://www.zillow.com/homes/59155302_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/31-Maple-St-Boston-MA-02132/59155302_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.0814012, u'prices': u'675,000', u'address': u'255 Northampton St UNIT 501, Boston, MA', u'lat': 42.3394238, u'zillow': {u'property_size': u'1057', u'bathrooms': u'1.0', u'last_sold_price': u'475000', u'zestimate_amount': u'782221', u'tax_value': u'509100.0', u'zestimate_valuation_range_high': u'821332', u'tax_year': u'2014', u'zestimate_value_change': u'-38684', u'latitude': u'42.339385', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'87796106', u'last_sold_date': u'09/03/2010', u'year_built': u'2006', u'zestimate_valuationRange_low': u'743110', u'graph_data_link': u'http://www.zillow.com/homedetails/255-Northampton-St-UNIT-501-Boston-MA-02118/87796106_zpid/#charts-and-data', u'home_size': u'1057', u'longitude': u'-71.081382', u'map_this_home_link': u'http://www.zillow.com/homes/87796106_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/255-Northampton-St-UNIT-501-Boston-MA-02118/87796106_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02134', u'long': -71.1329925, u'prices': u'339,900', u'address': u'43 Parkvale Ave APT 5, Boston, MA', u'lat': 42.3523208}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'339,000', u'address': u'53 Torrey St # 2, Boston, MA', u'lat': 42.287372, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'386209', u'tax_value': None, u'zestimate_valuation_range_high': u'544555', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.287284', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096823174', u'last_sold_date': None, u'year_built': u'1920', u'zestimate_valuationRange_low': u'254898', u'graph_data_link': None, u'home_size': u'1000', u'longitude': u'-71.073818', u'map_this_home_link': u'http://www.zillow.com/homes/2096823174_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0522682, u'prices': u'479,000', u'address': u'31 Houghton St # 2, Boston, MA', u'lat': 42.2952453}, {u'status': u'House For Sale', u'zip': None, u'long': -1, u'prices': u'284,999', u'address': u'10 Arbutus St, Dorchester Center, MA', u'lat': -1}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.080952, u'prices': u'399,000', u'address': u'181 Glenway St, Dorchester, MA', u'lat': 42.296947}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'345,000', u'address': u'53 Torrey St # 3, Boston, MA', u'lat': 42.287372, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'New renovation an easy walk to both the Ashmont and Shawmut stops on the red line. This penthouse unit features an open floor plan with oak floors, granite countertops, breakfast bar and stainless steel appliances. Central air and washer dryer hookups as well as storage are included. Private front and back decks as well as a common driveway and large fenced yard all add to the charm. New windows all around a newly renovated exterior, a good deal of new plumbing and wiring with a newer roof make this property an excellent value and an ideal starter home.', 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': '2016', 'bedrooms': '2', 'latitude': '42.287282', 'zillow_id': '2096896512', 'basement': None, 'year_built': '1920', 'home_size': '1000', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/', 'home_info': 'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'386209', u'tax_value': None, u'zestimate_valuation_range_high': u'544555', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.287282', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096896512', u'last_sold_date': None, u'year_built': u'1920', u'zestimate_valuationRange_low': u'254898', u'graph_data_link': None, u'home_size': u'1000', u'longitude': u'-71.073797', u'map_this_home_link': u'http://www.zillow.com/homes/2096896512_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/53-Torrey-St-3-Boston-MA-02124/2096896512_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0795012, u'prices': u'2,495,000', u'address': u'242 Beacon St APT 6, Boston, MA', u'lat': 42.3536559, 'property': {'neighborhood': 'Back Bay', 'bathrooms': '3.0', 'school_district': None, 'heating_sources': 'Other', 'rooms': 'Dining room, Family room, Laundry room, Master bath', 'home_description': 'Waterside renovated three bedroom, two and a half bathroom floor-through condominium. Direct elevator access. Exceptionally well laid-out home featuring a grand living room with fireplace and bow window overlooking the Charles River Esplanade. Large galley offers a breakfast bar and sliding doors to the balcony. Elegant master bedroom suite boasts a bow window and marble fireplace. Central air-conditioning, new bathrooms, well-sized second and third bedrooms. Excellent closet space and ceiling height throughout. Association parking with direct access. 1 Year pre-paid parking will be offered with the sale. Well maintained brownstone that just completed a total restoration. Any idyllic Boston home! ', 'property_size': '2267', 'num_floors': '1', 'heating_system': 'Other', 'photo_gallery': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Hardwood', 'year_updated': '2007', 'bedrooms': '3', 'latitude': '42.353794', 'zillow_id': '59170501', 'basement': 'None', 'year_built': '1884', 'home_size': '2267', 'roof': None, 'view': 'City, Water', 'home_type': 'Condominium', 'parking_type': 'Off-street, On-street', 'home_detail_link': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/', 'home_info': 'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/'}, u'zillow': {u'property_size': u'2267', u'bathrooms': u'3.0', u'last_sold_price': u'1325000', u'zestimate_amount': u'2826169', u'tax_value': u'1783000.0', u'zestimate_valuation_range_high': u'2995739', u'tax_year': u'2014', u'zestimate_value_change': u'-16709', u'latitude': u'42.353794', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59170501', u'last_sold_date': u'09/09/2009', u'year_built': u'1884', u'zestimate_valuationRange_low': u'2628337', u'graph_data_link': u'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/#charts-and-data', u'home_size': u'2267', u'longitude': u'-71.079593', u'map_this_home_link': u'http://www.zillow.com/homes/59170501_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02132', u'long': -71.1587218, u'prices': u'399,900', u'address': u'23 Goethe St # 2, Boston, MA', u'lat': 42.2565786}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.08661099999999, u'prices': u'599,000', u'address': u'100 Maple St, Boston, MA', u'lat': 42.3075847, u'zillow': {u'property_size': u'7157', u'bathrooms': None, u'last_sold_price': u'3360981', u'zestimate_amount': u'695455', u'tax_value': u'426577.0', u'zestimate_valuation_range_high': u'785864', u'tax_year': u'2015', u'zestimate_value_change': u'-9334', u'latitude': u'42.289875', u'zestimate_percentile': u'0', u'bedrooms': None, u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'90139732', u'last_sold_date': u'02/19/1992', u'year_built': u'1925', u'zestimate_valuationRange_low': u'598091', u'graph_data_link': u'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/#charts-and-data', u'home_size': u'16857', u'longitude': u'-71.156478', u'map_this_home_link': u'http://www.zillow.com/homes/90139732_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.11666129999999, u'prices': u'669,000', u'address': u'801 Centre St # 3C, Boston, MA', u'lat': 42.3092487, u'zillow': {u'property_size': u'1916', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'817363', u'tax_value': None, u'zestimate_valuation_range_high': u'858231', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.30924', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097055956', u'last_sold_date': None, u'year_built': u'1899', u'zestimate_valuationRange_low': u'776495', u'graph_data_link': None, u'home_size': u'1916', u'longitude': u'-71.1166', u'map_this_home_link': u'http://www.zillow.com/homes/2097055956_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/801-Centre-St-3C-Boston-MA-02130/2097055956_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0703915, u'prices': u'1,540,000', u'address': u'505 Tremont St UNIT 417, Boston, MA', u'lat': 42.3450221}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0540671, u'prices': u'389,000', u'address': u'16 Chelmsford St UNIT 2, Dorchester, MA', u'lat': 42.284953, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'261000', u'zestimate_amount': u'381960', u'tax_value': u'212600.0', u'zestimate_valuation_range_high': u'401058', u'tax_year': u'2014', u'zestimate_value_change': u'6502', u'latitude': u'42.28495', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81854555', u'last_sold_date': u'07/11/2006', u'year_built': u'1905', u'zestimate_valuationRange_low': u'362862', u'graph_data_link': u'http://www.zillow.com/homedetails/16-Chelmsford-St-UNIT-2-Dorchester-MA-02122/81854555_zpid/#charts-and-data', u'home_size': u'1061', u'longitude': u'-71.054061', u'map_this_home_link': u'http://www.zillow.com/homes/81854555_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/16-Chelmsford-St-UNIT-2-Dorchester-MA-02122/81854555_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02136', u'long': -71.12602799999999, u'prices': u'399,500', u'address': u'1391 Hyde Park Ave STE G, Boston, MA', u'lat': 42.2511409}, {u'status': u'Condo For Sale', u'zip': u'02108', u'long': -71.05945, u'prices': u'1,300,000', u'address': u'1 Franklin St # 1601, Boston, MA', u'lat': 42.35631}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'479,000', u'address': u'29 Houghton St # 1, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0559853, u'prices': u'875,000', u'address': u'28 Woodward St # 1, Boston, MA', u'lat': 42.3314431}, {u'status': u'Condo For Sale', u'zip': u'02131', u'long': -71.1230212, u'prices': u'549,500', u'address': u'12 Mosgrove Ave, Boston, MA', u'lat': 42.2919334}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0446874, u'prices': u'769,000', u'address': u'235 Victory Rd UNIT 235, Quincy, MA', u'lat': 42.2994295}, {u'status': u'For Sale by Owner', u'zip': u'02134', u'long': -71.131332, u'prices': u'549,000', u'address': u'29 Brainerd Rd, Boston, MA', u'lat': 42.3486087}, {u'status': u'Townhouse For Sale', u'zip': u'02130', u'long': -71.1157648, u'prices': u'749,000', u'address': u'5 Atwood Sq # 5, Boston, MA', u'lat': 42.3072151, u'zillow': {u'property_size': None, u'bathrooms': u'2.5', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.307212', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096375498', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'1603', u'longitude': u'-71.115613', u'map_this_home_link': u'http://www.zillow.com/homes/2096375498_zpid/', u'home_type': u'Townhouse', u'home_detail_link': u'http://www.zillow.com/homedetails/5-Atwood-Sq-5-Boston-MA-02130/2096375498_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.05405100000002, u'prices': u'849,000', u'address': u'321 Dorchester St # 1, Boston, MA', u'lat': 42.331281, 'property': {'neighborhood': None, 'bathrooms': '3.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'Newly renovated spacious 3 bed plus office duplex in up and coming Andrew Square, just moments from where Washington Village will begin construction soon. The main living space boasts a large open floor plan and designer kitchen. Main level has two full bedrooms, one full bath and a half bath off the kitchen for your guests. The lower level offers two more bedrooms and one that could be used specifically for a home office with the convenience of an exterior door. This boutique building leaves nothing to be desired. It could be the perfect first home with plenty of space to grow or an investors dream, 4 bedrooms minutes from public transportation in a area filled with trendy restaurants and bars. After a long day, make your way up to your common roof deck with views reaching Boston Harbor and downtown. Be one of the first to enjoy and make the investment into Andrew Square before the pricing catches up to the rest of South Boston!', 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497571_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '4', 'latitude': '42.33145', 'zillow_id': '2096497571', 'basement': None, 'year_built': None, 'home_size': '2400', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497571_zpid/', 'home_info': 'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497571_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'925305', u'tax_value': None, u'zestimate_valuation_range_high': u'971570', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.33145', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096497571', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'879040', u'graph_data_link': None, u'home_size': u'2400', u'longitude': u'-71.05343', u'map_this_home_link': u'http://www.zillow.com/homes/2096497571_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497571_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02125', u'long': -71.049533, u'prices': u'899,000', u'address': u'54 Grampian Way, Dorchester, MA', u'lat': 42.312072}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.171084, u'prices': u'849,000', u'address': u'129 Gardner St, Boston, MA', u'lat': 42.277522, u'zillow': {u'property_size': u'6969', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'858867', u'tax_value': None, u'zestimate_valuation_range_high': u'1039229', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.277522', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096677074', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'695682', u'graph_data_link': None, u'home_size': u'2800', u'longitude': u'-71.171084', u'map_this_home_link': u'http://www.zillow.com/homes/2096677074_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/129-Gardner-St-Boston-MA-02132/2096677074_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.1162116, u'prices': u'529,000', u'address': u'7-9 Herbertson # 2, Jamaica Plain, MA', u'lat': 42.2920089, u'zillow': {u'property_size': u'9999', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'595133', u'tax_value': None, u'zestimate_valuation_range_high': u'761770', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.292142', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096675064', u'last_sold_date': None, u'year_built': u'1925', u'zestimate_valuationRange_low': u'458252', u'graph_data_link': None, u'home_size': u'1260', u'longitude': u'-71.116361', u'map_this_home_link': u'http://www.zillow.com/homes/2096675064_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/7-9-Herbertson-2-Jamaica-Plain-MA-02130/2096675064_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.1544114, u'prices': u'739,900', u'address': u'31 Maple St, Boston, MA', u'lat': 42.287886, u'zillow': {u'property_size': u'4356', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'715295', u'tax_value': u'448800.0', u'zestimate_valuation_range_high': u'765366', u'tax_year': u'2014', u'zestimate_value_change': u'1927', u'latitude': u'42.287908', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59155302', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'665224', u'graph_data_link': u'http://www.zillow.com/homedetails/31-Maple-St-Boston-MA-02132/59155302_zpid/#charts-and-data', u'home_size': u'1847', u'longitude': u'-71.154418', u'map_this_home_link': u'http://www.zillow.com/homes/59155302_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/31-Maple-St-Boston-MA-02132/59155302_zpid/'}}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'675,000', u'address': u'255 Northampton St UNIT 501, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'339,900', u'address': u'43 Parkvale Ave APT 5, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'339,000', u'address': u'53 Torrey St # 2, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'479,000', u'address': u'31 Houghton St # 2, Boston, MA', u'lat': -1}, {u'status': u'House For Sale', u'zip': u'02124', u'long': -71.089551, u'prices': u'284,999', u'address': u'10 Arbutus St, Dorchester Center, MA', u'lat': 42.2879239, u'zillow': {u'property_size': u'2613', u'bathrooms': u'2.0', u'last_sold_price': u'192079', u'zestimate_amount': u'280016', u'tax_value': u'156300.0', u'zestimate_valuation_range_high': u'305217', u'tax_year': u'2014', u'zestimate_value_change': u'4024', u'latitude': u'42.287927', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59102139', u'last_sold_date': u'09/19/2005', u'year_built': u'1991', u'zestimate_valuationRange_low': u'252014', u'graph_data_link': u'http://www.zillow.com/homedetails/10-Arbutus-St-Dorchester-Center-MA-02124/59102139_zpid/#charts-and-data', u'home_size': u'1520', u'longitude': u'-71.089552', u'map_this_home_link': u'http://www.zillow.com/homes/59102139_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/10-Arbutus-St-Dorchester-Center-MA-02124/59102139_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.080952, u'prices': u'399,000', u'address': u'181 Glenway St, Dorchester, MA', u'lat': 42.296947}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'345,000', u'address': u'53 Torrey St # 3, Boston, MA', u'lat': 42.287372}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0795012, u'prices': u'2,495,000', u'address': u'242 Beacon St APT 6, Boston, MA', u'lat': 42.3536559}, {u'status': u'Condo For Sale', u'zip': u'02132', u'long': -71.1587218, u'prices': u'399,900', u'address': u'23 Goethe St # 2, Boston, MA', u'lat': 42.2565786, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'427574', u'tax_value': None, u'zestimate_valuation_range_high': u'448953', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.256671', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096807696', u'last_sold_date': None, u'year_built': u'1940', u'zestimate_valuationRange_low': u'401920', u'graph_data_link': None, u'home_size': u'1370', u'longitude': u'-71.158866', u'map_this_home_link': u'http://www.zillow.com/homes/2096807696_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/23-Goethe-St-2-Boston-MA-02132/2096807696_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.08661099999999, u'prices': u'599,000', u'address': u'100 Maple St, Boston, MA', u'lat': 42.3075847}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.11666129999999, u'prices': u'669,000', u'address': u'801 Centre St # 3C, Boston, MA', u'lat': 42.3092487, u'zillow': {u'property_size': u'1916', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'817363', u'tax_value': None, u'zestimate_valuation_range_high': u'858231', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.30924', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097055956', u'last_sold_date': None, u'year_built': u'1899', u'zestimate_valuationRange_low': u'776495', u'graph_data_link': None, u'home_size': u'1916', u'longitude': u'-71.1166', u'map_this_home_link': u'http://www.zillow.com/homes/2097055956_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/801-Centre-St-3C-Boston-MA-02130/2097055956_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0703915, u'prices': u'1,540,000', u'address': u'505 Tremont St UNIT 417, Boston, MA', u'lat': 42.3450221}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0540671, u'prices': u'389,000', u'address': u'16 Chelmsford St UNIT 2, Dorchester, MA', u'lat': 42.284953}, {u'status': u'Condo For Sale', u'zip': u'02136', u'long': -71.12602799999999, u'prices': u'399,500', u'address': u'1391 Hyde Park Ave STE G, Boston, MA', u'lat': 42.2511409, u'zillow': {u'property_size': u'3484', u'bathrooms': u'1.0', u'last_sold_price': u'310000', u'zestimate_amount': u'399402', u'tax_value': u'450000.0', u'zestimate_valuation_range_high': u'463306', u'tax_year': u'2014', u'zestimate_value_change': u'-12511', u'latitude': u'42.250944', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81855097', u'last_sold_date': u'03/17/2014', u'year_built': u'1950', u'zestimate_valuationRange_low': u'343486', u'graph_data_link': u'http://www.zillow.com/homedetails/1391-Hyde-Park-Ave-STE-G-Boston-MA-02136/81855097_zpid/#charts-and-data', u'home_size': u'1570', u'longitude': u'-71.125871', u'map_this_home_link': u'http://www.zillow.com/homes/81855097_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1391-Hyde-Park-Ave-STE-G-Boston-MA-02136/81855097_zpid/'}}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'1,300,000', u'address': u'1 Franklin St # 1601, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'479,000', u'address': u'29 Houghton St # 1, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'875,000', u'address': u'28 Woodward St # 1, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02131', u'long': -71.1230212, u'prices': u'549,500', u'address': u'12 Mosgrove Ave, Boston, MA', u'lat': 42.2919334}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0446874, u'prices': u'769,000', u'address': u'235 Victory Rd UNIT 235, Quincy, MA', u'lat': 42.2994295}, {u'status': u'For Sale by Owner', u'zip': u'02134', u'long': -71.131332, u'prices': u'549,000', u'address': u'29 Brainerd Rd, Boston, MA', u'lat': 42.3486087, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'420929', u'tax_value': None, u'zestimate_valuation_range_high': u'446185', u'tax_year': None, u'zestimate_value_change': u'16295', u'latitude': u'42.34912', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097576158', u'last_sold_date': None, u'year_built': u'1904', u'zestimate_valuationRange_low': u'378836', u'graph_data_link': None, u'home_size': u'850', u'longitude': u'-71.13047', u'map_this_home_link': u'http://www.zillow.com/homes/2097576158_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/29-Brainerd-Rd-Boston-MA-02134/2097576158_zpid/'}}, {u'status': u'Townhouse For Sale', u'zip': u'02130', u'long': -71.1157648, u'prices': u'749,000', u'address': u'5 Atwood Sq # 5, Boston, MA', u'lat': 42.3072151}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.05405100000002, u'prices': u'849,000', u'address': u'321 Dorchester St # 1, Boston, MA', u'lat': 42.331281, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'925305', u'tax_value': None, u'zestimate_valuation_range_high': u'971570', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.33145', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096497571', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'879040', u'graph_data_link': None, u'home_size': u'2400', u'longitude': u'-71.05343', u'map_this_home_link': u'http://www.zillow.com/homes/2096497571_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497571_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02125', u'long': -71.049533, u'prices': u'899,000', u'address': u'54 Grampian Way, Dorchester, MA', u'lat': 42.312072, u'zillow': {u'property_size': u'6534', u'bathrooms': u'2.0', u'last_sold_price': u'197000', u'zestimate_amount': u'769717', u'tax_value': u'499300.0', u'zestimate_valuation_range_high': u'877477', u'tax_year': u'2015', u'zestimate_value_change': u'-25499', u'latitude': u'42.312059', u'zestimate_percentile': u'0', u'bedrooms': u'5', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59113320', u'last_sold_date': u'12/11/1998', u'year_built': u'1885', u'zestimate_valuationRange_low': u'692745', u'graph_data_link': u'http://www.zillow.com/homedetails/54-Grampian-Way-Dorchester-MA-02125/59113320_zpid/#charts-and-data', u'home_size': u'2423', u'longitude': u'-71.049545', u'map_this_home_link': u'http://www.zillow.com/homes/59113320_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/54-Grampian-Way-Dorchester-MA-02125/59113320_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.171084, u'prices': u'849,000', u'address': u'129 Gardner St, Boston, MA', u'lat': 42.277522}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.1162116, u'prices': u'529,000', u'address': u'7-9 Herbertson # 2, Jamaica Plain, MA', u'lat': 42.2920089, u'zillow': {u'property_size': u'9999', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'595133', u'tax_value': None, u'zestimate_valuation_range_high': u'761770', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.292142', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096675064', u'last_sold_date': None, u'year_built': u'1925', u'zestimate_valuationRange_low': u'458252', u'graph_data_link': None, u'home_size': u'1260', u'longitude': u'-71.116361', u'map_this_home_link': u'http://www.zillow.com/homes/2096675064_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/7-9-Herbertson-2-Jamaica-Plain-MA-02130/2096675064_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.1544114, u'prices': u'739,900', u'address': u'31 Maple St, Boston, MA', u'lat': 42.287886}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.0814012, u'prices': u'675,000', u'address': u'255 Northampton St UNIT 501, Boston, MA', u'lat': 42.3394238, u'zillow': {u'property_size': u'1057', u'bathrooms': u'1.0', u'last_sold_price': u'475000', u'zestimate_amount': u'782221', u'tax_value': u'509100.0', u'zestimate_valuation_range_high': u'821332', u'tax_year': u'2014', u'zestimate_value_change': u'-38684', u'latitude': u'42.339385', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'87796106', u'last_sold_date': u'09/03/2010', u'year_built': u'2006', u'zestimate_valuationRange_low': u'743110', u'graph_data_link': u'http://www.zillow.com/homedetails/255-Northampton-St-UNIT-501-Boston-MA-02118/87796106_zpid/#charts-and-data', u'home_size': u'1057', u'longitude': u'-71.081382', u'map_this_home_link': u'http://www.zillow.com/homes/87796106_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/255-Northampton-St-UNIT-501-Boston-MA-02118/87796106_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02134', u'long': -71.1329925, u'prices': u'339,900', u'address': u'43 Parkvale Ave APT 5, Boston, MA', u'lat': 42.3523208, u'zillow': {u'property_size': u'578', u'bathrooms': u'1.0', u'last_sold_price': u'197000', u'zestimate_amount': u'343185', u'tax_value': u'183100.0', u'zestimate_valuation_range_high': u'360344', u'tax_year': u'2014', u'zestimate_value_change': None, u'latitude': u'42.351999', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59088144', u'last_sold_date': u'08/31/2006', u'year_built': u'1910', u'zestimate_valuationRange_low': u'326026', u'graph_data_link': u'http://www.zillow.com/homedetails/43-Parkvale-Ave-APT-5-Boston-MA-02134/59088144_zpid/#charts-and-data', u'home_size': u'578', u'longitude': u'-71.133272', u'map_this_home_link': u'http://www.zillow.com/homes/59088144_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/43-Parkvale-Ave-APT-5-Boston-MA-02134/59088144_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'339,000', u'address': u'53 Torrey St # 2, Boston, MA', u'lat': 42.287372, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'386209', u'tax_value': None, u'zestimate_valuation_range_high': u'544555', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.287284', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096823174', u'last_sold_date': None, u'year_built': u'1920', u'zestimate_valuationRange_low': u'254898', u'graph_data_link': None, u'home_size': u'1000', u'longitude': u'-71.073818', u'map_this_home_link': u'http://www.zillow.com/homes/2096823174_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/53-Torrey-St-2-Boston-MA-02124/2096823174_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0522682, u'prices': u'479,000', u'address': u'31 Houghton St # 2, Boston, MA', u'lat': 42.2952453, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'471644', u'tax_value': None, u'zestimate_valuation_range_high': u'499943', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.295265', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096881020', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'438629', u'graph_data_link': None, u'home_size': u'1400', u'longitude': u'-71.052066', u'map_this_home_link': u'http://www.zillow.com/homes/2096881020_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/31-Houghton-St-2-Boston-MA-02122/2096881020_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02124', u'long': -71.089551, u'prices': u'284,999', u'address': u'10 Arbutus St, Dorchester Center, MA', u'lat': 42.2879239}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.080952, u'prices': u'399,000', u'address': u'181 Glenway St, Dorchester, MA', u'lat': 42.296947}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'345,000', u'address': u'53 Torrey St # 3, Boston, MA', u'lat': 42.287372}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0795012, u'prices': u'2,495,000', u'address': u'242 Beacon St APT 6, Boston, MA', u'lat': 42.3536559, u'zillow': {u'property_size': u'2267', u'bathrooms': u'3.0', u'last_sold_price': u'1325000', u'zestimate_amount': u'2826169', u'tax_value': u'1783000.0', u'zestimate_valuation_range_high': u'2995739', u'tax_year': u'2014', u'zestimate_value_change': u'-16709', u'latitude': u'42.353794', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59170501', u'last_sold_date': u'09/09/2009', u'year_built': u'1884', u'zestimate_valuationRange_low': u'2628337', u'graph_data_link': u'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/#charts-and-data', u'home_size': u'2267', u'longitude': u'-71.079593', u'map_this_home_link': u'http://www.zillow.com/homes/59170501_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/242-Beacon-St-APT-6-Boston-MA-02116/59170501_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02132', u'long': -71.1587218, u'prices': u'399,900', u'address': u'23 Goethe St # 2, Boston, MA', u'lat': 42.2565786}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.08661099999999, u'prices': u'599,000', u'address': u'100 Maple St, Boston, MA', u'lat': 42.3075847, u'zillow': {u'property_size': u'7157', u'bathrooms': None, u'last_sold_price': u'3360981', u'zestimate_amount': u'695455', u'tax_value': u'426577.0', u'zestimate_valuation_range_high': u'785864', u'tax_year': u'2015', u'zestimate_value_change': u'-9334', u'latitude': u'42.289875', u'zestimate_percentile': u'0', u'bedrooms': None, u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'90139732', u'last_sold_date': u'02/19/1992', u'year_built': u'1925', u'zestimate_valuationRange_low': u'598091', u'graph_data_link': u'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/#charts-and-data', u'home_size': u'16857', u'longitude': u'-71.156478', u'map_this_home_link': u'http://www.zillow.com/homes/90139732_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/'}}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'669,000', u'address': u'801 Centre St # 3C, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'1,540,000', u'address': u'505 Tremont St UNIT 417, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'389,000', u'address': u'16 Chelmsford St UNIT 2, Dorchester, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02136', u'long': -71.12602799999999, u'prices': u'399,500', u'address': u'1391 Hyde Park Ave STE G, Boston, MA', u'lat': 42.2511409, u'zillow': {u'property_size': u'3484', u'bathrooms': u'1.0', u'last_sold_price': u'310000', u'zestimate_amount': u'399402', u'tax_value': u'450000.0', u'zestimate_valuation_range_high': u'463306', u'tax_year': u'2014', u'zestimate_value_change': u'-12511', u'latitude': u'42.250944', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81855097', u'last_sold_date': u'03/17/2014', u'year_built': u'1950', u'zestimate_valuationRange_low': u'343486', u'graph_data_link': u'http://www.zillow.com/homedetails/1391-Hyde-Park-Ave-STE-G-Boston-MA-02136/81855097_zpid/#charts-and-data', u'home_size': u'1570', u'longitude': u'-71.125871', u'map_this_home_link': u'http://www.zillow.com/homes/81855097_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1391-Hyde-Park-Ave-STE-G-Boston-MA-02136/81855097_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02108', u'long': -71.05945, u'prices': u'1,300,000', u'address': u'1 Franklin St # 1601, Boston, MA', u'lat': 42.35631, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': \"Gorgeous One Bedroom at Millennium Towers! Towering above the adjacent building, allowing for expansive views of The State House and the Back Bay. A state of the art luxury living at it's best! Private screening room, Residents Only Restaurant and Lounge, Indoor swimming pool with a Miami style flair and Jacuzzi. One of a kind Fitness Center featuring a Boxing Club, Pilates/Yoga Studio/Cycling to name a few. Adjacent to the renovated historic Burnham Building, Millennium Tower will stand at the center of a reinvigorated downtown Boston, home to vibrant retail, and a new Roche Bros. gourmet grocery. Come see why Millennium Tower Boston is the evolution of luxury residential living.\", 'property_size': None, 'num_floors': None, 'heating_system': 'Forced air', 'photo_gallery': 'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Carpet, Hardwood', 'year_updated': None, 'bedrooms': '1', 'latitude': '42.355785', 'zillow_id': '2097180167', 'basement': None, 'year_built': '2016', 'home_size': '923', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/', 'home_info': 'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'945000', u'zestimate_amount': u'1175611', u'tax_value': None, u'zestimate_valuation_range_high': u'1493026', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.355785', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097180167', u'last_sold_date': u'09/15/2016', u'year_built': u'2016', u'zestimate_valuationRange_low': u'846440', u'graph_data_link': None, u'home_size': u'923', u'longitude': u'-71.059526', u'map_this_home_link': u'http://www.zillow.com/homes/2097180167_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0522963, u'prices': u'479,000', u'address': u'29 Houghton St # 1, Boston, MA', u'lat': 42.295264, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'472901', u'tax_value': None, u'zestimate_valuation_range_high': u'501275', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.295223', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096881071', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'439798', u'graph_data_link': None, u'home_size': u'1400', u'longitude': u'-71.052345', u'map_this_home_link': u'http://www.zillow.com/homes/2096881071_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/29-Houghton-St-1-Boston-MA-02122/2096881071_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0559853, u'prices': u'875,000', u'address': u'28 Woodward St # 1, Boston, MA', u'lat': 42.3314431, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'899088', u'tax_value': None, u'zestimate_valuation_range_high': u'1123860', u'tax_year': None, u'zestimate_value_change': u'-17891', u'latitude': u'42.331474', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2107330626', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'674316', u'graph_data_link': None, u'home_size': u'1700', u'longitude': u'-71.055931', u'map_this_home_link': u'http://www.zillow.com/homes/2107330626_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/28-Woodward-St-1-Boston-MA-02127/2107330626_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02131', u'long': -71.1230212, u'prices': u'549,500', u'address': u'12 Mosgrove Ave, Boston, MA', u'lat': 42.2919334}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0446874, u'prices': u'769,000', u'address': u'235 Victory Rd UNIT 235, Quincy, MA', u'lat': 42.2994295}, {u'status': u'For Sale by Owner', u'zip': u'02134', u'long': -71.131332, u'prices': u'549,000', u'address': u'29 Brainerd Rd, Boston, MA', u'lat': 42.3486087, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': None, u'zestimate_amount': u'420929', u'tax_value': None, u'zestimate_valuation_range_high': u'446185', u'tax_year': None, u'zestimate_value_change': u'16295', u'latitude': u'42.34912', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097576158', u'last_sold_date': None, u'year_built': u'1904', u'zestimate_valuationRange_low': u'378836', u'graph_data_link': None, u'home_size': u'850', u'longitude': u'-71.13047', u'map_this_home_link': u'http://www.zillow.com/homes/2097576158_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/29-Brainerd-Rd-Boston-MA-02134/2097576158_zpid/'}}, {u'status': u'Townhouse For Sale', u'zip': u'02130', u'long': -71.1157648, u'prices': u'749,000', u'address': u'5 Atwood Sq # 5, Boston, MA', u'lat': 42.3072151}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.05405100000002, u'prices': u'849,000', u'address': u'321 Dorchester St # 1, Boston, MA', u'lat': 42.331281, 'property': {'neighborhood': None, 'bathrooms': '3.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': 'Newly renovated spacious 3 bed plus office duplex in up and coming Andrew Square, just moments from where Washington Village will begin construction soon. The main living space boasts a large open floor plan and designer kitchen. Main level has two full bedrooms, one full bath and a half bath off the kitchen for your guests. The lower level offers two more bedrooms and one that could be used specifically for a home office with the convenience of an exterior door. This boutique building leaves nothing to be desired. It could be the perfect first home with plenty of space to grow or an investors dream, 4 bedrooms minutes from public transportation in a area filled with trendy restaurants and bars. After a long day, make your way up to your common roof deck with views reaching Boston Harbor and downtown. Be one of the first to enjoy and make the investment into Andrew Square before the pricing catches up to the rest of South Boston!', 'property_size': None, 'num_floors': None, 'heating_system': None, 'photo_gallery': 'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497571_zpid/#image=lightbox%3Dtrue', 'floor_material': None, 'year_updated': None, 'bedrooms': '4', 'latitude': '42.33145', 'zillow_id': '2096497571', 'basement': None, 'year_built': None, 'home_size': '2400', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497571_zpid/', 'home_info': 'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497571_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'925305', u'tax_value': None, u'zestimate_valuation_range_high': u'971570', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.33145', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096497571', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'879040', u'graph_data_link': None, u'home_size': u'2400', u'longitude': u'-71.05343', u'map_this_home_link': u'http://www.zillow.com/homes/2096497571_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497571_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02125', u'long': -71.049533, u'prices': u'899,000', u'address': u'54 Grampian Way, Dorchester, MA', u'lat': 42.312072}, {u'status': u'House For Sale', u'zip': None, u'long': -71.171084, u'prices': u'849,000', u'address': u'129 Gardner St, Boston, MA', u'lat': 42.277522}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'529,000', u'address': u'7-9 Herbertson # 2, Jamaica Plain, MA', u'lat': -1}, {u'status': u'House For Sale', u'zip': None, u'long': -1, u'prices': u'739,900', u'address': u'31 Maple St, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.0814012, u'prices': u'675,000', u'address': u'255 Northampton St UNIT 501, Boston, MA', u'lat': 42.3394238, u'zillow': {u'property_size': u'1057', u'bathrooms': u'1.0', u'last_sold_price': u'475000', u'zestimate_amount': u'782221', u'tax_value': u'509100.0', u'zestimate_valuation_range_high': u'821332', u'tax_year': u'2014', u'zestimate_value_change': u'-38684', u'latitude': u'42.339385', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'87796106', u'last_sold_date': u'09/03/2010', u'year_built': u'2006', u'zestimate_valuationRange_low': u'743110', u'graph_data_link': u'http://www.zillow.com/homedetails/255-Northampton-St-UNIT-501-Boston-MA-02118/87796106_zpid/#charts-and-data', u'home_size': u'1057', u'longitude': u'-71.081382', u'map_this_home_link': u'http://www.zillow.com/homes/87796106_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/255-Northampton-St-UNIT-501-Boston-MA-02118/87796106_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02134', u'long': -71.1329925, u'prices': u'339,900', u'address': u'43 Parkvale Ave APT 5, Boston, MA', u'lat': 42.3523208}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'339,000', u'address': u'53 Torrey St # 2, Boston, MA', u'lat': 42.287372}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0522682, u'prices': u'479,000', u'address': u'31 Houghton St # 2, Boston, MA', u'lat': 42.2952453}, {u'status': u'House For Sale', u'zip': u'02124', u'long': -71.089551, u'prices': u'284,999', u'address': u'10 Arbutus St, Dorchester Center, MA', u'lat': 42.2879239}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.080952, u'prices': u'399,000', u'address': u'181 Glenway St, Dorchester, MA', u'lat': 42.296947}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'345,000', u'address': u'53 Torrey St # 3, Boston, MA', u'lat': 42.287372}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0795012, u'prices': u'2,495,000', u'address': u'242 Beacon St APT 6, Boston, MA', u'lat': 42.3536559}, {u'status': u'Condo For Sale', u'zip': u'02132', u'long': -71.1587218, u'prices': u'399,900', u'address': u'23 Goethe St # 2, Boston, MA', u'lat': 42.2565786}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.08661099999999, u'prices': u'599,000', u'address': u'100 Maple St, Boston, MA', u'lat': 42.3075847}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.11666129999999, u'prices': u'669,000', u'address': u'801 Centre St # 3C, Boston, MA', u'lat': 42.3092487, u'zillow': {u'property_size': u'1916', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'817363', u'tax_value': None, u'zestimate_valuation_range_high': u'858231', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.30924', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097055956', u'last_sold_date': None, u'year_built': u'1899', u'zestimate_valuationRange_low': u'776495', u'graph_data_link': None, u'home_size': u'1916', u'longitude': u'-71.1166', u'map_this_home_link': u'http://www.zillow.com/homes/2097055956_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/801-Centre-St-3C-Boston-MA-02130/2097055956_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0703915, u'prices': u'1,540,000', u'address': u'505 Tremont St UNIT 417, Boston, MA', u'lat': 42.3450221, u'zillow': {u'property_size': u'1364', u'bathrooms': u'2.0', u'last_sold_price': u'1088000', u'zestimate_amount': u'1678483', u'tax_value': u'1132500.0', u'zestimate_valuation_range_high': u'1896686', u'tax_year': u'2014', u'zestimate_value_change': u'-21974', u'latitude': u'42.345039', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'67710271', u'last_sold_date': u'05/30/2008', u'year_built': u'2004', u'zestimate_valuationRange_low': u'1594559', u'graph_data_link': u'http://www.zillow.com/homedetails/505-Tremont-St-UNIT-417-Boston-MA-02116/67710271_zpid/#charts-and-data', u'home_size': u'1364', u'longitude': u'-71.070299', u'map_this_home_link': u'http://www.zillow.com/homes/67710271_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/505-Tremont-St-UNIT-417-Boston-MA-02116/67710271_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0540671, u'prices': u'389,000', u'address': u'16 Chelmsford St UNIT 2, Dorchester, MA', u'lat': 42.284953}, {u'status': u'Condo For Sale', u'zip': u'02136', u'long': -71.12602799999999, u'prices': u'399,500', u'address': u'1391 Hyde Park Ave STE G, Boston, MA', u'lat': 42.2511409}, {u'status': u'Condo For Sale', u'zip': u'02108', u'long': -71.05945, u'prices': u'1,300,000', u'address': u'1 Franklin St # 1601, Boston, MA', u'lat': 42.35631, 'property': {'neighborhood': None, 'bathrooms': '1.0', 'school_district': None, 'heating_sources': None, 'rooms': None, 'home_description': \"Gorgeous One Bedroom at Millennium Towers! Towering above the adjacent building, allowing for expansive views of The State House and the Back Bay. A state of the art luxury living at it's best! Private screening room, Residents Only Restaurant and Lounge, Indoor swimming pool with a Miami style flair and Jacuzzi. One of a kind Fitness Center featuring a Boxing Club, Pilates/Yoga Studio/Cycling to name a few. Adjacent to the renovated historic Burnham Building, Millennium Tower will stand at the center of a reinvigorated downtown Boston, home to vibrant retail, and a new Roche Bros. gourmet grocery. Come see why Millennium Tower Boston is the evolution of luxury residential living.\", 'property_size': None, 'num_floors': None, 'heating_system': 'Forced air', 'photo_gallery': 'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/#image=lightbox%3Dtrue', 'floor_material': 'Carpet, Hardwood', 'year_updated': None, 'bedrooms': '1', 'latitude': '42.355785', 'zillow_id': '2097180167', 'basement': None, 'year_built': '2016', 'home_size': '923', 'roof': None, 'view': None, 'home_type': 'Condominium', 'parking_type': None, 'home_detail_link': 'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/', 'home_info': 'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/'}, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'945000', u'zestimate_amount': u'1175611', u'tax_value': None, u'zestimate_valuation_range_high': u'1493026', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.355785', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097180167', u'last_sold_date': u'09/15/2016', u'year_built': u'2016', u'zestimate_valuationRange_low': u'846440', u'graph_data_link': None, u'home_size': u'923', u'longitude': u'-71.059526', u'map_this_home_link': u'http://www.zillow.com/homes/2097180167_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0522963, u'prices': u'479,000', u'address': u'29 Houghton St # 1, Boston, MA', u'lat': 42.295264, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'472901', u'tax_value': None, u'zestimate_valuation_range_high': u'501275', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.295223', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096881071', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'439798', u'graph_data_link': None, u'home_size': u'1400', u'longitude': u'-71.052345', u'map_this_home_link': u'http://www.zillow.com/homes/2096881071_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/29-Houghton-St-1-Boston-MA-02122/2096881071_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0559853, u'prices': u'875,000', u'address': u'28 Woodward St # 1, Boston, MA', u'lat': 42.3314431, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'899088', u'tax_value': None, u'zestimate_valuation_range_high': u'1123860', u'tax_year': None, u'zestimate_value_change': u'-17891', u'latitude': u'42.331474', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2107330626', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'674316', u'graph_data_link': None, u'home_size': u'1700', u'longitude': u'-71.055931', u'map_this_home_link': u'http://www.zillow.com/homes/2107330626_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/28-Woodward-St-1-Boston-MA-02127/2107330626_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02131', u'long': -71.1230212, u'prices': u'549,500', u'address': u'12 Mosgrove Ave, Boston, MA', u'lat': 42.2919334, u'zillow': {u'property_size': u'5530', u'bathrooms': u'2.0', u'last_sold_price': u'250000', u'zestimate_amount': u'621969', u'tax_value': u'382100.0', u'zestimate_valuation_range_high': u'653067', u'tax_year': u'2014', u'zestimate_value_change': u'-8375', u'latitude': u'42.291848', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59144888', u'last_sold_date': u'02/25/2015', u'year_built': u'1901', u'zestimate_valuationRange_low': u'590871', u'graph_data_link': u'http://www.zillow.com/homedetails/12-Mosgrove-Ave-Boston-MA-02131/59144888_zpid/#charts-and-data', u'home_size': u'1950', u'longitude': u'-71.123093', u'map_this_home_link': u'http://www.zillow.com/homes/59144888_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/12-Mosgrove-Ave-Boston-MA-02131/59144888_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0446874, u'prices': u'769,000', u'address': u'235 Victory Rd UNIT 235, Quincy, MA', u'lat': 42.2994295}, {u'status': u'For Sale by Owner', u'zip': u'02134', u'long': -71.131332, u'prices': u'549,000', u'address': u'29 Brainerd Rd, Boston, MA', u'lat': 42.3486087}, {u'status': u'Townhouse For Sale', u'zip': u'02130', u'long': -71.1157648, u'prices': u'749,000', u'address': u'5 Atwood Sq # 5, Boston, MA', u'lat': 42.3072151}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.05405100000002, u'prices': u'849,000', u'address': u'321 Dorchester St # 1, Boston, MA', u'lat': 42.331281}, {u'status': u'House For Sale', u'zip': u'02125', u'long': -71.049533, u'prices': u'899,000', u'address': u'54 Grampian Way, Dorchester, MA', u'lat': 42.312072}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.171084, u'prices': u'849,000', u'address': u'129 Gardner St, Boston, MA', u'lat': 42.277522, u'zillow': {u'property_size': u'6969', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'858867', u'tax_value': None, u'zestimate_valuation_range_high': u'1039229', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.277522', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096677074', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'695682', u'graph_data_link': None, u'home_size': u'2800', u'longitude': u'-71.171084', u'map_this_home_link': u'http://www.zillow.com/homes/2096677074_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/129-Gardner-St-Boston-MA-02132/2096677074_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.1162116, u'prices': u'529,000', u'address': u'7-9 Herbertson # 2, Jamaica Plain, MA', u'lat': 42.2920089, u'zillow': {u'property_size': u'9999', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'595133', u'tax_value': None, u'zestimate_valuation_range_high': u'761770', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.292142', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096675064', u'last_sold_date': None, u'year_built': u'1925', u'zestimate_valuationRange_low': u'458252', u'graph_data_link': None, u'home_size': u'1260', u'longitude': u'-71.116361', u'map_this_home_link': u'http://www.zillow.com/homes/2096675064_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/7-9-Herbertson-2-Jamaica-Plain-MA-02130/2096675064_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.1544114, u'prices': u'739,900', u'address': u'31 Maple St, Boston, MA', u'lat': 42.287886}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.0814012, u'prices': u'675,000', u'address': u'255 Northampton St UNIT 501, Boston, MA', u'lat': 42.3394238, u'zillow': {u'property_size': u'1057', u'bathrooms': u'1.0', u'last_sold_price': u'475000', u'zestimate_amount': u'782221', u'tax_value': u'509100.0', u'zestimate_valuation_range_high': u'821332', u'tax_year': u'2014', u'zestimate_value_change': u'-38684', u'latitude': u'42.339385', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'87796106', u'last_sold_date': u'09/03/2010', u'year_built': u'2006', u'zestimate_valuationRange_low': u'743110', u'graph_data_link': u'http://www.zillow.com/homedetails/255-Northampton-St-UNIT-501-Boston-MA-02118/87796106_zpid/#charts-and-data', u'home_size': u'1057', u'longitude': u'-71.081382', u'map_this_home_link': u'http://www.zillow.com/homes/87796106_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/255-Northampton-St-UNIT-501-Boston-MA-02118/87796106_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02134', u'long': -71.1329925, u'prices': u'339,900', u'address': u'43 Parkvale Ave APT 5, Boston, MA', u'lat': 42.3523208}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'339,000', u'address': u'53 Torrey St # 2, Boston, MA', u'lat': 42.287372}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0522682, u'prices': u'479,000', u'address': u'31 Houghton St # 2, Boston, MA', u'lat': 42.2952453}, {u'status': u'House For Sale', u'zip': None, u'long': -1, u'prices': u'284,999', u'address': u'10 Arbutus St, Dorchester Center, MA', u'lat': -1}, {u'status': u'House For Sale', u'zip': None, u'long': -1, u'prices': u'399,000', u'address': u'181 Glenway St, Dorchester, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'345,000', u'address': u'53 Torrey St # 3, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'2,495,000', u'address': u'242 Beacon St APT 6, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02132', u'long': -71.1587218, u'prices': u'399,900', u'address': u'23 Goethe St # 2, Boston, MA', u'lat': 42.2565786, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'427574', u'tax_value': None, u'zestimate_valuation_range_high': u'448953', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.256671', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096807696', u'last_sold_date': None, u'year_built': u'1940', u'zestimate_valuationRange_low': u'401920', u'graph_data_link': None, u'home_size': u'1370', u'longitude': u'-71.158866', u'map_this_home_link': u'http://www.zillow.com/homes/2096807696_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/23-Goethe-St-2-Boston-MA-02132/2096807696_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.08661099999999, u'prices': u'599,000', u'address': u'100 Maple St, Boston, MA', u'lat': 42.3075847, u'zillow': {u'property_size': u'7157', u'bathrooms': None, u'last_sold_price': u'3360981', u'zestimate_amount': u'695455', u'tax_value': u'426577.0', u'zestimate_valuation_range_high': u'785864', u'tax_year': u'2015', u'zestimate_value_change': u'-9334', u'latitude': u'42.289875', u'zestimate_percentile': u'0', u'bedrooms': None, u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'90139732', u'last_sold_date': u'02/19/1992', u'year_built': u'1925', u'zestimate_valuationRange_low': u'598091', u'graph_data_link': u'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/#charts-and-data', u'home_size': u'16857', u'longitude': u'-71.156478', u'map_this_home_link': u'http://www.zillow.com/homes/90139732_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.11666129999999, u'prices': u'669,000', u'address': u'801 Centre St # 3C, Boston, MA', u'lat': 42.3092487}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0703915, u'prices': u'1,540,000', u'address': u'505 Tremont St UNIT 417, Boston, MA', u'lat': 42.3450221, u'zillow': {u'property_size': u'1364', u'bathrooms': u'2.0', u'last_sold_price': u'1088000', u'zestimate_amount': u'1678483', u'tax_value': u'1132500.0', u'zestimate_valuation_range_high': u'1896686', u'tax_year': u'2014', u'zestimate_value_change': u'-21974', u'latitude': u'42.345039', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'67710271', u'last_sold_date': u'05/30/2008', u'year_built': u'2004', u'zestimate_valuationRange_low': u'1594559', u'graph_data_link': u'http://www.zillow.com/homedetails/505-Tremont-St-UNIT-417-Boston-MA-02116/67710271_zpid/#charts-and-data', u'home_size': u'1364', u'longitude': u'-71.070299', u'map_this_home_link': u'http://www.zillow.com/homes/67710271_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/505-Tremont-St-UNIT-417-Boston-MA-02116/67710271_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0540671, u'prices': u'389,000', u'address': u'16 Chelmsford St UNIT 2, Dorchester, MA', u'lat': 42.284953}, {u'status': u'Condo For Sale', u'zip': u'02136', u'long': -71.12602799999999, u'prices': u'399,500', u'address': u'1391 Hyde Park Ave STE G, Boston, MA', u'lat': 42.2511409}, {u'status': u'Condo For Sale', u'zip': u'02108', u'long': -71.05945, u'prices': u'1,300,000', u'address': u'1 Franklin St # 1601, Boston, MA', u'lat': 42.35631}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0522963, u'prices': u'479,000', u'address': u'29 Houghton St # 1, Boston, MA', u'lat': 42.295264, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'472901', u'tax_value': None, u'zestimate_valuation_range_high': u'501275', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.295223', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096881071', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'439798', u'graph_data_link': None, u'home_size': u'1400', u'longitude': u'-71.052345', u'map_this_home_link': u'http://www.zillow.com/homes/2096881071_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/29-Houghton-St-1-Boston-MA-02122/2096881071_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0559853, u'prices': u'875,000', u'address': u'28 Woodward St # 1, Boston, MA', u'lat': 42.3314431, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'899088', u'tax_value': None, u'zestimate_valuation_range_high': u'1123860', u'tax_year': None, u'zestimate_value_change': u'-17891', u'latitude': u'42.331474', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2107330626', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'674316', u'graph_data_link': None, u'home_size': u'1700', u'longitude': u'-71.055931', u'map_this_home_link': u'http://www.zillow.com/homes/2107330626_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/28-Woodward-St-1-Boston-MA-02127/2107330626_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02131', u'long': -71.1230212, u'prices': u'549,500', u'address': u'12 Mosgrove Ave, Boston, MA', u'lat': 42.2919334, u'zillow': {u'property_size': u'5530', u'bathrooms': u'2.0', u'last_sold_price': u'250000', u'zestimate_amount': u'621969', u'tax_value': u'382100.0', u'zestimate_valuation_range_high': u'653067', u'tax_year': u'2014', u'zestimate_value_change': u'-8375', u'latitude': u'42.291848', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59144888', u'last_sold_date': u'02/25/2015', u'year_built': u'1901', u'zestimate_valuationRange_low': u'590871', u'graph_data_link': u'http://www.zillow.com/homedetails/12-Mosgrove-Ave-Boston-MA-02131/59144888_zpid/#charts-and-data', u'home_size': u'1950', u'longitude': u'-71.123093', u'map_this_home_link': u'http://www.zillow.com/homes/59144888_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/12-Mosgrove-Ave-Boston-MA-02131/59144888_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0446874, u'prices': u'769,000', u'address': u'235 Victory Rd UNIT 235, Quincy, MA', u'lat': 42.2994295}, {u'status': u'For Sale by Owner', u'zip': u'02134', u'long': -71.131332, u'prices': u'549,000', u'address': u'29 Brainerd Rd, Boston, MA', u'lat': 42.3486087}, {u'status': u'Townhouse For Sale', u'zip': u'02130', u'long': -71.1157648, u'prices': u'749,000', u'address': u'5 Atwood Sq # 5, Boston, MA', u'lat': 42.3072151, u'zillow': {u'property_size': None, u'bathrooms': u'2.5', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.307212', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096375498', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'1603', u'longitude': u'-71.115613', u'map_this_home_link': u'http://www.zillow.com/homes/2096375498_zpid/', u'home_type': u'Townhouse', u'home_detail_link': u'http://www.zillow.com/homedetails/5-Atwood-Sq-5-Boston-MA-02130/2096375498_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.05405100000002, u'prices': u'849,000', u'address': u'321 Dorchester St # 1, Boston, MA', u'lat': 42.331281, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'925305', u'tax_value': None, u'zestimate_valuation_range_high': u'971570', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.33145', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096497571', u'last_sold_date': None, u'year_built': None, u'zestimate_valuationRange_low': u'879040', u'graph_data_link': None, u'home_size': u'2400', u'longitude': u'-71.05343', u'map_this_home_link': u'http://www.zillow.com/homes/2096497571_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/321-Dorchester-St-1-Boston-MA-02127/2096497571_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02125', u'long': -71.049533, u'prices': u'899,000', u'address': u'54 Grampian Way, Dorchester, MA', u'lat': 42.312072, u'zillow': {u'property_size': u'6534', u'bathrooms': u'2.0', u'last_sold_price': u'197000', u'zestimate_amount': u'769717', u'tax_value': u'499300.0', u'zestimate_valuation_range_high': u'877477', u'tax_year': u'2015', u'zestimate_value_change': u'-25499', u'latitude': u'42.312059', u'zestimate_percentile': u'0', u'bedrooms': u'5', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59113320', u'last_sold_date': u'12/11/1998', u'year_built': u'1885', u'zestimate_valuationRange_low': u'692745', u'graph_data_link': u'http://www.zillow.com/homedetails/54-Grampian-Way-Dorchester-MA-02125/59113320_zpid/#charts-and-data', u'home_size': u'2423', u'longitude': u'-71.049545', u'map_this_home_link': u'http://www.zillow.com/homes/59113320_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/54-Grampian-Way-Dorchester-MA-02125/59113320_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.171084, u'prices': u'849,000', u'address': u'129 Gardner St, Boston, MA', u'lat': 42.277522, u'zillow': {u'property_size': u'6969', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'858867', u'tax_value': None, u'zestimate_valuation_range_high': u'1039229', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.277522', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096677074', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'695682', u'graph_data_link': None, u'home_size': u'2800', u'longitude': u'-71.171084', u'map_this_home_link': u'http://www.zillow.com/homes/2096677074_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/129-Gardner-St-Boston-MA-02132/2096677074_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.1162116, u'prices': u'529,000', u'address': u'7-9 Herbertson # 2, Jamaica Plain, MA', u'lat': 42.2920089, u'zillow': {u'property_size': u'9999', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'595133', u'tax_value': None, u'zestimate_valuation_range_high': u'761770', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.292142', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096675064', u'last_sold_date': None, u'year_built': u'1925', u'zestimate_valuationRange_low': u'458252', u'graph_data_link': None, u'home_size': u'1260', u'longitude': u'-71.116361', u'map_this_home_link': u'http://www.zillow.com/homes/2096675064_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/7-9-Herbertson-2-Jamaica-Plain-MA-02130/2096675064_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.1544114, u'prices': u'739,900', u'address': u'31 Maple St, Boston, MA', u'lat': 42.287886, u'zillow': {u'property_size': u'4356', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'715295', u'tax_value': u'448800.0', u'zestimate_valuation_range_high': u'765366', u'tax_year': u'2014', u'zestimate_value_change': u'1927', u'latitude': u'42.287908', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59155302', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'665224', u'graph_data_link': u'http://www.zillow.com/homedetails/31-Maple-St-Boston-MA-02132/59155302_zpid/#charts-and-data', u'home_size': u'1847', u'longitude': u'-71.154418', u'map_this_home_link': u'http://www.zillow.com/homes/59155302_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/31-Maple-St-Boston-MA-02132/59155302_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.0814012, u'prices': u'675,000', u'address': u'255 Northampton St UNIT 501, Boston, MA', u'lat': 42.3394238}, {u'status': u'Condo For Sale', u'zip': u'02134', u'long': -71.1329925, u'prices': u'339,900', u'address': u'43 Parkvale Ave APT 5, Boston, MA', u'lat': 42.3523208, u'zillow': {u'property_size': u'578', u'bathrooms': u'1.0', u'last_sold_price': u'197000', u'zestimate_amount': u'343185', u'tax_value': u'183100.0', u'zestimate_valuation_range_high': u'360344', u'tax_year': u'2014', u'zestimate_value_change': None, u'latitude': u'42.351999', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59088144', u'last_sold_date': u'08/31/2006', u'year_built': u'1910', u'zestimate_valuationRange_low': u'326026', u'graph_data_link': u'http://www.zillow.com/homedetails/43-Parkvale-Ave-APT-5-Boston-MA-02134/59088144_zpid/#charts-and-data', u'home_size': u'578', u'longitude': u'-71.133272', u'map_this_home_link': u'http://www.zillow.com/homes/59088144_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/43-Parkvale-Ave-APT-5-Boston-MA-02134/59088144_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'339,000', u'address': u'53 Torrey St # 2, Boston, MA', u'lat': 42.287372}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0522682, u'prices': u'479,000', u'address': u'31 Houghton St # 2, Boston, MA', u'lat': 42.2952453, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'471644', u'tax_value': None, u'zestimate_valuation_range_high': u'499943', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.295265', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096881020', u'last_sold_date': None, u'year_built': u'1900', u'zestimate_valuationRange_low': u'438629', u'graph_data_link': None, u'home_size': u'1400', u'longitude': u'-71.052066', u'map_this_home_link': u'http://www.zillow.com/homes/2096881020_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/31-Houghton-St-2-Boston-MA-02122/2096881020_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02124', u'long': -71.089551, u'prices': u'284,999', u'address': u'10 Arbutus St, Dorchester Center, MA', u'lat': 42.2879239}, {u'status': u'House For Sale', u'zip': None, u'long': -1, u'prices': u'399,000', u'address': u'181 Glenway St, Dorchester, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'345,000', u'address': u'53 Torrey St # 3, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'2,495,000', u'address': u'242 Beacon St APT 6, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': u'02132', u'long': -71.1587218, u'prices': u'399,900', u'address': u'23 Goethe St # 2, Boston, MA', u'lat': 42.2565786, u'zillow': {u'property_size': None, u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'427574', u'tax_value': None, u'zestimate_valuation_range_high': u'448953', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.256671', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096807696', u'last_sold_date': None, u'year_built': u'1940', u'zestimate_valuationRange_low': u'401920', u'graph_data_link': None, u'home_size': u'1370', u'longitude': u'-71.158866', u'map_this_home_link': u'http://www.zillow.com/homes/2096807696_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/23-Goethe-St-2-Boston-MA-02132/2096807696_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.08661099999999, u'prices': u'599,000', u'address': u'100 Maple St, Boston, MA', u'lat': 42.3075847, u'zillow': {u'property_size': u'7157', u'bathrooms': None, u'last_sold_price': u'3360981', u'zestimate_amount': u'695455', u'tax_value': u'426577.0', u'zestimate_valuation_range_high': u'785864', u'tax_year': u'2015', u'zestimate_value_change': u'-9334', u'latitude': u'42.289875', u'zestimate_percentile': u'0', u'bedrooms': None, u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'90139732', u'last_sold_date': u'02/19/1992', u'year_built': u'1925', u'zestimate_valuationRange_low': u'598091', u'graph_data_link': u'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/#charts-and-data', u'home_size': u'16857', u'longitude': u'-71.156478', u'map_this_home_link': u'http://www.zillow.com/homes/90139732_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.11666129999999, u'prices': u'669,000', u'address': u'801 Centre St # 3C, Boston, MA', u'lat': 42.3092487}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0703915, u'prices': u'1,540,000', u'address': u'505 Tremont St UNIT 417, Boston, MA', u'lat': 42.3450221}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0540671, u'prices': u'389,000', u'address': u'16 Chelmsford St UNIT 2, Dorchester, MA', u'lat': 42.284953}, {u'status': u'Condo For Sale', u'zip': u'02136', u'long': -71.12602799999999, u'prices': u'399,500', u'address': u'1391 Hyde Park Ave STE G, Boston, MA', u'lat': 42.2511409, u'zillow': {u'property_size': u'3484', u'bathrooms': u'1.0', u'last_sold_price': u'310000', u'zestimate_amount': u'399402', u'tax_value': u'450000.0', u'zestimate_valuation_range_high': u'463306', u'tax_year': u'2014', u'zestimate_value_change': u'-12511', u'latitude': u'42.250944', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81855097', u'last_sold_date': u'03/17/2014', u'year_built': u'1950', u'zestimate_valuationRange_low': u'343486', u'graph_data_link': u'http://www.zillow.com/homedetails/1391-Hyde-Park-Ave-STE-G-Boston-MA-02136/81855097_zpid/#charts-and-data', u'home_size': u'1570', u'longitude': u'-71.125871', u'map_this_home_link': u'http://www.zillow.com/homes/81855097_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1391-Hyde-Park-Ave-STE-G-Boston-MA-02136/81855097_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02108', u'long': -71.05945, u'prices': u'1,300,000', u'address': u'1 Franklin St # 1601, Boston, MA', u'lat': 42.35631}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0522963, u'prices': u'479,000', u'address': u'29 Houghton St # 1, Boston, MA', u'lat': 42.295264}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0559853, u'prices': u'875,000', u'address': u'28 Woodward St # 1, Boston, MA', u'lat': 42.3314431, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'899088', u'tax_value': None, u'zestimate_valuation_range_high': u'1123860', u'tax_year': None, u'zestimate_value_change': u'-17891', u'latitude': u'42.331474', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2107330626', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'674316', u'graph_data_link': None, u'home_size': u'1700', u'longitude': u'-71.055931', u'map_this_home_link': u'http://www.zillow.com/homes/2107330626_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/28-Woodward-St-1-Boston-MA-02127/2107330626_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02131', u'long': -71.1230212, u'prices': u'549,500', u'address': u'12 Mosgrove Ave, Boston, MA', u'lat': 42.2919334, u'zillow': {u'property_size': u'5530', u'bathrooms': u'2.0', u'last_sold_price': u'250000', u'zestimate_amount': u'621969', u'tax_value': u'382100.0', u'zestimate_valuation_range_high': u'653067', u'tax_year': u'2014', u'zestimate_value_change': u'-8375', u'latitude': u'42.291848', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59144888', u'last_sold_date': u'02/25/2015', u'year_built': u'1901', u'zestimate_valuationRange_low': u'590871', u'graph_data_link': u'http://www.zillow.com/homedetails/12-Mosgrove-Ave-Boston-MA-02131/59144888_zpid/#charts-and-data', u'home_size': u'1950', u'longitude': u'-71.123093', u'map_this_home_link': u'http://www.zillow.com/homes/59144888_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/12-Mosgrove-Ave-Boston-MA-02131/59144888_zpid/'}}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'769,000', u'address': u'235 Victory Rd UNIT 235, Quincy, MA', u'lat': -1}, {u'status': u'For Sale by Owner', u'zip': None, u'long': -1, u'prices': u'549,000', u'address': u'29 Brainerd Rd, Boston, MA', u'lat': -1}, {u'status': u'Townhouse For Sale', u'zip': u'02130', u'long': -71.1157648, u'prices': u'749,000', u'address': u'5 Atwood Sq # 5, Boston, MA', u'lat': 42.3072151, u'zillow': {u'property_size': None, u'bathrooms': u'2.5', u'last_sold_price': None, u'zestimate_amount': None, u'tax_value': None, u'zestimate_valuation_range_high': None, u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.307212', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'12/31/1969', u'zillow_id': u'2096375498', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': None, u'graph_data_link': None, u'home_size': u'1603', u'longitude': u'-71.115613', u'map_this_home_link': u'http://www.zillow.com/homes/2096375498_zpid/', u'home_type': u'Townhouse', u'home_detail_link': u'http://www.zillow.com/homedetails/5-Atwood-Sq-5-Boston-MA-02130/2096375498_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.05405100000002, u'prices': u'849,000', u'address': u'321 Dorchester St # 1, Boston, MA', u'lat': 42.331281}, {u'status': u'House For Sale', u'zip': u'02125', u'long': -71.049533, u'prices': u'899,000', u'address': u'54 Grampian Way, Dorchester, MA', u'lat': 42.312072}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.171084, u'prices': u'849,000', u'address': u'129 Gardner St, Boston, MA', u'lat': 42.277522, u'zillow': {u'property_size': u'6969', u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'858867', u'tax_value': None, u'zestimate_valuation_range_high': u'1039229', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.277522', u'zestimate_percentile': u'0', u'bedrooms': u'4', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096677074', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'695682', u'graph_data_link': None, u'home_size': u'2800', u'longitude': u'-71.171084', u'map_this_home_link': u'http://www.zillow.com/homes/2096677074_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/129-Gardner-St-Boston-MA-02132/2096677074_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.1162116, u'prices': u'529,000', u'address': u'7-9 Herbertson # 2, Jamaica Plain, MA', u'lat': 42.2920089, u'zillow': {u'property_size': u'9999', u'bathrooms': u'2.0', u'last_sold_price': None, u'zestimate_amount': u'595133', u'tax_value': None, u'zestimate_valuation_range_high': u'761770', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.292142', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2096675064', u'last_sold_date': None, u'year_built': u'1925', u'zestimate_valuationRange_low': u'458252', u'graph_data_link': None, u'home_size': u'1260', u'longitude': u'-71.116361', u'map_this_home_link': u'http://www.zillow.com/homes/2096675064_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/7-9-Herbertson-2-Jamaica-Plain-MA-02130/2096675064_zpid/'}}, {u'status': u'House For Sale', u'zip': u'02132', u'long': -71.1544114, u'prices': u'739,900', u'address': u'31 Maple St, Boston, MA', u'lat': 42.287886}, {u'status': u'Condo For Sale', u'zip': u'02118', u'long': -71.0814012, u'prices': u'675,000', u'address': u'255 Northampton St UNIT 501, Boston, MA', u'lat': 42.3394238, u'zillow': {u'property_size': u'1057', u'bathrooms': u'1.0', u'last_sold_price': u'475000', u'zestimate_amount': u'782221', u'tax_value': u'509100.0', u'zestimate_valuation_range_high': u'821332', u'tax_year': u'2014', u'zestimate_value_change': u'-38684', u'latitude': u'42.339385', u'zestimate_percentile': u'0', u'bedrooms': u'2', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'87796106', u'last_sold_date': u'09/03/2010', u'year_built': u'2006', u'zestimate_valuationRange_low': u'743110', u'graph_data_link': u'http://www.zillow.com/homedetails/255-Northampton-St-UNIT-501-Boston-MA-02118/87796106_zpid/#charts-and-data', u'home_size': u'1057', u'longitude': u'-71.081382', u'map_this_home_link': u'http://www.zillow.com/homes/87796106_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/255-Northampton-St-UNIT-501-Boston-MA-02118/87796106_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02134', u'long': -71.1329925, u'prices': u'339,900', u'address': u'43 Parkvale Ave APT 5, Boston, MA', u'lat': 42.3523208, u'zillow': {u'property_size': u'578', u'bathrooms': u'1.0', u'last_sold_price': u'197000', u'zestimate_amount': u'343185', u'tax_value': u'183100.0', u'zestimate_valuation_range_high': u'360344', u'tax_year': u'2014', u'zestimate_value_change': None, u'latitude': u'42.351999', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'59088144', u'last_sold_date': u'08/31/2006', u'year_built': u'1910', u'zestimate_valuationRange_low': u'326026', u'graph_data_link': u'http://www.zillow.com/homedetails/43-Parkvale-Ave-APT-5-Boston-MA-02134/59088144_zpid/#charts-and-data', u'home_size': u'578', u'longitude': u'-71.133272', u'map_this_home_link': u'http://www.zillow.com/homes/59088144_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/43-Parkvale-Ave-APT-5-Boston-MA-02134/59088144_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02124', u'long': -71.073962, u'prices': u'339,000', u'address': u'53 Torrey St # 2, Boston, MA', u'lat': 42.287372}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0522682, u'prices': u'479,000', u'address': u'31 Houghton St # 2, Boston, MA', u'lat': 42.2952453}, {u'status': u'House For Sale', u'zip': None, u'long': -1, u'prices': u'284,999', u'address': u'10 Arbutus St, Dorchester Center, MA', u'lat': -1}, {u'status': u'House For Sale', u'zip': None, u'long': -1, u'prices': u'399,000', u'address': u'181 Glenway St, Dorchester, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'345,000', u'address': u'53 Torrey St # 3, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'2,495,000', u'address': u'242 Beacon St APT 6, Boston, MA', u'lat': -1}, {u'status': u'Condo For Sale', u'zip': None, u'long': -1, u'prices': u'399,900', u'address': u'23 Goethe St # 2, Boston, MA', u'lat': -1}, {u'status': u'House For Sale', u'zip': u'02121', u'long': -71.08661099999999, u'prices': u'599,000', u'address': u'100 Maple St, Boston, MA', u'lat': 42.3075847, u'zillow': {u'property_size': u'7157', u'bathrooms': None, u'last_sold_price': u'3360981', u'zestimate_amount': u'695455', u'tax_value': u'426577.0', u'zestimate_valuation_range_high': u'785864', u'tax_year': u'2015', u'zestimate_value_change': u'-9334', u'latitude': u'42.289875', u'zestimate_percentile': u'0', u'bedrooms': None, u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'90139732', u'last_sold_date': u'02/19/1992', u'year_built': u'1925', u'zestimate_valuationRange_low': u'598091', u'graph_data_link': u'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/#charts-and-data', u'home_size': u'16857', u'longitude': u'-71.156478', u'map_this_home_link': u'http://www.zillow.com/homes/90139732_zpid/', u'home_type': u'SingleFamily', u'home_detail_link': u'http://www.zillow.com/homedetails/100-Maple-St-106-Dorchester-MA-02121/90139732_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02130', u'long': -71.11666129999999, u'prices': u'669,000', u'address': u'801 Centre St # 3C, Boston, MA', u'lat': 42.3092487}, {u'status': u'Condo For Sale', u'zip': u'02116', u'long': -71.0703915, u'prices': u'1,540,000', u'address': u'505 Tremont St UNIT 417, Boston, MA', u'lat': 42.3450221, u'zillow': {u'property_size': u'1364', u'bathrooms': u'2.0', u'last_sold_price': u'1088000', u'zestimate_amount': u'1678483', u'tax_value': u'1132500.0', u'zestimate_valuation_range_high': u'1896686', u'tax_year': u'2014', u'zestimate_value_change': u'-21974', u'latitude': u'42.345039', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'67710271', u'last_sold_date': u'05/30/2008', u'year_built': u'2004', u'zestimate_valuationRange_low': u'1594559', u'graph_data_link': u'http://www.zillow.com/homedetails/505-Tremont-St-UNIT-417-Boston-MA-02116/67710271_zpid/#charts-and-data', u'home_size': u'1364', u'longitude': u'-71.070299', u'map_this_home_link': u'http://www.zillow.com/homes/67710271_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/505-Tremont-St-UNIT-417-Boston-MA-02116/67710271_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0540671, u'prices': u'389,000', u'address': u'16 Chelmsford St UNIT 2, Dorchester, MA', u'lat': 42.284953}, {u'status': u'Condo For Sale', u'zip': u'02136', u'long': -71.12602799999999, u'prices': u'399,500', u'address': u'1391 Hyde Park Ave STE G, Boston, MA', u'lat': 42.2511409, u'zillow': {u'property_size': u'3484', u'bathrooms': u'1.0', u'last_sold_price': u'310000', u'zestimate_amount': u'399402', u'tax_value': u'450000.0', u'zestimate_valuation_range_high': u'463306', u'tax_year': u'2014', u'zestimate_value_change': u'-12511', u'latitude': u'42.250944', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'81855097', u'last_sold_date': u'03/17/2014', u'year_built': u'1950', u'zestimate_valuationRange_low': u'343486', u'graph_data_link': u'http://www.zillow.com/homedetails/1391-Hyde-Park-Ave-STE-G-Boston-MA-02136/81855097_zpid/#charts-and-data', u'home_size': u'1570', u'longitude': u'-71.125871', u'map_this_home_link': u'http://www.zillow.com/homes/81855097_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1391-Hyde-Park-Ave-STE-G-Boston-MA-02136/81855097_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02108', u'long': -71.05945, u'prices': u'1,300,000', u'address': u'1 Franklin St # 1601, Boston, MA', u'lat': 42.35631, u'zillow': {u'property_size': None, u'bathrooms': u'1.0', u'last_sold_price': u'945000', u'zestimate_amount': u'1175611', u'tax_value': None, u'zestimate_valuation_range_high': u'1493026', u'tax_year': None, u'zestimate_value_change': None, u'latitude': u'42.355785', u'zestimate_percentile': u'0', u'bedrooms': u'1', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2097180167', u'last_sold_date': u'09/15/2016', u'year_built': u'2016', u'zestimate_valuationRange_low': u'846440', u'graph_data_link': None, u'home_size': u'923', u'longitude': u'-71.059526', u'map_this_home_link': u'http://www.zillow.com/homes/2097180167_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/1-Franklin-St-1601-Boston-MA-02110/2097180167_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0522963, u'prices': u'479,000', u'address': u'29 Houghton St # 1, Boston, MA', u'lat': 42.295264}, {u'status': u'Condo For Sale', u'zip': u'02127', u'long': -71.0559853, u'prices': u'875,000', u'address': u'28 Woodward St # 1, Boston, MA', u'lat': 42.3314431, u'zillow': {u'property_size': None, u'bathrooms': u'3.0', u'last_sold_price': None, u'zestimate_amount': u'899088', u'tax_value': None, u'zestimate_valuation_range_high': u'1123860', u'tax_year': None, u'zestimate_value_change': u'-17891', u'latitude': u'42.331474', u'zestimate_percentile': u'0', u'bedrooms': u'3', u'zestimate_last_updated': u'11/12/2016', u'zillow_id': u'2107330626', u'last_sold_date': None, u'year_built': u'2016', u'zestimate_valuationRange_low': u'674316', u'graph_data_link': None, u'home_size': u'1700', u'longitude': u'-71.055931', u'map_this_home_link': u'http://www.zillow.com/homes/2107330626_zpid/', u'home_type': u'Condominium', u'home_detail_link': u'http://www.zillow.com/homedetails/28-Woodward-St-1-Boston-MA-02127/2107330626_zpid/'}}, {u'status': u'Condo For Sale', u'zip': u'02131', u'long': -71.1230212, u'prices': u'549,500', u'address': u'12 Mosgrove Ave, Boston, MA', u'lat': 42.2919334}, {u'status': u'Condo For Sale', u'zip': u'02122', u'long': -71.0446874, u'prices': u'769,000', u'address': u'235 Victory Rd UNIT 235, Quincy, MA', u'lat': 42.2994295}, {u'status': u'For Sale by Owner', u'zip': None, u'long': -1, u'prices': u'549,000', u'address': u'29 Brainerd Rd, Boston, MA', u'lat': -1}, {u'status': u'Townhouse For Sale', u'zip': None, u'long': -1, u'prices': u'749,000', u'address': u'5 Atwood Sq # 5, Boston, MA', u'lat': -1}]\n" ] } ], "source": [ "print d" ] }, { "cell_type": "code", "execution_count": 63, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "the total number of data is 988 and the number of property is 102\n" ] } ], "source": [ "countProperty = 0;\n", "countTotal = 0\n", "for i in d:\n", " try:\n", " a = i['property']\n", " countProperty += 1 \n", " except:\n", " pass\n", " countTotal +=1\n", "print \"the total number of data is\" , countTotal, \" and the number of property is \", countProperty\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [ "SaveJson(\"HousingPriceFromWebTestWithProperties.json\",d)" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [] } ], "metadata": { "anaconda-cloud": {}, "kernelspec": { "display_name": "Python 2", "language": "python", "name": "python2" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 2 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython2", "version": "2.7.11" } }, "nbformat": 4, "nbformat_minor": 0 }