summaryrefslogtreecommitdiff
path: root/config.py.example
diff options
context:
space:
mode:
Diffstat (limited to 'config.py.example')
-rw-r--r--config.py.example15
1 files changed, 15 insertions, 0 deletions
diff --git a/config.py.example b/config.py.example
new file mode 100644
index 0000000..c031e50
--- /dev/null
+++ b/config.py.example
@@ -0,0 +1,15 @@
+import os, logging
+
+USERNAME=''
+PASSWORD=''
+
+# log level
+LOGLEVEL=logging.INFO
+
+# seconds to sleep between queries
+SLEEP=300
+
+# icon for notifications
+ICON=os.path.dirname(__file__ + '/icon.png')
+
+# vim:ft=python: