Skip to content

Commit c837dd1

Browse files
authored
Merge pull request #72 from ParclLabs/bugfix/limit
fix default limit
2 parents 015e976 + 9f0ced0 commit c837dd1

7 files changed

+14
-12
lines changed

parcllabs/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "1.9.0"
1+
VERSION = "1.9.1"

parcllabs/parcllabs_client.py

+1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ def __init__(
5353
self.api_url = api_url
5454
self.account_info = {"est_session_credits_used": 0}
5555
self.num_workers = num_workers
56+
self.limit = limit
5657
self.turbo_mode = turbo_mode
5758

5859
self._initialize_services()

parcllabs/services/metrics/portfolio_size_service.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from typing import Any, Mapping, Optional, List
2-
from parcllabs.common import DEFAULT_LIMIT
32
from parcllabs.services.parcllabs_service import ParclLabsService
43
from parcllabs.services.validators import Validators
54

parcllabs/services/parcllabs_service.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -145,24 +145,23 @@ def _fetch(
145145
auto_paginate: bool = False,
146146
):
147147
"""
148-
Fetch data for given Parcl IDs with specified parameters.
149-
150148
This method handles the fetching of data based on the provided Parcl IDs and parameters.
151149
It supports both GET and POST requests, depending on the client's configuration and the number of Parcl IDs.
152-
153150
Args:
154151
parcl_ids (List[int]): A list of Parcl IDs to fetch data for.
155152
params (Optional[Mapping[str, Any]]): Additional parameters for the request.
156153
If not provided or None, no additional parameters will be used.
157154
auto_paginate (bool, optional): Whether to automatically handle pagination.
158155
Defaults to False.
159-
160156
Returns:
161157
The result of the fetch operation. The exact return type depends on the specific
162158
fetch method called (_fetch_post, _fetch_get, or _fetch_get_many_parcl_ids).
163159
"""
160+
params = self._clean_params(params) if params else {}
164161

165-
params = self._clean_params(params)
162+
# Use client's default limit if no limit specified in params
163+
if "limit" not in params or params["limit"] is None:
164+
params["limit"] = self.client.limit
166165

167166
if self.client.turbo_mode and self.full_post_url:
168167
# convert the list of parcl_ids into post body params, formatted

parcllabs/services/search.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ def retrieve(
4242
Retrieve parcl_id and metadata for geographic markets in the Parcl Labs API.
4343
4444
Args:
45-
4645
query (str, optional): The search query to filter results by.
4746
location_type (str, optional): The location type to filter results by.
4847
region (str, optional): The region to filter results by.
@@ -57,11 +56,10 @@ def retrieve(
5756
auto_paginate (bool, optional): Automatically paginate through the results.
5857
5958
Returns:
60-
6159
Any: The JSON response as a pandas DataFrame.
6260
"""
6361

64-
params = {}
62+
params = params or {}
6563

6664
params = Validators.validate_input_str_param(
6765
param=location_type,
@@ -116,6 +114,8 @@ def retrieve(
116114

117115
if limit:
118116
params["limit"] = self._validate_limit("GET", limit)
117+
elif self.client.limit:
118+
params["limit"] = self._validate_limit("GET", self.client.limit)
119119

120120
results = self._fetch_get(
121121
url=self.full_url, params=params, auto_paginate=auto_paginate

tests/test_price_feed_service.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -102,14 +102,16 @@ def test_get(self, service):
102102

103103
def test_fetch_get(self, service):
104104
with patch.object(service, "_fetch_get") as mock_fetch_get:
105-
service._fetch([1], {"param": "test"})
105+
params = {"param": "test", "limit": 100}
106+
service._fetch([1], params)
106107
mock_fetch_get.assert_called_once()
107108

108109
def test_fetch_post(self, service):
109110
service.client.turbo_mode = True
110111
service.full_post_url = "https://api.example.com/test_post"
111112
with patch.object(service, "_fetch_post") as mock_fetch_post:
112-
service._fetch([1, 2], {"param": "test"})
113+
params = {"param": "test", "limit": 100}
114+
service._fetch([1, 2], params)
113115
mock_fetch_post.assert_called_once()
114116

115117
def test_fetch_get_many_parcl_ids(self, service):

tests/test_search.py

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ def search_service():
1818
client_mock = MagicMock()
1919
client_mock.api_url = "https://api.parcllabs.com"
2020
client_mock.api_key = "test_api_key"
21+
client_mock.limit = 100
2122
service = SearchMarkets(client=client_mock, url="/v1/search/markets")
2223
return service
2324

0 commit comments

Comments
 (0)