@@ -32,7 +32,7 @@ def list_datasets(
3232 end_date : Optional [Union [date , str ]] = None ,
3333 ) -> List [str ]:
3434 """
35- List all available datasets from Databento.
35+ Request all available datasets from Databento.
3636
3737 Makes a `GET /metadata.list_datasets` HTTP request.
3838
@@ -81,7 +81,7 @@ def list_schemas(
8181 end_date : Optional [Union [date , str ]] = None ,
8282 ) -> List [str ]:
8383 """
84- List all available data schemas from Databento.
84+ Request all available data schemas from Databento.
8585
8686 Makes a `GET /metadata.list_schemas` HTTP request.
8787
@@ -123,7 +123,7 @@ def list_fields(
123123 encoding : Optional [Union [Encoding , str ]] = None ,
124124 ) -> Dict [str , Dict ]:
125125 """
126- List all fields for a dataset, schema and encoding from Databento.
126+ Request all fields for a dataset, schema and encoding from Databento.
127127
128128 Makes a `GET /metadata.list_fields` HTTP request.
129129
@@ -167,7 +167,7 @@ def list_fields(
167167
168168 def list_encodings (self ) -> List [str ]:
169169 """
170- List all available data encodings from Databento.
170+ Request all available data encodings from Databento.
171171
172172 Makes a `GET /metadata.list_encodings` HTTP request.
173173
@@ -184,7 +184,7 @@ def list_encodings(self) -> List[str]:
184184
185185 def list_compressions (self ) -> List [str ]:
186186 """
187- List all available data compression modes from Databento.
187+ Request all available data compression modes from Databento.
188188
189189 Makes a `GET /metadata.list_compressions` HTTP request.
190190
@@ -206,7 +206,7 @@ def list_unit_prices(
206206 schema : Optional [Union [Schema , str ]] = None ,
207207 ) -> Dict [str , Any ]:
208208 """
209- List data schema prices per GB unit from Databento.
209+ Request data schema prices per GB unit from Databento.
210210
211211 Makes a `GET /metadata.list_unit_prices` HTTP request.
212212
@@ -257,7 +257,7 @@ def get_shape(
257257 limit : Optional [int ] = None ,
258258 ) -> Tuple :
259259 """
260- Get the shape of the time series data query .
260+ Request the shape of the time series data from Databento .
261261
262262 Makes a GET `/metadata.get_shape` HTTP request.
263263
@@ -335,8 +335,8 @@ def get_billable_size(
335335 limit : Optional [int ] = None ,
336336 ) -> int :
337337 """
338- Get the raw uncompressed binary size of a historical streaming or batch
339- data request, which would be used for billing .
338+ Request the billable uncompressed raw binary size for historical
339+ streaming or batched files from Databento .
340340
341341 Makes a GET `/metadata.get_billable_size` HTTP request.
342342
@@ -404,7 +404,8 @@ def get_cost(
404404 limit : Optional [int ] = None ,
405405 ) -> float :
406406 """
407- Get cost in US Dollars for a historical streaming or batch data request.
407+ Request the cost in US Dollars for historical streaming or batched files
408+ from Databento.
408409
409410 Makes a `GET /metadata.get_cost` HTTP request.
410411
@@ -472,7 +473,8 @@ def get_license_fee(
472473 purposes : Union [List [str ], str ],
473474 ) -> int :
474475 """
475- Get the license fee in US Dollars for a dataset and access purposes.
476+ Request the license fee in US Dollars for a dataset and access purposes
477+ from Databento.
476478
477479 Makes a `GET /metadata.get_license_fee` HTTP request.
478480
0 commit comments