Skip to main content

arbol -- Arborescent Printouts in Python

Project description

arbol | Python Package for Arborescent Printouts in Python

s Do you have a script, a command line tool, or some workflow in Python that has lots of 'print' statements, and you can't make sense of it once it adds up to hundreds of lines on the console? Sounds familiar?
arbol organises your stdout prints in a hierarchy that follows the structure of your code. Use a simple context manager to define the hierarchy and the 'aprint' command instead of print, and voila. Finally, when the optional dependencies are installed, the printed tree and text are colored with an exquisitely crafted combination of colors, making it even more visually appealing.

If you are wondering, 'arbol' means 'tree' in spanish.

Why not use a more traditional Python logging? We have made the choice of sticking to a plain and simple scheme that matches the usage of 'print' statements.

Features

You can use 'aprint' replacement for the built-in 'print'. You create a new 'node' in the tree with the 'asection' contact manager. Moreover, arbol measures the elapsed time for each node of the tree and displays that conveniently. You have several configuration flags in the Arbol class to tune things. If yo want to capture print statements originating from 3rd party code, you can use the 'acapture' context manager to capture stdout (and stderr) -- tis is a bit experimental and is best used sparingly. The best documentation is simply the demo below...

Installation

Install with pip:

pip install arbol

Optional dependencies

If you want colors, install the ansicolors package:

pip install ansicolors

To make sure that you get the colors on all operating systems (particularly Windows), install the colorama package:

pip install colorama

Note: both colorama and ansicolors are optional -- arbol will work fine without it installed.

Example

Here is a simple and self-explanatory example:

from arbol import Arbol, aprint, section, asection, acapture

import arbol

# for colors, install the ansicolors package: 'pip install ansicolors',
# and for windows install the colorama package: 'pip install colorama'

# You can limit the tree depth:
Arbol.max_depth = 4

# use aprint (=arbol print) instead of the standard print
aprint('Test')

# You can decorate functions:
@section('function')
def fun(x):
    if x >= 0:
        with asection('recursive call to f'):
            aprint(f"f(x)+1={fun(x - 1)}")

# The context manager let's you go down one level in the tree
with asection('a section'):
    aprint('a line')
    aprint('another line')
    aprint('we are done \n or are we? \n someone gotta check!')

    with asection('a subsection'):
        aprint('another line')
        aprint('we are done')

    # works through function calls and the like...
    fun(2)

    # You can capture stdout if you want, usefull when a 3rd party library has printouts that you want to capture...
    with acapture():
        print("No escape is possible")
        aprint("Even this works...\n")
        # Don't push it.. sections will not work right now...

    # You can deactivate the elapsed time measurement and printing:
    Arbol.elapsed_time = False
    fun(100)

aprint('demo is finished...')

# You can also turn off all output with one switch:
Arbol.enable_output = False
aprint('you will not see that')

And this is how it looks like:

example

Roadmap

Some ideas we might consider from serious to highly speculative:

  • More color styles to choose from
  • Intercept stdout from C code so that printouts from libraries called from python are formatted too, unclear is that's possible.
  • Generate tree automatically by inspecting stack?
  • Interoperability with logging package?
  • How to handle multiple threads/processes? Right now, the printouts get inter;leaved stochastically which is messy and incomprehensible. One idea is to capture all outputs from each thread, hold onto these outputs until the thread is done (perhaps via a dedicated 'holding' context manager), and ouput it all in order and separately. Probably doable.

Contributions

Pull requests highly welcome!

Authors

Loic A. Royer (@loicaroyer) Ahmet Can Solak (@_ahmetcansolak)

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

arbol-2021.5.18.993.tar.gz (9.3 kB view details)

Uploaded Source

Built Distribution

arbol-2021.5.18.993-py2.py3-none-any.whl (8.1 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file arbol-2021.5.18.993.tar.gz.

File metadata

  • Download URL: arbol-2021.5.18.993.tar.gz
  • Upload date:
  • Size: 9.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for arbol-2021.5.18.993.tar.gz
Algorithm Hash digest
SHA256 7bc50e81269129d0a6bd1020d330de26f014d6114f203e538f3b864ca7bddcbd
MD5 8ea8a8ef08e3a6a5410347df229c2603
BLAKE2b-256 7760557140e0d3f635b02190b00d04a1c8d94c86dc8d6dc9ac2b6d4f641aa28f

See more details on using hashes here.

File details

Details for the file arbol-2021.5.18.993-py2.py3-none-any.whl.

File metadata

  • Download URL: arbol-2021.5.18.993-py2.py3-none-any.whl
  • Upload date:
  • Size: 8.1 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for arbol-2021.5.18.993-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 5e99b9de59f68006e6d148cf8845321dab2a0c689927f9bd8c516c047693fd93
MD5 e561d3b7c625d39e50d72263a9538dab
BLAKE2b-256 67f1ba21700744a285cde29d535064abcacf6d9c27f4ba6ef7d3df0a2dd152d4

See more details on using hashes here.

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