This is a module providing convenient functions to format, color and print any string to highlight any contained data structures.
It intends to replace the well known pprint, to format python objects on output
from nprint import nprint
data = {
'name': 'mydict',
'comment': 'this is a dictionnary',
'field': (5, 6),
'long one': [12324232, 53445645645, 'truc', 345345345345345356, (456,45), 'bla bla bla', 'blo blo blo', 'things and so'],
'some text': '/!\\ even content of strings are formated:\n {345, 23, 17, [2,1]} as you see\n',
}using pip:
pip install pnprintor copy nprint.py from this repo to any directory you want !
-
nprint(*args, indent=0, color=True, end='\n')the pprint replacement: it works as
print()but works on strings instead of working on already known objectsit splits too long lines into indented blocks by syntax markers (such as
{}()[], etc)be careful: as
print,nprintuses the string conversionstr(obj)to convert an object passed, if you want to use the string representation, then you'll have to passrepr(obj)tonprintornformat -
nformat(text, indent=0, width=100) -> strsplit a text into indented lines
-
ncolor(text) -> stradd color makers for terminals syntax highlighting
-
deformat(text) -> strremove formatting of all marker-enclosed text
