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 70837d2 commit 66ed30eCopy full SHA for 66ed30e
influxdb_client_3/__init__.py
@@ -49,11 +49,14 @@ def file_parser_options(**kwargs):
49
"""
50
return kwargs
51
52
+
53
# Constants for environment variable names
54
INFLUX_HOST = "INFLUX_HOST"
55
INFLUX_TOKEN = "INFLUX_TOKEN"
56
INFLUX_DATABASE = "INFLUX_DATABASE"
57
INFLUX_ORG = "INFLUX_ORG"
58
59
60
def from_env(**kwargs: Any) -> 'InfluxDBClient3':
61
62
Create an instance of `InfluxDBClient3` using environment variables for configuration.
@@ -97,7 +100,6 @@ def from_env(**kwargs: Any) -> 'InfluxDBClient3':
97
100
)
98
101
99
102
-
103
def _deep_merge(target, source):
104
105
Performs a deep merge of dictionaries or lists,
0 commit comments