Skip to content

Commit bee69d3

Browse files
committed
MOD: Rename class to TimeseriesHttpAPI
1 parent 1174c92 commit bee69d3

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 0.17.1 - TBD
4+
5+
#### Breaking changes
6+
- Renamed the `TimeSeriesHttpAPI` class to `TimeseriesHttpAPI`
7+
38
## 0.17.0 - 2023-08-10
49

510
This release includes improvements to the ergonomics of the clients metadata API, you can read more about the changes [here](https://databento.com/blog/api-improvements-august-2023).

databento/historical/api/timeseries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from databento.historical.http import BentoHttpAPI
2222

2323

24-
class TimeSeriesHttpAPI(BentoHttpAPI):
24+
class TimeseriesHttpAPI(BentoHttpAPI):
2525
"""
2626
Provides request methods for the time series HTTP API endpoints.
2727
"""

databento/historical/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from databento.historical.api.batch import BatchHttpAPI
99
from databento.historical.api.metadata import MetadataHttpAPI
1010
from databento.historical.api.symbology import SymbologyHttpAPI
11-
from databento.historical.api.timeseries import TimeSeriesHttpAPI
11+
from databento.historical.api.timeseries import TimeseriesHttpAPI
1212

1313

1414
logger = logging.getLogger(__name__)
@@ -56,7 +56,7 @@ def __init__(
5656
self.batch = BatchHttpAPI(key=key, gateway=gateway)
5757
self.metadata = MetadataHttpAPI(key=key, gateway=gateway)
5858
self.symbology = SymbologyHttpAPI(key=key, gateway=gateway)
59-
self.timeseries = TimeSeriesHttpAPI(key=key, gateway=gateway)
59+
self.timeseries = TimeseriesHttpAPI(key=key, gateway=gateway)
6060

6161
# Not logging security sensitive `key`
6262
logger.info("Initialized %s(gateway=%s)", type(self).__name__, self.gateway)

databento/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.17.0"
1+
__version__ = "0.17.1"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "databento"
3-
version = "0.17.0"
3+
version = "0.17.1"
44
description = "Official Python client library for Databento"
55
authors = [
66
"Databento <[email protected]>",

0 commit comments

Comments
 (0)