config in ini
This commit is contained in:
@@ -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']
|
||||
|
||||
'''
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user