Skip to content

Commit 4c983af

Browse files
committed
MOD: Standardize US dollars and batch job cost_usd
1 parent 4ae0c49 commit 4c983af

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

databento/historical/api/metadata.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def list_unit_prices(
162162
schema: Optional[Union[Schema, str]] = None,
163163
) -> Union[float, Dict[str, Any]]:
164164
"""
165-
List unit prices for each data schema in dollars per gigabyte.
165+
List unit prices for each data schema in US dollars per gigabyte.
166166
167167
Makes a `GET /metadata.list_unit_prices` HTTP request.
168168
@@ -418,7 +418,7 @@ def get_cost(
418418
limit: Optional[int] = None,
419419
) -> float:
420420
"""
421-
Request the cost in US Dollars for historical streaming or batched files
421+
Request the cost in US dollars for historical streaming or batched files
422422
from Databento.
423423
424424
Makes a `GET /metadata.get_cost` HTTP request.
@@ -452,7 +452,7 @@ def get_cost(
452452
Returns
453453
-------
454454
float
455-
The cost in US Dollars.
455+
The cost in US dollars.
456456
457457
"""
458458
stype_in_valid = validate_enum(stype_in, SType, "stype_in")

notebooks/quickstart.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@
308308
},
309309
"source": [
310310
"### Data cost\n",
311-
"Before making a request for data, you can query the expected price in USD. The price is determined from the following formula: `unit_cost` * `uncompressed_size_GB`."
311+
"Before making a request for data, you can query the expected price in US dollars. The price is determined from the following formula: `unit_cost` * `uncompressed_size_GB`."
312312
]
313313
},
314314
{

0 commit comments

Comments
 (0)