diff options
author | Mark Powers <markppowers0@gmail.com> | 2020-09-22 19:34:54 -0500 |
---|---|---|
committer | Mark Powers <markppowers0@gmail.com> | 2020-09-22 19:34:54 -0500 |
commit | 9275df710e578aa0ce67de12a952d76e3f036757 (patch) | |
tree | 5a5756075663b558d4a589250f0e3e27c4ae60c9 /config.py |
Initial commit
Diffstat (limited to 'config.py')
-rw-r--r-- | config.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config.py b/config.py new file mode 100644 index 0000000..3b57c53 --- /dev/null +++ b/config.py @@ -0,0 +1,6 @@ +from configparser import ConfigParser + +config_path = "/home/mark/projects/wikijscmd/config.ini" + +config = ConfigParser() +config.read(config_path) |