seme0021 / python-zillow

Python library for the Zillow API
Apache License 2.0
129 stars 64 forks source link

Missing API to search based on criteria #34

Open alexandre0119 opened 5 years ago

alexandre0119 commented 5 years ago

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. Pls let me know if we have this method implemented or not. Thanks, Alex

RyanConway91 commented 5 years ago

The Zillow API does not allow general searches, so this feature is unavailable. One work around which I implemented successfully was to use a scraper (beautiful soup) a get a list of properties that match some search and pull the addresses and then loop them through the API

Om-Pandey commented 4 years ago

@RyanConway91 I am actually facing a similar problem, I want to extract information for all houses in a zip code(for US).. my guess is that there was an api which has now been discontinued.. Can you tell if how to go about this if possible... Thanks!😊

RyanConway91 commented 4 years ago

As I stated above, I never figured out how to get the API to search by location. Rather, you need to use the website to filter by location and then feed that webpage to a scrapper (beautifulsoup) and loop through the addresses 1 by 1 with the API.

The API and python package both still exist this approach should still work