diff --git a/CHANGELOG.md b/CHANGELOG.md index 35669c7..8d9c151 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +### v1.16.2 +- Deprecate `volatility` endpoints. + ### v1.16.1 - Fix bug in auto pagination logic diff --git a/README.md b/README.md index dc9b589..9d5cb49 100644 --- a/README.md +++ b/README.md @@ -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`. @@ -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 diff --git a/parcllabs/__version__.py b/parcllabs/__version__.py index d5704ef..0d1c3b5 100644 --- a/parcllabs/__version__.py +++ b/parcllabs/__version__.py @@ -1 +1 @@ -VERSION = "1.16.1" +VERSION = "1.16.2" diff --git a/parcllabs/parcllabs_client.py b/parcllabs/parcllabs_client.py index 32d26c0..749818c 100644 --- a/parcllabs/parcllabs_client.py +++ b/parcllabs/parcllabs_client.py @@ -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", diff --git a/scripts/sdk_post_latency.py b/scripts/sdk_post_latency.py index 393cc09..b9ebb99 100644 --- a/scripts/sdk_post_latency.py +++ b/scripts/sdk_post_latency.py @@ -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