Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### v1.16.2
- Deprecate `volatility` endpoints.

### v1.16.1
- Fix bug in auto pagination logic

Expand Down
9 changes: 0 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -341,14 +341,10 @@ results = client.portfolio_metrics.sf_new_listings_for_rent_rolling_counts.retri

The Parcl Labs Price Feed (PLPF) is a daily-updated, real-time indicator of residential real estate prices, measured by price per square foot, across select US markets.

The Price Feeds category allows you to access our daily-updated PLPF and derivative metrics, such as volatility.

##### Price Feed
Gets the daily price feed for a specified `parcl_id`.

##### Price Feed Volatility
Gets the daily price feed volatility for a specified `parcl_id`.

##### Rental Price Feed
Gets the daily updated Parcl Labs Rental Price Feed for a given `parcl_id`.

Expand All @@ -374,11 +370,6 @@ rental_price_feeds = client.price_feed.rental_price_feed.retrieve(
start_date=start_date,
end_date=end_date
)
price_feed_volatility = client.price_feed.volatility.retrieve(
parcl_ids=pricefeed_ids,
start_date=start_date,
end_date=end_date
)
```

### Property <a id="property"></a>
Expand Down
2 changes: 1 addition & 1 deletion parcllabs/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "1.16.1"
VERSION = "1.16.2"
5 changes: 0 additions & 5 deletions parcllabs/parcllabs_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,6 @@ def _create_price_feed_services(self) -> ServiceGroup:
"post_url": "/v1/price_feed/price_feed",
"service_class": ParclLabsService,
},
"volatility": {
"url": "/v1/price_feed/{parcl_id}/volatility",
"post_url": "/v1/price_feed/volatility",
"service_class": ParclLabsService,
},
"rental_price_feed": {
"url": "/v1/price_feed/{parcl_id}/rental_price_feed",
"post_url": "/v1/price_feed/rental_price_feed",
Expand Down
10 changes: 0 additions & 10 deletions scripts/sdk_post_latency.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,16 +162,6 @@ def main() -> None:
auto_paginate=True,
)

profile_api_call(
"Retrieve Price Feed Volatility",
client.price_feed.volatility,
output_file,
parcl_ids=pricefeed_ids,
start_date=start_date,
end_date=end_date,
auto_paginate=True,
)

start_date = "2023-04-01"
end_date = "2024-08-01"
limit = 10000
Expand Down