-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
22 lines (22 loc) · 804 Bytes
/
Copy path__init__.py
File metadata and controls
22 lines (22 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# the start of everything
from buffer import *
from DataFetcher import *
from displays import *
from flipper import *
from input import *
from spotlight import *
from style import *
from terminal import *
from themeParser import *
from utils import *
from module import *
"""
/module
├── __init__.py # main file
├── terminal.py # RawTerminal, cursor, screen, line, clear()
├── buffer.py # Win32 ctypes: get_char_at, get_word, get_cursor_position
├── style.py # color(), rgb(), color256(), attr_to_ansi, graphics dicts
├── draw.py # bd() (box drawing), divider(), shaded dict
├── utils.py # log(), leadZero(), toggle_item()
└── input.py # Mouse sequence toggles, gamepad logic (from your inputs import)
"""