19 lines
262 B
Python
19 lines
262 B
Python
|
"""
|
||
|
@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 = "."
|
||
|
fileSeparator = ';'
|