comparison: slotUI/SlotCli.py
slotUI/SlotCli.py
- changeset 32
- b83d239fe719
- parent 27
- 3e617fcf999a
- child 35
- 00166228a419
equal
deleted
inserted
replaced
|
1 #!/usr/bin/env python |
|
2 """ |
|
3 Freeslot project |
|
4 Command line interface |
|
5 """ |
|
6 |
|
7 from freeslot import Blackbox |
|
8 |
|
9 class SlotCli(): |
|
10 def __init__(self): |
|
11 self.box = Blackbox() |
|
12 self.box.connect() |
|
13 |
|
14 def run(self): |
|
15 """ |
|
16 Keyboard loop to control it??? |
|
17 """ |
|
18 return None |
|
19 |
|
20 if __name__ == "__main__": |
|
21 app = SlotCli() |
|
22 app.run() |