Skip to content

Files

Latest commit

 

History

History
29 lines (20 loc) · 915 Bytes

README.md

File metadata and controls

29 lines (20 loc) · 915 Bytes

Text Screen Display

A simple display that you can interface with python. The console module is not required and is used just for the example

Also, to go right add to x, to go up, add to y (I know, its annoying)

Documention

Initializing a screen

To initizize a screen, you need to use the screen class myScreen = screen()

Sceen Arguments

When initilizing a screen you have a few argumwnts that you can edit.

  1. screen width and height (tuple, required)

--- OR ---

  1. screen width (int, required)
  2. screen height (int, required)

(always 3rd argument)

  1. seporation character (string, optional)
  2. empty cell character (string, optional)
  3. new line character (string, optional)
  4. Data to screen (dictonary, optional)
  5. screen data (matrix, optional) (putting something in this argument will automatically display it)

I know this documentation sucks. Please help improvw my docs on this