Source code for src.data_access.via_DMS.secure

from os import environ

[docs]class Config: # Set the database credentials in the environment. db_user = environ.get('DATABASE_USERNAME') db_password = environ.get('DATABASE_PASSWORD') db_server = environ.get('DATABASE_SERVER') db_name = environ.get('DATABASE_NAME')