2021-06-21 10:36:53 +02:00
|
|
|
"""
|
|
|
|
@file
|
|
|
|
mib_globals.py
|
|
|
|
@date
|
|
|
|
16.11.2019
|
|
|
|
@brief
|
|
|
|
Global settings for MIB exporter
|
|
|
|
"""
|
|
|
|
import pprint
|
|
|
|
|
|
|
|
|
|
|
|
doExportMiB = True
|
|
|
|
executeSQLcommands = False
|
|
|
|
printToConsole = True
|
|
|
|
exportToCSV = True
|
|
|
|
doCopyFile = False
|
|
|
|
copyDestination = "."
|
2022-09-09 10:54:00 +02:00
|
|
|
fileSeparator = ";"
|