Skip to main content

extensible pprint successor - python3 version

Project description

pretty-py3

Python advanced pretty printer. This pretty printer is intended to replace the old pprint python module which does not allow developers to provide their own pretty print callbacks.

This module is based on ruby's prettyprint.rb library by Tanaka Akira.

This was converted to python3 by Mark Grandi and others

Example Usage

To directly print the representation of an object use pprint:

from pretty import pprint
pprint(complex_object)

To get a string of the output use pretty:

from pretty import pretty
string = pretty(complex_object)

Extending

The pretty library allows developers to add pretty printing rules for their own objects. This process is straightforward. All you have to do is to add a __pretty__ method to your object and call the methods on the pretty printer passed:

class MyObject(object):

    def __pretty__(self, p, cycle):
        ...

Here the example implementation of a __pretty__ method for a list subclass::

class MyList(list):

    def __pretty__(self, p, cycle):
        if cycle:
            p.text('MyList(...)')
        else:
            with p.group(8, 'MyList([', '])'):
                for idx, item in enumerate(self):
                    if idx:
                        p.text(',')
                        p.breakable()
                    p.pretty(item)

The cycle parameter is True if pretty detected a cycle. You have to react to that or the result is an infinite loop. p.text() just adds non breaking text to the output, p.breakable() either adds a whitespace or breaks here. If you pass it an argument it's used instead of the default space. p.pretty prettyprints another object using the pretty print method.

The first parameter to the group function specifies the extra indentation of the next line. The second and the third parameter are the opening and closing strings that will be printed before and after the group. In this example the next item will either be not breaked (if the items are short enough) or aligned with the right edge of the opening bracked of MyList.

Changelog

0.2.4

0.2.3

0.2.2

  • Finish porting it to python3

Copyright

copyright 2007 by Armin Ronacher.

copyright 2014 by Mark Grandi - python 3 port

license BSD License.

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

pretty-py3-0.2.4.post1.tar.gz (7.0 kB view details)

Uploaded Source

Built Distribution

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

pretty_py3-0.2.4.post1-py3-none-any.whl (7.3 kB view details)

Uploaded Python 3

File details

Details for the file pretty-py3-0.2.4.post1.tar.gz.

File metadata

  • Download URL: pretty-py3-0.2.4.post1.tar.gz
  • Upload date:
  • Size: 7.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.19.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.29.0 CPython/3.7.2

File hashes

Hashes for pretty-py3-0.2.4.post1.tar.gz
Algorithm Hash digest
SHA256 9589d46fe842724f44195f277ecb283c1efa536ebaa80e62b528e722402435dc
MD5 2c3a95b68b04935d8da1ad466454a49f
BLAKE2b-256 dc0465e5bdbca3ffaa3987e8493d68126a2e3d333c2e468fc8c8702a56e835fd

See more details on using hashes here.

File details

Details for the file pretty_py3-0.2.4.post1-py3-none-any.whl.

File metadata

  • Download URL: pretty_py3-0.2.4.post1-py3-none-any.whl
  • Upload date:
  • Size: 7.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.19.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.29.0 CPython/3.7.2

File hashes

Hashes for pretty_py3-0.2.4.post1-py3-none-any.whl
Algorithm Hash digest
SHA256 f171ad7710fc678540297951d7dd4325682de2d1e8f69167ad241548f9a7111f
MD5 cd13516fb130bba53fdec6b53af0ae4f
BLAKE2b-256 05552e64673fdb825988ce5f03ecb77667c57937cce94349141ca098c38725e0

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