Update README.md

pull/10/head
Zachary Hampton 2023-09-19 11:08:08 -07:00 committed by GitHub
parent 20ce44fb3a
commit 05fca9b7e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 7 deletions

View File

@ -35,16 +35,17 @@ properties: pd.DataFrame = scrape_property(
#: Note, to export to CSV or Excel, use properties.to_csv() or properties.to_excel(). #: Note, to export to CSV or Excel, use properties.to_csv() or properties.to_excel().
print(properties) print(properties)
``` ```
## Output ## Output
```py ```py
>>> properties.head() >>> properties.head()
street city ... mls_id description property_url site_name listing_type apt_min_price apt_max_price ...
0 420 N Scottsdale Rd Tempe ... NaN NaN 0 https://www.redfin.com/AZ/Tempe/1003-W-Washing... redfin for_rent 1666.0 2750.0 ...
1 1255 E University Dr Tempe ... NaN NaN 1 https://www.redfin.com/AZ/Tempe/VELA-at-Town-L... redfin for_rent 1665.0 3763.0 ...
2 1979 E Rio Salado Pkwy Tempe ... NaN NaN 2 https://www.redfin.com/AZ/Tempe/Camden-Tempe/a... redfin for_rent 1939.0 3109.0 ...
3 548 S Wilson St Tempe ... None None 3 https://www.redfin.com/AZ/Tempe/Emerson-Park/a... redfin for_rent 1185.0 1817.0 ...
4 945 E Playa Del Norte Dr Unit 4027 Tempe ... NaN NaN 4 https://www.redfin.com/AZ/Tempe/Rio-Paradiso-A... redfin for_rent 1470.0 2235.0 ...
[5 rows x 23 columns] [5 rows x 41 columns]
``` ```
### Parameters for `scrape_properties()` ### Parameters for `scrape_properties()`