[MIRROR] Python package for scraping real estate property data
Go to file
Cullen Watson a433e46258 chore: update version number 2023-09-17 15:12:39 -05:00
.github/workflows - scrapers & pypi init 2023-09-15 13:06:14 -07:00
homeharvest feat(scrapers): add zillow 2023-09-17 15:06:31 -05:00
tests feat(scrapers): add zillow 2023-09-17 15:06:31 -05:00
.gitignore feat(scrapers): add zillow 2023-09-17 15:06:31 -05:00
LICENSE Create LICENSE 2023-09-16 10:39:36 -07:00
README.md docs: add example 2023-09-17 15:10:21 -05:00
poetry.lock - base 2023-09-15 15:17:37 -07:00
pyproject.toml chore: update version number 2023-09-17 15:12:39 -05:00

README.md

HomeHarvest

HomeHarvest aims to be the top Python real estate scraping library.

RoadMap

  • Supported Sites: Currently, we support scraping from sites such as Zillow and RedFin.
  • Output: Provides the option to return the scraped data as a Pandas dataframe.
  • Under Consideration: We're looking into the possibility of an Excel plugin to cater to a broader audience.

Site Name Options

  • zillow
  • redfin

Listing Types

  • for_rent
  • for_sale

Installation

pip install --upgrade homeharvest

Example Usage

from homeharvest import scrape_property

properties = scrape_property(
    location="85281", site_name="zillow", listing_type="for_rent"
)
print(properties)