summaryrefslogtreecommitdiff
path: root/config.py.example
blob: c031e50a5d88407483b1e6aed767989e9baed674 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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: