summaryrefslogtreecommitdiff
path: root/config.py.example
diff options
context:
space:
mode:
authorAlex Xu <alex_y_xu@yahoo.ca>2013-11-05 23:23:06 -0500
committerAlex Xu <alex_y_xu@yahoo.ca>2013-11-05 23:23:06 -0500
commit205e656745e8d4efe60deb78b4a70de78ea5f187 (patch)
tree215be6ca42b8beb1237ccf87a1f23a26e66e5b72 /config.py.example
parent0dfab32579a3b6b7a1a063790b587eee4ed505a2 (diff)
downloadrsnotify-205e656745e8d4efe60deb78b4a70de78ea5f187.tar.xz
rsnotify-205e656745e8d4efe60deb78b4a70de78ea5f187.zip
Version 0.1.0
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: