Skip to content
Snippets Groups Projects

SDC-685: Script which migrates ldvadmin data to ldv-spec-db

Merged SDC-685: Script which migrates ldvadmin data to ldv-spec-db
All threads resolved!
Merged Roy de Goei requested to merge SDC-685 into main
All threads resolved!
3 files
+ 48
71
Compare changes
  • Side-by-side
  • Inline
Files
3
  • c21e52a4
    SDC-685: Use the connection module of ldvspec. · c21e52a4
    Roy de Goei authored
from configparser import ConfigParser
import os
def read_config(section, filename='database.cfg'):
full_filename = os.path.join(os.path.dirname(__file__), filename)
parser = ConfigParser()
try:
parser.read(filename)
except FileNotFoundError as exc:
raise FileNotFoundError(
"Configuration file with filename {0} not found".format(filename)
) from exc
read_result = parser.read(full_filename)
# If file not found then parser returns just an empty list it does not raise an Exception!
if len(read_result) == 0:
raise Exception("Configuration file with filename {0} not found".format(full_filename))
db_settings = {}
if parser.has_section(section):
Loading