Skip to main content

Utilities for making useful string representations of objects.

Project description

Last release Python version Documentation Test status Test coverage Last commit

reprfunc is a library that makes it easier to implement __repr__() for your classes. It implements a few common repr strategies (e.g. mimicking the contructor, getting values from a custom dunder method, displaying a hard-coded list of object attributes) and allows you use them simply by assigning to __repr__.

Installation

Install reprfunc from PyPI:

$ pip install reprfunc

Version numbers obey semantic versioning.

Examples

Make a repr-string that matches the arguments to the constructor:

>>> from reprfunc import *
>>> class MyObj:
...
...     def __init__(self, a, b):
...         self.a = a
...         self.b = b
...
...     __repr__ = repr_from_init
...
>>> MyObj(1, 2)
MyObj(a=1, b=2)

The same as above, but also demonstrating some knobs for controlling the output:

>>> class MyObj:
...
...     def __init__(self, a, b, c=None, _state={}):
...         self.a = a
...         self._b = b
...         self.c = c
...         self._state = _state
...
...     __repr__ = repr_from_init(
...         # This option lets you explicitly map argument names to either
...         # attribute names, or callables that accept the object in
...         # question as their only argument.
...         attrs={'b': '_b'},
...
...         # This option allows you to exclude certain arguments from the
...         # repr-string.  Attributes with the same value as the default #
...         # will be skipped automatically (like `c` in this example).
...         skip=['_state'],
...
...         # This option allows you to specify that certain arguments should
...         # be rendered using the "positional" syntax.  Positional-only
...         # arguments are rendered this way by default.
...         positional=['a'],
...     )
>>> MyObj(1, 2, _state={3: 4})
MyObj(1, b=2)

Make a repr-string that gets its values from a __reprargs__() method defined by the object in question:

>>> class MyObj:
...
...     def __init__(self, a, b):
...         self.a = a
...         self.b = b
...
...     def __reprargs__(self):
...         # This function should return a list and a dictionary.  Any
...         # values in the list will be rendered as positional arugments,
...         # and any items in the dictionary will be rendered as keyword
...         # arguments.
...         return [self.a], {'b': self.b}
...
...     __repr__ = repr_from_dunder
...
>>> MyObj(1, 2)
MyObj(1, b=2)

Make a repr-string from a hard-coded list of attributes:

>>> class MyObj:
...
...     def __init__(self, a, b):
...         self.a = a
...         self.b = b
...
...     # Note that 'b' is specified twice here.  You can avoid this by
...     # specifying ``b=Key()``.
...     __repr__ = repr_from_attrs('a', b='b')
...
>>> MyObj(1, 2)
MyObj(1, b=2)

Use ReprBuilder to help formatting bespoke repr-strings. You can think of this class as a collection of positional and keyword arguments that knows how to format itself. It provides many more methods for registering positional/keyword arguments beyond what’s demonstrated here, so consult the source code if this seems useful:

>>> class MyObj:
...
...    def __init__(self, a, b):
...        self.a = a
...        self.b = b
...
...    def __repr__(self):
...        builder = ReprBuilder(self)
...        builder.add_positional_attr('a')
...        builder.add_keyword_attr('b')
...        return str(builder)
...
>>> MyObj(1, 2)
MyObj(1, b=2)

Alternatives

There are several other libraries out there that help with formatting repr-strings. Overall, the reason I wrote reprfunc was to make something more flexible and more succinct than the alternatives.

  • represent: This is a pretty similar library overall. The main difference is that it uses class decorators and/or inheritance to add its repr functions to your objects. One big advantage of this approach is that it allows “pretty-print” reprs for IPython to be added at the same time, but it also has a heavier feel.

  • reprutils: This is also a pretty similar library, but it only supports the equivalent of repr_from_attrs().

  • reprtools: This library doesn’t have much documentation, but seems to be mostly superseded by f-strings.

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

reprfunc-0.0.0.tar.gz (11.5 kB view details)

Uploaded Source

Built Distribution

reprfunc-0.0.0-py2.py3-none-any.whl (4.9 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file reprfunc-0.0.0.tar.gz.

File metadata

  • Download URL: reprfunc-0.0.0.tar.gz
  • Upload date:
  • Size: 11.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.27.1

File hashes

Hashes for reprfunc-0.0.0.tar.gz
Algorithm Hash digest
SHA256 a6ef11bffb7498a411678c475f534dec37ddc7c5d7213ad916b91c552cf807fa
MD5 744e066bd8ba84bde0888e99673d3c59
BLAKE2b-256 88d6b76ab4b43ed3f5013c15d054312181da99d80d61797aab1ef17854ce875c

See more details on using hashes here.

File details

Details for the file reprfunc-0.0.0-py2.py3-none-any.whl.

File metadata

  • Download URL: reprfunc-0.0.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 4.9 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.27.1

File hashes

Hashes for reprfunc-0.0.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 6530c4fa2a003d6de6a30341aac40ba32e6bede5b0d843b0d91474e4971b5412
MD5 ced8be0ee98830e8f5fa084105bf03c9
BLAKE2b-256 0b0d6b1e05d9219a664817f2a64c883cd95dd0e3549d73d40abd7794bfd3d798

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