-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
27 lines (22 loc) · 1.08 KB
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import configparser
import os
class Config():
def __init__(self):
app_name = "FireDownloader"
settings_file = "settings.conf"
config_folder = os.path.join(os.path.expanduser("~"), '.config', app_name)
self.full_config_file_path = os.path.join(config_folder, settings_file)
self.config = configparser.ConfigParser()
if not os.path.exists(self.full_config_file_path) or\
os.stat(self.full_config_file_path).st_size == 0:
os.makedirs(config_folder, exist_ok=True)
self.config['DEFAULT'] = {"path": os.path.expanduser('~/Downloads/'), "theme": "ElegantDark"}
with open(self.full_config_file_path, 'w') as configfile:
self.config.write(configfile)
def setSetting(self,name,setting,value):
self.config.set(name, setting, value)
with open(self.full_config_file_path, 'w') as configfile:
self.config.write(configfile)
def getSetting(self,name,setting):
self.config.read(self.full_config_file_path)
return self.config[name][setting]