python操作InfluxDB附录InfluxDB注意坑集合
前言
InfluxDB是一个的时序数据库,是近几年物联网发展下业务需求下诞生的一款tsdb。据某云,某排行榜都有它的身影。
虽然他是go写的,我们就用python来实现下操作(因为我有个别的功能用python比较方便),操作非常简单。
大道至简 越简单的越易维护
模块安装
pip install influxdb
使用
from influxdb import InfluxDBClient
class DbHelper:
"""docstring for DbHelper"""
def __init__(self):
self.client = InfluxDBClient('you influxdb server', 8086, 'your username', 'your password', 'your datebases') # 连接数据库
相关文章