DEFAULT_HEIGHT = 24
module-attribute
Default screen height
DEFAULT_WIDTH = 80
module-attribute
Default screen width
DummyScreen
Bases: Screen
Source code in pzp/screen.py
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 | |
__init__()
Initialize dummy screen
| Attributes: |
|
|---|
Source code in pzp/screen.py
192 193 194 195 196 197 198 199 200 201 202 203 | |
flush()
Do nothing
Source code in pzp/screen.py
209 210 211 | |
write(line)
Do nothing
Source code in pzp/screen.py
205 206 207 | |
Screen
Source code in pzp/screen.py
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 | |
__init__(stream=sys.stderr, fullscreen=True, height=None)
Initialize screen
| Parameters: |
|
|---|
| Attributes: |
|
|---|
Source code in pzp/screen.py
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | |
bold()
Set bold mode
Source code in pzp/screen.py
121 122 123 124 | |
cleanup()
Clean screen and restore cursor position
Source code in pzp/screen.py
87 88 89 90 91 92 93 94 | |
erase_line()
Erase the current line
Source code in pzp/screen.py
131 132 133 134 | |
erase_lines(lines)
Erase n lines
| Parameters: |
|
|---|
Source code in pzp/screen.py
136 137 138 139 140 141 142 143 144 | |
erase_screen()
Erase the screen
Source code in pzp/screen.py
126 127 128 129 | |
flush()
Write data to the stream and flush it
Source code in pzp/screen.py
80 81 82 83 84 85 | |
get_terminal_size()
classmethod
Get the terminal size
| Returns: |
|
|---|
Source code in pzp/screen.py
65 66 67 68 69 70 71 72 73 | |
move_down(lines)
Move cursor down If the cursor is already at the edge of the screen, this has no effect.
| Parameters: |
|
|---|
Source code in pzp/screen.py
156 157 158 159 160 161 162 163 164 | |
move_left(characters)
Move cursor left If the cursor is already at the edge of the screen, this has no effect.
| Parameters: |
|
|---|
Source code in pzp/screen.py
178 179 180 181 182 183 184 185 186 187 188 | |
move_right(characters)
Move cursor right If the cursor is already at the edge of the screen, this has no effect.
| Parameters: |
|
|---|
Source code in pzp/screen.py
166 167 168 169 170 171 172 173 174 175 176 | |
move_up(lines)
Move cursor up If the cursor is already at the edge of the screen, this has no effect.
| Parameters: |
|
|---|
Source code in pzp/screen.py
146 147 148 149 150 151 152 153 154 | |
nl(lines=1)
Add n newlines
| Parameters: |
|
|---|
Source code in pzp/screen.py
96 97 98 99 100 101 102 103 104 | |
reset()
Reset style and color
Source code in pzp/screen.py
116 117 118 119 | |
space(num=1)
Add n spaces
| Parameters: |
|
|---|
Source code in pzp/screen.py
106 107 108 109 110 111 112 113 114 | |
write(line)
Add data to be written on the stream
Source code in pzp/screen.py
75 76 77 78 | |