Skip to main content

A module that allows you to display text with a few boilers (i.e. put your text in a square for titles)

Project description

Display tty

Description

This is a python package I created in order to simplify the boiling process for displaying text in a geometrical shape drawn using characters.

Disclaimer

The package was originally named disp but had to be changed to display_tty due because the names disp and display were already taken by other packages.

The class will still remain Disp but a binding named Display, DispTTY and DisplayTTY will be available.

The Preloaded version will exist under: IDISP, IDISPLAY and IDTTY as well as IDISPTTY

Table of Content

  1. Display tty
  2. Description
  3. Disclaimer
  4. Table of Content
  5. Installation
    1. Using pip
    2. Using python
  6. Usage
    1. Importing
    2. Initialising
    3. Calling the tree function
    4. Displaying a beautified Hello World
      1. Hello World as a title
      2. Hello World as a sub title
      3. Hello World as a sub sub title
      4. Hello World as a message with adjustable delay per call
      5. Hello World as a message
      6. Hello World as a question message
      7. Hello World as an error message
      8. Hello World as a success message
      9. Hello World as a warning message
      10. Hello World as an inform message
  7. Change the initialisation content
    1. TOML configuration breakdown
      1. line 1
      2. line 2
      3. line 3
      4. line 4
      5. line 5
      6. line 6
      7. line 7
      8. line 8
      9. line 9
      10. line 10
      11. line 11
      12. line 12
      13. line 13
      14. line 14
      15. line 15
      16. line 16
      17. line 17
    2. Update the configuration of an initialised class
  8. Author
  9. Version

Installation

Using pip

pip install -U disp

Using python

Under Windows:

py -m pip install -U disp

Under Linux/Mac OS:

python3 -m pip install -U disp

Usage

Importing

from disp import IDISP

Initialising

The generic class is: Disp(toml_content: dict, save_to_file: bool = False, file_name: str = "text_output_run.txt", file_descriptor: any = None)

For your convenience, you can use the IDISP variable which is an initialised version of the class.

IDISP.title("Hello World")

Otherwise, if you wish to initialise the class with your own parameters, you can do so like this:

from disp import Disp
TOML_CONF = {
    'PRETTIFY_OUTPUT': True,
    'PRETTY_OUTPUT_IN_BLOCS': True,
    'MESSAGE_CHARACTER': '@',
    'MESSAGE_ERROR_CHARACTER': '#',
    'MESSAGE_INFORM_CHARACTER': 'i',
    'MESSAGE_QUESTION_CHARACTER': '?',
    'MESSAGE_SUCCESS_CHARACTER': '/',
    'MESSAGE_WARNING_CHARACTER': '!',
    'SUB_SUB_TITLE_WALL_CHARACTER': '*',
    'SUB_TITLE_WALL_CHARACTER': '@',
    'TITLE_WALL_CHARACTER': '#',
    'TREE_COLUMN_SEPERATOR_CHAR': '│',
    'TREE_LINE_SEPERATOR_CHAR': '─',
    'TREE_NODE_CHAR': '├',
    'TREE_NODE_END_CHAR': '└',
    'MESSAGE_ANIMATION_DELAY_BLOCKY': 0.01,
    'MESSAGE_ANIMATION_DELAY': 0.01
}

SAVE_TO_FILE = False
FILE_NAME = "run_results.txt"
FILE_DESCRIPTOR = None


IDISP = Disp(
    TOML_CONF,
    SAVE_TO_FILE,
    FILE_NAME,
)

Calling the tree function

The generic function is:

tree(self, title: str, data: list[str], offset: int = 0)

The output is: None

TEST_DATA = {
    "test_data1": "test_data1.1",
    "test_data2": "test_data2.1",
    "test_data3": [
        "test_data_list3.1",
        "test_data_list3.2",
        "test_data_list3.3",
        "test_data_list3.4",
        "test_data_list3.5"
    ],
    "test_data4": "test_data4.1",
    "test_data5": {
        "test_data5.1": "test_data5.1.1",
        "test_data5.2": "test_data5.2.1",
        "test_data5.3": "test_data5.3.1",
        "test_data5.4": "test_data5.4.1"
    },
    "test_data6": [
        {
            "test_data6.1": "test_data6.1.1",
            "test_data6.2": "test_data6.2.1"
        },
        [
            "test_data_list6.3.1",
            "test_data_list6.3.1",
            "test_data_list6.3.1",
            "test_data_list6.3.1"
        ]
    ],
    "test_data7": {
        "test_data7.1": {
            "test_data7.1.1": "test_data7.1.1.1",
            "test_data7.1.2": "test_data7.1.2.1"
        },
        "test_data7.2": [
            "test_data7.2.1",
            "test_data7.2.2",
            "test_data7.2.3",
            "test_data7.2.4",
            "test_data7.2.5"
        ]
    }
}

IDISP.tree("This is a test tree", TEST_DATA, 0)

Displaying a beautified Hello World

Hello World as a title

The generic function to display Hello World! as a title is:

title(self, title)

The outputs is: None

IDISP.title("Hello World !")

Hello World as a sub title

The generic function to display Hello World! as a sub title is:

sub_title(self, sub_title)

The outputs is: None

IDISP.sub_title("Hello World !")

Hello World as a sub sub title

The generic function to display Hello World! as a sub sub title is:

sub_sub_title(self, sub_sub_title)

The outputs is: None

IDISP.sub_sub_title("Hello World !")

Hello World as a message with adjustable delay per call

The generic function to display Hello World! as a message is:

animate_message(self, message: str = "Hello World!", delay: float = 0.02)

The outputs is: None

IDISP.animate_message("Hello World !", 0.01)

Hello World as a message

The generic function to display Hello World! as a message is:

message(self, message:str)

The outputs is: None

IDISP.message("Hello World !")

Hello World as a question message

The generic function to display Hello World! as a question message is:

question_message(self, message: str)

The outputs is: None

IDISP.question_message("Hello World !")

Hello World as an error message

The generic function to display Hello World! as an error message is:

error_message(self, message: str)

The outputs is: None

IDISP.error_message("Hello World !")

Hello World as a success message

The generic function to display Hello World! as a success message is:

success_message(self, message: str)

The outputs is: None

IDISP.success_message("Hello World !")

Hello World as a warning message

The generic function to display Hello World! as a warning message is:

warning_message(self, message: str)

The outputs is: None

IDISP.warning_message("Hello World !")

Hello World as an inform message

The generic function to display Hello World! as an inform message is:

append_run_date(self)

The outputs is: None

IDISP.append_run_date()

Displaying the current date

The generic function to display the current date as a title is:

inform_message(self, message: list)

The outputs is: None

IDISP.inform_message("Hello World !")

Change the initialisation content

When initialising the class it is possible to change the animation behaviour by editing the TOML_CONF that you must provide when initialising the class.

During the initialisation it is also possible to redirect the output to a file instead of displaying it on the terminal. For this, please set the save_to_file to True and either:

  • provide a file name in file_name

  • provide a file descriptor in file_descriptor

If you provided a file_name, the file will automatically be opened However, in both cases, you will need to close the file by calling the function close_file (i.e. at the end of your program)

TOML configuration breakdown

This is the arguments that are required in the TOML file:

1  | PRETTIFY_OUTPUT: True,
2  | PRETTY_OUTPUT_IN_BLOCS: True,
3  | MESSAGE_CHARACTER: '@',
4  | MESSAGE_ERROR_CHARACTER: '#',
5  | MESSAGE_INFORM_CHARACTER: '!',
6  | MESSAGE_QUESTION_CHARACTER: '?',
7  | MESSAGE_SUCCESS_CHARACTER: '/',
8  | MESSAGE_WARNING_CHARACTER: '?',
9  | SUB_SUB_TITLE_WALL_CHARACTER: '*',
10 | SUB_TITLE_WALL_CHARACTER: '@',
11 | TITLE_WALL_CHARACTER: '#',
12 | TREE_COLUMN_SEPERATOR_CHAR: '│',
13 | TREE_LINE_SEPERATOR_CHAR: '─',
14 | TREE_NODE_CHAR: '├',
15 | TREE_NODE_END_CHAR: '└',
16 | MESSAGE_ANIMATION_DELAY_BLOCKY: 0.01,
17 | MESSAGE_ANIMATION_DELAY: 0.01

PS: I've added line numbers <number> | to help you track the analysis of the file, these are generally added automatically by your code editor.

Thats a big file, lets break it down together:

line 1

PRETTIFY_OUTPUT: True

This option is a crucial pivot for the program.

If:

  • True: The program will output the content letter by letter while waiting a specified delay
  • False: It will print out all of your messages at once without waiting any delay

line 2

PRETTY_OUTPUT_IN_BLOCS: True

This option is an optimisation for the program.

If:

  • True: The program will:
    • Extract the words from the input
    • output the content word by word while waiting a specified delay and respecting spacing
  • False: It will print out all of your messages at once without waiting any delay

line 3

MESSAGE_CHARACTER: '@'

This is a customisation, it allows you to specify the characther to use when displaying a message.

line 4

MESSAGE_ERROR_CHARACTER: '#'

This is a customisation, it allows you to specify the characther to use when displaying an error message.

line 5

MESSAGE_INFORM_CHARACTER: '!'

This is a customisation, it allows you to specify the characther to use when displaying an inform message.

line 6

MESSAGE_QUESTION_CHARACTER: '?'

This is a customisation, it allows you to specify the characther to use when displaying a question message.

line 7

MESSAGE_SUCCESS_CHARACTER: '/'

This is a customisation, it allows you to specify the characther to use when displaying a success message.

line 8

MESSAGE_WARNING_CHARACTER: '?'

This is a customisation, it allows you to specify the characther to use when displaying a warning message.

line 9

SUB_SUB_TITLE_WALL_CHARACTER: '*'

This is a customisation, it allows you to specify the characther to use when displaying a sub sub title.

line 10

SUB_TITLE_WALL_CHARACTER: '@'

This is a customisation, it allows you to specify the characther to use when displaying a sub title.

line 11

TITLE_WALL_CHARACTER: '#'

This is a customisation, it allows you to specify the characther to use when displaying a title.

line 12

TREE_COLUMN_SEPERATOR_CHAR: '│'

This is the character used by the tree function to indicate the indentation level

i.e:

│   ├─── my_file

line 13

TREE_LINE_SEPERATOR_CHAR: '─'

This is the character used by the tree function to indicate the file/folder of the current line

i.e:

├─── my_file

line 14

TREE_NODE_CHAR: '├'

This is the character used by the tree function to indicate the directory level to wich the file/directory is linked but that this is not the last file/directory.

i.e:

├─── my_file

line 15

TREE_NODE_END_CHAR: '└'

This is the character used by the tree function to indicate the directory level to wich the file/directory is linked but that this is the last file/directory.

i.e:

└─── my_file

line 16

MESSAGE_ANIMATION_DELAY_BLOCKY: 0.01

Specify the delay between each word placement. (min: 0)

PS: if you enter 0, this is like setting PRETTY_OUTPUT_IN_BLOCS to False

line 17

MESSAGE_ANIMATION_DELAY: 0.01

This variable is a pivot point for the program.

Specify the delay between each word placement. (min: 0)

PS: if you enter 0, this is like setting PRETTY_OUTPUT_IN_BLOCS to False

Update the configuration of an initialised class

If the default initialisation, or the class you previously initialised has some elements you would like to update, you can do so by calling the inner variables.

Here are the variables you might be interested in:

from disp import IDISP
IDISP.title_wall_chr # string (length 1): i.e.: '#'
IDISP.sub_title_wall_chr # string (length 1): i.e.: '@'
IDISP.sub_sub_title_wall_chr # string (length 1): i.e.: '*'
IDISP.message_char # string (length 1): i.e.: '@'
IDISP.message_error_char # string (length 1): i.e.: '#'
IDISP.message_success_char # string (length 1): i.e.: '/'
IDISP.message_inform_char # string (length 1): i.e.: 'i'
IDISP.message_warning_char # string (length 1): i.e.: '!'
IDISP.message_question_char # string (length 1): i.e.: '?'
IDISP.message_animation_delay # float: i.e.: # 0.01
IDISP.tree_node_char # string (length 1): i.e.: '├'
IDISP.tree_node_end_char # string (length 1): i.e.: '└'
IDISP.tree_line_seperator_char # string (length 1): i.e.: '─'
IDISP.tree_column_seperator_char # string (length 1): i.e.: '│'
IDISP.save_to_file # True or False
IDISP.toml_content["PRETTIFY_OUTPUT"] # True of False
IDISP.toml_content["PRETTY_OUTPUT_IN_BLOCS"] # True of False

To update a variable, simply assing it a new value, like in this example: IDISP.title_wall_chr = "&"

PS: These changes only apply to the class you loaded, any others will not be touched.

Author

This module was written by (c) Henry Letellier Attributions are appreciated.

Quick way:

print(f"AskQuestion is written by {IDISP.author}")

Version

The current version is 1.0.0

An easy way to display the version is:

import disp as IDISP
print(f"Version : {IDISP.__Version__}")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

display_tty-1.0.0.tar.gz (12.4 kB view hashes)

Uploaded Source

Built Distribution

display_tty-1.0.0-py3-none-any.whl (10.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page