Print objects with data beautifully
Project description
Pythonistas follow an implicit convention to create special __repr__ methods that return text closely resembling the code used to construct the object. With this library, you can easily implement __repr__ for your own classes.
Table of contents
Installation
You can install printo with pip:
pip install printo
You can also use instld to quickly try this package and others without installing them.
Basic usage
The main function in this library is describe_data_object; it returns a string representing the initialization code for your object. There are three required positional parameters:
- A class name.
- A
listortupleof positional arguments. - A
dictof keyword arguments, where the keys are the names of the arguments, and the values are arbitrary objects.
Here's a simple example of how it works:
from printo import describe_data_object
print(
describe_data_object(
'MyClassName',
(1, 2, 'some text'),
{'variable_name': 1, 'second_variable_name': 'kek'},
)
)
#> MyClassName(1, 2, 'some text', variable_name=1, second_variable_name='kek')
Filtering
You can prevent individual parameters from being displayed. To do this, pass a dict to the filters parameter. The keys identify arguments by index or name. The values are functions that return a bool — True keeps the argument and False skips it:
print(
describe_data_object(
'MyClassName',
(1, 2, 'some text'),
{'variable_name': 1, 'second_variable_name': 'kek'},
filters={1: lambda x: False if x == 2 else True, 'second_variable_name': lambda x: False},
)
)
#> MyClassName(1, 'some text', variable_name=1)
You can also use the provided not_none filter to automatically exclude None values:
from printo import not_none
print(
describe_data_object(
'MyClassName',
(1, None),
{},
filters={1: not_none},
)
)
#> MyClassName(1)
Custom display of objects
By default, all argument values are represented in the same way as the standard repr function would show them. There are only three exceptions:
- For regular functions, the function name is displayed.
- For classes, the class name is displayed.
- For lambda functions, the complete source code is displayed. However, if a single line of source code contains more than one lambda function, only the
λsymbol is displayed (this is a technical limitation of source code reflection in Python).
You can provide a custom serialization function for each argument value via the serializer parameter:
print(
describe_data_object(
'MyClassName',
(1, 2, 'lol'),
{'variable_name': 1, 'second_variable_name': 'kek'},
serializer=lambda x: repr(x * 2),
)
)
#> MyClassName(2, 4, 'lollol', variable_name=2, second_variable_name='kekkek')
Placeholders
For individual parameters, you can pass arbitrary strings that will be displayed instead of the actual values. This can be useful, for example, to hide the values of sensitive fields when serializing objects.
Pass a dict to the placeholders parameter, where the keys are argument names (for keyword arguments) or indices (for positional parameters, zero-indexed), and the values are strings:
print(
describe_data_object(
'MySuperClass',
(1, 2, 'lol'),
{'variable_name': 1, 'second_variable_name': 'kek'},
placeholders={
1: '***',
'variable_name': '***',
},
)
)
#> MySuperClass(1, ***, 'lol', variable_name=***, second_variable_name='kek')
🤓 If you set a placeholder for a parameter, the custom serializer will not be applied to it.
Auto mode
⚠️ Auto mode is currently experimental, so there may be some bugs.
You can remove the boilerplate code by using the @repred decorator for your class:
from printo import repred
@repred
class SomeClass:
def __init__(self, a, b, c, *args, **kwargs):
self.a = a
self.b = b
self.c = c
self.args = args
self.kwargs = kwargs
print(SomeClass(1, 2, 3))
#> SomeClass(1, 2, 3)
print(SomeClass(1, 2, 3, 4, 5))
#> SomeClass(1, 2, 3, 4, 5)
print(SomeClass(1, 2, 3, 4, 5, d=lambda x: x))
#> SomeClass(1, 2, 3, 4, 5, d=lambda x: x)
How does it work? Behind the scenes, the decorator uses AST analysis to generate code. The decorator attempts to determine which arguments passed to __init__ are stored in which attributes. In other words, it looks for direct assignments of the form self.a = a in the __init__ method.
If there is no direct assignment of a specific argument, an exception will be raised:
@repred
class SomeClass:
def __init__(self, a):
...
#> ...
#> printo.errors.ParameterMappingNotFoundError: No internal object property or custom getter was found for the parameter a.
↑ The error occurs when the class is decorated.
If, for some reason, you are unable to specify this mapping in the body of the __init__ method, you can pass a function for a specific parameter that will extract it:
@repred(getters={'a': lambda x: x.a})
class SomeClass:
def __init__(self, a):
self.a = self.convert_a(a)
def convert_a(self, a):
return a
print(SomeClass(123))
#> SomeClass(a=123)
By default, @repred displays all arguments as keywords in most cases. However, you can pass the prefer_positional argument to the decorator, which will cause it to prefer omitting argument names in such cases:
@repred
class Class1:
def __init__(self, a, b):
self.a = a
self.b = b
@repred(prefer_positional=True)
class Class2:
def __init__(self, a, b):
self.a = a
self.b = b
print(Class1(123, 456))
#> Class1(a=123, b=456)
print(Class2(123, 456))
#> Class2(123, 456)
You can also choose to display only certain parameters as positional:
@repred(positionals=['a'])
class SomeClass:
def __init__(self, a, b):
self.a = a
self.b = b
print(SomeClass(123, 456))
#> SomeClass(123, b=456)
If you want to prevent certain __init__ parameters from being displayed, you can add their names to the ignore list:
@repred(ignore=['a'])
class SomeClass:
def __init__(self, a, b):
self.a = a
self.b = b
print(SomeClass(123, 456))
#> SomeClass(b=456)
You can also add value-based filters for individual arguments by passing a dict of filters, similar to how it works in manual mode:
from printo import not_none
@repred(filters={'a': not_none})
class SomeClass:
def __init__(self, a, b):
self.a = a
self.b = b
print(SomeClass(None, None))
#> SomeClass(b=None)
print(SomeClass(123, 456))
#> SomeClass(a=123, b=456)
By default, the class name is displayed based on its __name__ attribute, but you can configure it to use the __qualname__ attribute instead:
def function():
@repred(qualname=True)
class SomeClass:
def __init__(self, a, b):
self.a = a
self.b = b
return SomeClass
print(function()(123, 456))
#> function.<locals>.SomeClass(a=123, b=456)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file printo-0.0.22.tar.gz.
File metadata
- Download URL: printo-0.0.22.tar.gz
- Upload date:
- Size: 12.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1705161e9d7106a0c1f97600dd6a9d88b5361b915482549554ee27d99e28c21
|
|
| MD5 |
bedec3ddce77205fdf8e0f468fc7478a
|
|
| BLAKE2b-256 |
78ac217f94d8e7e72e4601c22f095936b91c903e95070afb7c0b802b36887214
|
Provenance
The following attestation bundles were made for printo-0.0.22.tar.gz:
Publisher:
release.yml on mutating/printo
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
printo-0.0.22.tar.gz -
Subject digest:
c1705161e9d7106a0c1f97600dd6a9d88b5361b915482549554ee27d99e28c21 - Sigstore transparency entry: 1112886615
- Sigstore integration time:
-
Permalink:
mutating/printo@a0635916b760169ebc81367c04e70b4b90eeac19 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mutating
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a0635916b760169ebc81367c04e70b4b90eeac19 -
Trigger Event:
push
-
Statement type:
File details
Details for the file printo-0.0.22-py3-none-any.whl.
File metadata
- Download URL: printo-0.0.22-py3-none-any.whl
- Upload date:
- Size: 9.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b76538a638a9d3c8fd4b4b7df038c22a32ca7bb65993e945c98df174285c3e6f
|
|
| MD5 |
bf76bf429e65eb8ff1035aa088439f27
|
|
| BLAKE2b-256 |
81e3e556f8f6a3f0dbc5419f5cee0f8c66484e779f989659c047de49c45d4cb4
|
Provenance
The following attestation bundles were made for printo-0.0.22-py3-none-any.whl:
Publisher:
release.yml on mutating/printo
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
printo-0.0.22-py3-none-any.whl -
Subject digest:
b76538a638a9d3c8fd4b4b7df038c22a32ca7bb65993e945c98df174285c3e6f - Sigstore transparency entry: 1112886616
- Sigstore integration time:
-
Permalink:
mutating/printo@a0635916b760169ebc81367c04e70b4b90eeac19 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/mutating
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@a0635916b760169ebc81367c04e70b4b90eeac19 -
Trigger Event:
push
-
Statement type: