slotUI/SlotCli.py@c261350bb394
slotUI/SlotCli.py
Sat, 03 Dec 2011 11:55:01 +0100
- author
- Malte Bayer <mbayer@neo-soft.org>
- date
- Sat, 03 Dec 2011 11:55:01 +0100
- changeset 33
- c261350bb394
- parent 27
-
3e617fcf999a
- child 35
-
00166228a419
- permissions
- -rwxr-xr-x
fixed shortcut detection
#!/usr/bin/env python
"""
Freeslot project
Command line interface
"""
from freeslot import Blackbox
class SlotCli():
def __init__(self):
self.box = Blackbox()
self.box.connect()
def run(self):
"""
Keyboard loop to control it???
"""
return None
if __name__ == "__main__":
app = SlotCli()
app.run()