Axione-FTTH-Test/axione_api/config.py
Félix Baylac-Jacqué f1b527cf3c
Pep-8 compliance
We run the codebase throught the black code formatter to make the
coding style more uniform
2021-10-17 22:21:07 +02:00

20 lines
530 B
Python

import configparser
class Config:
def __init__(self, username, password, source_addr):
self.username = username
self.password = password
self.source_addr = source_addr
self.debug = False
def parse_config(cfgPath):
cfg = configparser.ConfigParser()
with open(cfgPath, "r") as f:
cfg.read_file(f)
username = cfg.get("API", "username")
passwd = cfg.get("API", "password")
source_addr = cfg.get("API", "source_addr")
return Config(username, passwd, source_addr)