Python 3 package to easily handle style terminal output, moving and positioning the cursor and some other features. This project is heavily based on gravmatt/py-term project.
Install through pip.
$ pip3 install git+https://github.com/havocesp/pyterm
or get from source
$ git clone https://github.com/havocesp/pyterm
$ cd pyterm
$ python3 setup.py install
Import the module into your python project.
from pyterm import Term as Tm
from pyterm import Term as Tm
Tm.write('Hello, ')
Tm.write('Python!')
> Hello, Python!
Tm.write_line('Hello')
Tm.write_line('Python!')
> Hello
> Python!
The first argument is the text output and all following arguments are for styling.
from pyterm import Term as Tm
Tm.write_line('text', Tm.BOLD)
text = Tm.style('text', Tm.DIM)
Tm.write_line(text)
from pyterm import Term as Tm
Tm.write_line('Hello, Python!')
Tm.write_line('This text line will be green', Tm.GREEN)
Tm.write_line('Reverse the green color', Tm.GREEN, Tm.REVERSE)
Or
output = term.format('Hello, ', term.green) + term.format('Python!', term.blue, term.bold)
term.write_line(output)
term.write(term.format('All in one line', term.reverse))
Center align
# Term.text_center(text)
Term.write_line(term.text_center('Super Python!'))
Right align
# Term.text_right(text)
Term.write_line(Term.text_right('Rene Tanczos (@gravmatt)'))
( Function Term.right() to align text is depricated because of naming conflicts! )
Code | Description |
---|---|
Term.OFF | All attributes off |
Term.BOLD | Bold |
Term.DIM | Dim |
Term.UNDERSCORE | Underscore (monochrome display only) |
Term.BLINK | Blink |
Term.REVERSE | Reverse |
Term.HIDE | Hide |
Code | Color |
---|---|
Term.BLACK | Black |
Term.RED | Red |
Term.GREEN | Green |
Term.YELLOW | Yellow |
Term.BLUE | Blue |
Term.MAGENTA | Magenta |
Term.CYAN | Cyan |
Term.WHITE | White |
Code | Color |
---|---|
Term.bgblack | Black |
Term.bgred | Red |
Term.bggreen | Green |
Term.bgyellow | Yellow |
Term.bgblue | Blue |
Term.bgMagenta | Magenta |
Term.bgcyan | Cyan |
Term.bgwhite | White |
Removes style characters.
(Good to call before you count a string)
Term.strip(formatted_text)
hello = Term.RED + 'hello, world' + Term.OFF
print(hello)
# '\x1b[31mhello, world\x1b[0m\x1b[27m'
print term.strip(hello)
# hello, world
Simple highlighting of unformatted text strings
def callback(matching_text):
return Term.BLUE + matching_text + Term.OFF
output, match_count, array_of_positions = Term.highlight(regex_pattern, text, callback)
Return a tuple.
output (index 0) = formatted text output
match_count (index 1) = match count of the pattern
array_of_positions (index 2) = array of tuples with start and stop points of the matches [(4, 6), (9, 11), ..]
term.set_title('Hello Terminal')
# or clear it
term.clear_title()
term.set_tab('Hello Tab')
# or clear it
Term.clear_tab()
Move the cursor to a specific position.
Term.pos(line, column)
Term.pos(2, 15)
Get the size of the terminal (lines and columns)
(30, 100) = Term.get_size()
# (lines, colums) = Term.get_size()
Move the cursor to the home position (1, 1).
Term.home_pos()
Moves the current cursor position up, down, left or right by the specified value.
Term.up(value=1)
Term.down(value=1)
Term.left(value=1)
Term.right(value=1)
Saves the current cursor position.
Term.save_cursor()
Restore the previously stored cursor position.
Term.restore_cursor()
Clear the terminal screen.
Term.clear()
Clear the entire line on the current cursor position.
Term.clear_line()
Clear line from the current cursor position to the end.
Term.clear_line_from_pos()
Clear line from begin to current cursor position.
Term.clear_line_to_pos()
The MIT License (MIT)
Copyright (c) 2015-2021 René Tanczos
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.