config in ini

This commit is contained in:
2019-08-22 20:54:55 +02:00
parent a454a4aac5
commit 935ad372b0
7 changed files with 52 additions and 27 deletions

View File

@@ -37,6 +37,8 @@ import datetime
import serial
import simplejson as json
import influxdb
import configparser
# optionally, future modules, locally available, I hate dependencies
from pprint import pprint
@@ -51,6 +53,9 @@ sys.path.append(_SCRIPT_PATH + "/lib")
Define variables
--------------------------------------------------------------------------------
'''
config = configparser.ConfigParser()
config.read(_SCRIPT_PATH + "/../web/config/plutonium.ini")
_VERSION = 1.0
_NAME = u"Vantage Vue external measure enrichment"
_LOG_DIR = _SCRIPT_PATH + '/log/'
@@ -67,11 +72,12 @@ pressure_adjusted = 0
influx_weather_write = []
influx_host = 'localhost'
influx_port = 8086
influx_user = 'pi'
influx_pwd = 'Ventil6996'
weather_db = 'weather_v2'
influx_host = config['InfluxDB']['_influx_host']
influx_port = config['InfluxDB']['_influx_port']
influx_user = config['InfluxDB']['_influx_user']
influx_pwd = config['InfluxDB']['_influx_pwd']
weather_db = config['InfluxDB']['_influx_weather_db']
status_db = config['InfluxDB']['_influx_status_db']
'''
--------------------------------------------------------------------------------