@@ -67,10 +67,10 @@ def list_datasets(
6767 Parameters
6868 ----------
6969 start_date : date or str, optional
70- The start date (UTC) for the request range.
70+ The inclusive UTC start date of the request range.
7171 If `None` then first date available.
7272 end_date : date or str, optional
73- The end date (UTC) for the request range.
73+ The exclusive UTC end date of the request range.
7474 If `None` then last date available.
7575
7676 Returns
@@ -202,10 +202,10 @@ def get_dataset_condition(
202202 dataset : Dataset or str
203203 The dataset code (string identifier) for the request.
204204 start_date : date or str, optional
205- The start date (UTC) for the request range.
205+ The inclusive UTC start date of the request range.
206206 If `None` then first date available.
207207 end_date : date or str, optional
208- The end date (UTC) for the request range.
208+ The inclusive UTC end date of the request range.
209209 If `None` then last date available.
210210
211211 Returns
@@ -279,11 +279,11 @@ def get_record_count(
279279 dataset : Dataset or str
280280 The dataset code for the request.
281281 start : pd.Timestamp, datetime, date, str, or int
282- The start datetime for the request range (inclusive) .
282+ The inclusive start of the request range.
283283 Assumes UTC as timezone unless otherwise specified.
284284 If an integer is passed, then this represents nanoseconds since the UNIX epoch.
285285 end : pd.Timestamp, datetime, date, str, or int, optional
286- The end datetime for the request range (exclusive) .
286+ The exclusive end of the request range.
287287 Assumes UTC as timezone unless otherwise specified.
288288 If an integer is passed, then this represents nanoseconds since the UNIX epoch.
289289 Defaults to the forward filled value of `start` based on the resolution provided.
@@ -347,11 +347,11 @@ def get_billable_size(
347347 dataset : Dataset or str
348348 The dataset code for the request.
349349 start : pd.Timestamp, datetime, date, str, or int
350- The start datetime for the request range (inclusive) .
350+ The inclusive start of the request range.
351351 Assumes UTC as timezone unless otherwise specified.
352352 If an integer is passed, then this represents nanoseconds since the UNIX epoch.
353353 end : pd.Timestamp, datetime, date, str, or int, optional
354- The end datetime for the request range (exclusive) .
354+ The exclusive end of the request range.
355355 Assumes UTC as timezone unless otherwise specified.
356356 If an integer is passed, then this represents nanoseconds since the UNIX epoch.
357357 Defaults to the forward filled value of `start` based on the resolution provided.
@@ -417,11 +417,11 @@ def get_cost(
417417 dataset : Dataset or str
418418 The dataset code for the request.
419419 start : pd.Timestamp, datetime, date, str, or int
420- The start datetime for the request range (inclusive) .
420+ The inclusive start of the request range.
421421 Assumes UTC as timezone unless otherwise specified.
422422 If an integer is passed, then this represents nanoseconds since the UNIX epoch.
423423 end : pd.Timestamp, datetime, date, str, or int, optional
424- The end datetime for the request range (exclusive) .
424+ The exclusive end of the request range.
425425 Assumes UTC as timezone unless otherwise specified.
426426 If an integer is passed, then this represents nanoseconds since the UNIX epoch.
427427 Defaults to the forward filled value of `start` based on the resolution provided.
0 commit comments