Skip to main content

Tool to simply display information about the state of the code during execution.

Project description

By adding only a few lines of code at strategic places in your program, you will get a nice console display that will let you know what stage your code is at.

fork of context-printer:

This project is a fork of the context_printer project. The philosophy of this project is strictly the same as the original project. Nevertheless, this project offers the following improvements:

  • Support for the with keyword (context manager).

  • Formatting of exceptions for better debugging.

  • Added decorator behavior.

  • Possibility to implicitly name a section.

  • More formatting possible (adding highlighting and flashing).

  • No conflicts between thread and process (clients send text to a single server).

  • Integrated timer for display the sections duration.

Basic usage example:

from context_verbose import printer as ctp
with ctp('Main Section', color='blue'):
    ctp.print('Text in main section')
    for i in range(3):
        with ctp(f'Subsection {i}'):
            ctp.print('Text in subsection')
            ctp.print('Text in subsection')

The above example will print the following:

https://framagit.org/robinechuca/context-verbose/-/raw/main/basic_example.jpg

Exaustive example of usage:

from context_verbose import printer as ctp

@ctp
def decorated_func(x):
    return x**x**x

def error_func():
    with ctp('Section that will fail'):
        return 1/0

ctp.print('we will enter the main section')
with ctp('Main Section', color='cyan'):
    ctp.print('text in main section')
    try:
        with ctp('Subsection 1'):
            for x in [1, 8]:
                decorated_func(x)
            error_func()
    except ZeroDivisionError:
        pass
    with ctp('Subsection 2', color='magenta'):
        ctp.print('text in bold', bold=True)
        ctp.print('underlined text', underline=True)
        ctp.print('blinking text', blink=True)
        ctp.print('yellow text', color='yellow')
        ctp.print('text highlighted in blue', bg='blue')
        ctp.print('text in several ', end='')
        ctp.print('parts', print_headers=False)
        ctp.print('''text in several
                     lines''')
    with ctp(color='green'):
        ctp.print('this subsection is automatically named')
ctp.print('we are out of the main section')

The above example will print the following:

https://framagit.org/robinechuca/context-verbose/-/raw/main/exaustive_example.jpg

See Also

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

context_verbose-2.2.3.tar.gz (52.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

context_verbose-2.2.3-py3-none-any.whl (42.6 kB view details)

Uploaded Python 3

File details

Details for the file context_verbose-2.2.3.tar.gz.

File metadata

  • Download URL: context_verbose-2.2.3.tar.gz
  • Upload date:
  • Size: 52.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for context_verbose-2.2.3.tar.gz
Algorithm Hash digest
SHA256 1e6c25d988ce6ac77459fcebe85537fcae0315d77ab2c7dbfd85232b1baedd21
MD5 589b8fe01c103a2959a956b6d2308910
BLAKE2b-256 ef51357b5b72697d333d8b56de09954a9b5e6ed32c671498a360e6f393d3f62a

See more details on using hashes here.

File details

Details for the file context_verbose-2.2.3-py3-none-any.whl.

File metadata

File hashes

Hashes for context_verbose-2.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 4eec5fdafaf65a3f60e1c4f0fcd7eff165956cd08364536bc25c4ac62bc116a8
MD5 e5cef9f6a124a68f5f91944ff621d86e
BLAKE2b-256 91cafc0271e7391e8316b35acf9c7541411f834b77383e8a0b58857f6d37b3a0

See more details on using hashes here.

Supported by

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