@@ -67,10 +67,10 @@ def list_datasets(
67
67
Parameters
68
68
----------
69
69
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.
71
71
If `None` then first date available.
72
72
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.
74
74
If `None` then last date available.
75
75
76
76
Returns
@@ -202,10 +202,10 @@ def get_dataset_condition(
202
202
dataset : Dataset or str
203
203
The dataset code (string identifier) for the request.
204
204
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.
206
206
If `None` then first date available.
207
207
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.
209
209
If `None` then last date available.
210
210
211
211
Returns
@@ -279,11 +279,11 @@ def get_record_count(
279
279
dataset : Dataset or str
280
280
The dataset code for the request.
281
281
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.
283
283
Assumes UTC as timezone unless otherwise specified.
284
284
If an integer is passed, then this represents nanoseconds since the UNIX epoch.
285
285
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.
287
287
Assumes UTC as timezone unless otherwise specified.
288
288
If an integer is passed, then this represents nanoseconds since the UNIX epoch.
289
289
Defaults to the forward filled value of `start` based on the resolution provided.
@@ -347,11 +347,11 @@ def get_billable_size(
347
347
dataset : Dataset or str
348
348
The dataset code for the request.
349
349
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.
351
351
Assumes UTC as timezone unless otherwise specified.
352
352
If an integer is passed, then this represents nanoseconds since the UNIX epoch.
353
353
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.
355
355
Assumes UTC as timezone unless otherwise specified.
356
356
If an integer is passed, then this represents nanoseconds since the UNIX epoch.
357
357
Defaults to the forward filled value of `start` based on the resolution provided.
@@ -417,11 +417,11 @@ def get_cost(
417
417
dataset : Dataset or str
418
418
The dataset code for the request.
419
419
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.
421
421
Assumes UTC as timezone unless otherwise specified.
422
422
If an integer is passed, then this represents nanoseconds since the UNIX epoch.
423
423
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.
425
425
Assumes UTC as timezone unless otherwise specified.
426
426
If an integer is passed, then this represents nanoseconds since the UNIX epoch.
427
427
Defaults to the forward filled value of `start` based on the resolution provided.
0 commit comments