Hi, I have initiated the connection to influxdb cloud with the following python codes :-
import influxdb_client
bucket = "<my-bucket>"
org = "<my-org>"
token = "<my-token>"
# Store the URL of your InfluxDB instance
url="https://us-west-2-1.aws.cloud2.influxdata.com"
client = influxdb_client.InfluxDBClient(url=url, token=token, org=org)
For the codes to list out all measurements, I found the following codes but Pycharm compiler complained that ‘influxdata/influxdb/schema’ is not found. Please help me. Thanks.