| 123456789 | import timeimport randomfrom influxdb_client import InfluxDBClientclient = InfluxDBClient(url="http://localhost:8086", token="influxdbTSGAMES", org="raspberry")writer = client.write_api()while True:    writer.write("influxdb","raspberry", ["solar,type=A value=" + str(random.randrange(10))])    writer.write("influxdb","raspberry", ["solar,type=V value=12"])    time.sleep(1)
 |