Skip to content

Commit

Permalink
use subset of list
Browse files Browse the repository at this point in the history
  • Loading branch information
bhagyasharma committed Jul 3, 2024
1 parent 87672c2 commit 27efc3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -393,14 +393,14 @@ parcl_property_id_list = units['parcl_property_id'].tolist()
Gets unit-level properties and their housing event history, including sales, listings, and rentals. The response includes detailed property information and historical event data for each specified property.
```python
sale_events = client.property.events.retrieve(
parcl_property_ids=parcl_property_id_list,
parcl_property_ids=parcl_property_id_list[0:10],
event_type='SALE',
start_date='2020-01-01',
end_date='2024-06-30'
)

rental_events = client.property.events.retrieve(
parcl_property_ids=parcl_property_id_list,
parcl_property_ids=parcl_property_id_list[0:10],
event_type='RENTAL',
start_date='2024-01-01',
end_date='2024-06-30'
Expand Down

0 comments on commit 27efc3d

Please sign in to comment.