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

@@ -24,6 +24,7 @@ import simplejson as json
import influxdb
import psutil
import socket
import configparser
# optionally, future modules, locally available, I hate dependencies
from pprint import pprint
@@ -40,8 +41,11 @@ _hostname = socket.gethostname()
Define variables
--------------------------------------------------------------------------------
'''
config = configparser.ConfigParser()
config.read(_SCRIPT_PATH + "/../web/config/plutonium.ini")
_VERSION = 2.0
_NAME = u"Vantage Vue Decoding shite"
_NAME = u"System statistics for RasPi"
_LOG_DIR = _SCRIPT_PATH + '/log/'
_LOG_FILE_ROOT = re.sub(u'./', '', sys.argv[0])
_LOG_FILE = _LOG_DIR + _LOG_FILE_ROOT + u'.log'
@@ -49,11 +53,12 @@ _DEBUG_FILE = _LOG_DIR + _LOG_FILE_ROOT + u'.dbg'
influx_status_write = []
influx_host = 'localhost'
influx_port = 8086
influx_user = 'pi'
influx_pwd = 'Ventil6996'
status_db = 'status'
influx_host = config['InfluxDB']['_influx_host']
influx_port = config['InfluxDB']['_influx_port']
influx_user = config['InfluxDB']['_influx_user']
influx_pwd = config['InfluxDB']['_influx_pwd']
status_db = config['InfluxDB']['_influx_status_db']
'''
--------------------------------------------------------------------------------