We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88ae193 commit 4fdea05Copy full SHA for 4fdea05
prometheus_api_client/__init__.py
@@ -1,9 +1,9 @@
1
-
2
"""A collection of tools to collect and manipulate prometheus metrics."""
3
4
__title__ = "prometheus-connect"
5
__version__ = "0.5.7"
6
+from .exceptions import PrometheusApiClientException, MetricValueConversionError
7
def __getattr__(name):
8
if name == "PrometheusConnect":
9
from .prometheus_connect import PrometheusConnect
@@ -20,4 +20,4 @@ def __getattr__(name):
20
elif name == "MetricRangeDataFrame":
21
from .metric_range_df import MetricRangeDataFrame
22
return MetricRangeDataFrame
23
- raise AttributeError(f"module {__name__} has no attribute {name}")
+ raise AttributeError(f"module {__name__} has no attribute {name}")
0 commit comments