axto 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- axto/__init__.py +3 -0
- axto/core.py +15 -0
- axto/terminal.py +11 -0
- axto/widgets/base.py +0 -0
- axto-0.1.0.dist-info/METADATA +11 -0
- axto-0.1.0.dist-info/RECORD +8 -0
- axto-0.1.0.dist-info/WHEEL +5 -0
- axto-0.1.0.dist-info/top_level.txt +1 -0
axto/__init__.py
ADDED
axto/core.py
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import sys
|
|
2
|
+
import tty
|
|
3
|
+
import termios
|
|
4
|
+
|
|
5
|
+
class Engine:
|
|
6
|
+
def __init__(self):
|
|
7
|
+
self.running = False
|
|
8
|
+
|
|
9
|
+
def start(self):
|
|
10
|
+
self.running = True
|
|
11
|
+
# Add switching to raw mode for terminal input
|
|
12
|
+
pass
|
|
13
|
+
|
|
14
|
+
def stop(self):
|
|
15
|
+
self.running = False
|
axto/terminal.py
ADDED
axto/widgets/base.py
ADDED
|
File without changes
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
axto/__init__.py,sha256=KTdtDxU1WnsjPsEGNiTLsU6T41ZAYpT3DHPGqy3Dwuk,48
|
|
2
|
+
axto/core.py,sha256=g2F0GdZOhc7MLfRHu3RmCbmseLAD4T1wmvAZ1A36mC4,272
|
|
3
|
+
axto/terminal.py,sha256=j2unLWBzgx3uOM2oC-7kUvj_I6uwuLV7O14a9o9buc4,233
|
|
4
|
+
axto/widgets/base.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
axto-0.1.0.dist-info/METADATA,sha256=Pb7OQhlelkDWWZnsy8fWdOYBfSYgBhuMdWsVsBINmLM,186
|
|
6
|
+
axto-0.1.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
7
|
+
axto-0.1.0.dist-info/top_level.txt,sha256=HkpBwq_Rd00AKmDr0exmTtqGlYOQzsG19YbaVTvt9e8,5
|
|
8
|
+
axto-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
axto
|