安装
sudo apt-get install python-influxdb
连接数据库
from influxdb import InfluxDBClient
client = InfluxDBClient('localhost', 8086, 'your_username', 'yuor_password', 'your_dbname')
查询数据
root = client.query('select * from imu_pos limit 10')
data = list(root)[0]
删除数据
使用drop_measurement()
没效果,该为使用query()
中delete
client.query("delete from imu_pos")
其他更多数据库操作可以参考:
黑盒子是件很必要的事情