[docs] update example

pull/32/head
Cullen Watson 2023-10-04 21:50:54 -05:00 committed by GitHub
parent ce3f94d0af
commit 5e825601a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ from datetime import datetime
# Generate filename based on current timestamp # Generate filename based on current timestamp
current_timestamp = datetime.now().strftime("%Y%m%d_%H%M%S") current_timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
filename = f"output/{current_timestamp}.csv" filename = f"HomeHarvest_{current_timestamp}.csv"
properties = scrape_property( properties = scrape_property(
location="San Diego, CA", location="San Diego, CA",
@ -15,4 +15,4 @@ print(f"Number of properties: {len(properties)}")
# Export to csv # Export to csv
properties.to_csv(filename, index=False) properties.to_csv(filename, index=False)
print(properties.head()) print(properties.head())