Introduction

TerminalBreraker is a python module to create better guis, forms and more in the terminal.

Installation

You can install TerminalBreraker with pip install by running the command below :

Windows :

py -m pip install tbpy

Unix / Mac :

python -m pip install tbpy

Basic usage

Just call the Window class to your code and you will have a basic window appearing in your terminal!

from terminalbreaker import * # Importing all modules 
win = Window("Title of the window", "Hello, world!")
win.mainloop() # Don't forget this!
Screenshot
The result of the code below
Don't forget to add .mainloop() to the window to bind keyboard.

What's next?

API documentation