mirror of
https://github.com/Bunsly/HomeHarvest.git
synced 2026-03-04 19:44:29 -08:00
docs: add example
This commit is contained in:
29
README.md
29
README.md
@@ -1,12 +1,35 @@
|
|||||||
|
# HomeHarvest
|
||||||
|
|
||||||
**HomeHarvest** aims to be the top Python real estate scraping library.
|
**HomeHarvest** aims to be the top Python real estate scraping library.
|
||||||
|
|
||||||
## RoadMap
|
## RoadMap
|
||||||
|
|
||||||
- Currently, supports scraping from **RedFin**
|
- **Supported Sites**: Currently, we support scraping from sites such as `Zillow` and `RedFin`.
|
||||||
- Coming soon: Support for **Zillow** and other real estate platforms
|
- **Output**: Provides the option to return the scraped data as a Pandas dataframe.
|
||||||
- Under consideration: Excel plugin to attract a wider audience
|
- **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
|
### Installation
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pip install --upgrade homeharvest
|
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)
|
||||||
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user