python-zillow
python-zillow copied to clipboard
Python library for the Zillow API
I followed the instructions on the Github page. I have the python-zillow module, but I am getting the error "AttributeError: module 'zillow' has no attribute 'ValuationApi'" Sorry if I'm missing...
Update typos of retnzestimate to rentzestimate
Noticed this misspelling in a few places and it might be setting the wrong flag in `GetSearchResults()` and `GetZEstimate()` functions https://github.com/seme0021/python-zillow/blob/master/zillow/api.py#L55
Hi there, I'm new to python and zillow, so bear with me I'm getting `Zillow did not return a valid response` for some responses that seem to be valid. Digging...
Hi, I am able to run the basic examples, but did not see API to perform the general search function, like search properties based on zip code, price range, etc....
`GetSearchResults` & `GetDeepSearchResults` both have an issue with returning either a single search result (of datatype `OrderedDict`) or a `list` of search results. This variable rtype behavior causes some calls...
Zillow sometimes returns more than one result for a request (ex: when the apartment number is missing for a multi-unit address). Need to handle the multiple results.
``` File "/home/shane/.local/lib/python3.6/site-packages/zillow/api.py", line 165, in GetDeepComps principal_data = xmltodict_data.get('Comps:comps')['response']['properties']['principal'] KeyError: 'response' ```
What limitations are there on the return info for an API call? More specifically, is it possible to obtain this data (Home Value/Appreciation):
Im trying to use your python lib, but unfortunately i struggle to find zillow_key.conf. should i create it? if yes, then where? should it being generated automatically after lib installation?...