Initial commit

This commit is contained in:
Torbjörn Axelsson 2017-12-15 15:14:33 -08:00
commit d9ceeea556
10 changed files with 462 additions and 0 deletions

16
bumper.py Normal file
View file

@ -0,0 +1,16 @@
#!/usr/bin/env python3
import logging
import bumper
logging.basicConfig(level=logging.INFO,
format='%(levelname)-8s %(message)s')
bumper.ConfServer()
bumper.XMPPServer()
try:
while True:
pass
except KeyboardInterrupt:
logging.info('keyboard interrupt')