有没有办法在我的网站上获得zestimate,而不是每次都去Zillow

有没有办法在我的网站上获得类似于http://chattanoogapropertyliquidators.com/p/6656上的zestimate? 我不想每次都去zillow并且每次都复制并粘贴zestimate。我尝试在zillow上使用API​​调用教程,但我觉得我最好学习希腊语。我已经在我的数据库中有地址城市和州,只是想显示zestimate值而不是每次都搜索它。     
已邀请:
以下是我编写的一些示例python代码,用于从电子零件网站获取价格:
import re
import string
import urllib

#"http://store.platt.com/product.aspx?zpid=" + item_number
#<span class='ProductPriceOrderBox'>$0.349<

regex = re.compile("class='ProductPriceOrderBox'>(.*?)<")

def scrape_price(item_number):
    content = urllib.urlopen("http://store.platt.com/product.aspx?zpid={0}".format(item_number)).read()
    m = regex.search(content)
    if m:
        price = m.group(1)
    return string.strip(price)

print scrape_price(62408)
    
为什么不使用用python或类似文件编写的web scraper?     
使用GetZestimate API获取特定PropertyID的Zestimate。     

要回复问题请先登录注册