forked from Mgarcia1983/sms-via-email-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
konfig.py
43 lines (36 loc) · 1.24 KB
/
konfig.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import os
import re
class Konfig:
"""Simple software configuration module.
Example:
from konfig import Konfig
konf = Konfig()
konf.username
Callling "konf.username" will search
the following locations and return the first value that is found:
- An environment variable named "USERNAME" ($USERNAME in the shell)
- If './.env' exists and has an entry that starts with "USERNAME="
- If an entry in a dictionary was passed to "konf.use_dict()" before
"konf.username" was called, that will be returned.
"""
def __init__(self):
self.kv = {}
filename = '.env'
if not os.path.isfile(filename):
return
for line in open(filename).readlines():
match = re.match(r'\A([A-Za-z0-9_]+)=(.*)', line)
if match:
self.kv[match.group(1)] = str(match.group(2))
def use_dict(self, input):
for key in input.keys():
self.kv[key] = input[key]
def __getattr__(self, key):
if key in self.kv:
return self.kv[key]
elif key.upper() in self.kv:
return self.kv[key.upper()]
elif os.getenv(key.upper()):
return os.getenv(key.upper())
else:
return False