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 189af10 commit e016263Copy full SHA for e016263
quixstreams/sources/community/influxdb3/influxdb3.py
@@ -5,7 +5,13 @@
5
from functools import wraps
6
from typing import Callable, Optional, Union
7
8
-from influxdb_client_3 import InfluxDBClient3
+try:
9
+ from influxdb_client_3 import InfluxDBClient3
10
+except ImportError as exc:
11
+ raise ImportError(
12
+ 'Package "influxdb3-python" is missing: '
13
+ "run pip install quixstreams[influxdb3] to fix it"
14
+ ) from exc
15
16
from quixstreams.models.topics import Topic
17
from quixstreams.sources import (
0 commit comments