mirror of https://github.com/FanbeiFan/JD-SHOPPER
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
812 B
29 lines
812 B
3 years ago
|
import os
|
||
|
import configparser
|
||
|
|
||
|
|
||
|
class Config(object):
|
||
|
def __init__(self, config_file='config.ini'):
|
||
|
self._path = os.path.join(os.getcwd(), config_file)
|
||
|
if not os.path.exists(self._path):
|
||
|
raise FileNotFoundError("No such file: config.ini")
|
||
|
self._config = configparser.ConfigParser()
|
||
|
self._config.read(self._path, encoding='utf-8-sig')
|
||
|
self._configRaw = configparser.RawConfigParser()
|
||
|
self._configRaw.read(self._path, encoding='utf-8-sig')
|
||
|
|
||
|
def get(self, section, name):
|
||
|
return self._config.get(section, name)
|
||
|
|
||
|
def getRaw(self, section, name):
|
||
|
return self._configRaw.get(section, name)
|
||
|
|
||
|
def setModel(self, model=''):
|
||
|
self.model = model
|
||
|
|
||
|
def getModel(self):
|
||
|
return self.model
|
||
|
|
||
|
|
||
|
global_config = Config()
|