Skip to main content

A Wadler–Lindig pretty-printer for Python.

Project description

A Wadler–Lindig ✨pretty-printer✨ for Python

This library is for you if you need:

  • Something like the built-in pprint.pprint, but which consumes less horizontal space. For example in error messages.
  • If you have complicated custom types that you'd like to create pretty well-formatted reprs for. For example nested trees of dataclasses / PyTorch modules / etc.

Main features:

  • Absolutely tiny implementation (77 lines of code for the main Wadler–Lindig algorithm, 223 more for teaching it how to handle all Python types).
  • Simpler than the original algorithm by Wadler & Lindig (removes some dead code).
  • Supports multi-line unbroken text strings.
  • Supports ANSI escape codes and colours.
  • Zero dependencies.

Example use cases:

Installation

pip install wadler_lindig

Documentation

Available at https://docs.kidger.site/wadler_lindig.

Example

import dataclasses
import numpy as np
import wadler_lindig as wl

@dataclasses.dataclass
class MyDataclass:
    x: list[str]
    y: np.ndarray

obj = MyDataclass(["lorem", "ipsum", "dolor sit amet"], np.zeros((2, 3)))

wl.pprint(obj, width=30, indent=4)
# MyDataclass(
#     x=[
#         'lorem',
#         'ipsum',
#         'dolor sit amet'
#     ],
#     y=f64[2,3](numpy)
# )

API at a glance

For day-to-day pretty-printing objects: pprint (to stdout), pformat (as a string), pdiff (between two objects).

For creating custom pretty-printed representations:

  • The core Wadler–Lindig document types: AbstractDoc, BreakDoc, ConcatDoc, GroupDoc, NestDoc, TextDoc.
  • pdoc will convert any Python object to a Wadler–Lindig document, with the __pdoc__ method called on custom types if it is available.
  • ansi_format (to add ANSI colour codes), ansi_strip (to remove ANSI codes).
  • Several common helpers for creating Wadler–Lindig documents: array_summary, bracketed, comma, join, named_objs.

FAQ

What is the difference to the built-in `pprint` library?
  1. The main difference is that the Wadler–Lindig algorithm produces output like
MyDataclass(
  x=SomeNestedClass(
    y=[1, 2, 3]
  )
)

In contrast pprint produces output like

MyDataclass(x=SomeNestedClass(y=[1,
                                 2,
                                 3]))

which consumes a lot more horizontal space.

  1. By default we print NumPy arrays / PyTorch tensors / etc. in a concise form e.g. f32[2,3](numpy) to denote a NumPy array with shape (2, 3) and dtype float32. (Set short_arrays=False to disable this.)

  2. We provide support for customising the pretty-printed representations of your custom types. Typically this is done via:

    import wadler_lindig as wl
    
    class MyAmazingClass:
        def __pdoc__(self, **kwargs) -> wl.AbstractDoc:
            ...  # Create your pretty representation here!
    
        def __repr__(self):
            # Calls `__pdoc__` and then formats to a particular width.
            return wl.pformat(self, width=80)
    

    In addition we support a wadler_lindig.pprint(..., custom=...) argument, if you don't own the type and so cannot add a __pdoc__ method.

What is the difference to `black` or `rust format`?

The above are formatters for your source code. This wadler_lindig library is intended as an alternative to the built-in pprint library, which pretty-format Python objects at runtime.

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

wadler_lindig-0.1.1.tar.gz (15.1 kB view details)

Uploaded Source

Built Distribution

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

wadler_lindig-0.1.1-py3-none-any.whl (20.0 kB view details)

Uploaded Python 3

File details

Details for the file wadler_lindig-0.1.1.tar.gz.

File metadata

  • Download URL: wadler_lindig-0.1.1.tar.gz
  • Upload date:
  • Size: 15.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.11.11

File hashes

Hashes for wadler_lindig-0.1.1.tar.gz
Algorithm Hash digest
SHA256 cd3fb4306c24efa09fe9d72e27c1f5495269fa58e7e623818a556c347c497e65
MD5 6b71229d62d4dfb510c51ef3313e3417
BLAKE2b-256 0d9ef211bba62a545a703a0b29cb936275ae8fc3e8ab9b26b42fa527ccbbc8d1

See more details on using hashes here.

File details

Details for the file wadler_lindig-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: wadler_lindig-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 20.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.11.11

File hashes

Hashes for wadler_lindig-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3998cf541216ce46d5201188b42c3545023d18a25af9cd601c8b6ae6c0b9200b
MD5 0fb1863af4a14e2c9777395bfd75dabb
BLAKE2b-256 3513f015debe8dc449a898cbc844160ec660df4c290a680d3c6849e64ddb2cb1

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