Create a __repr__ for your python classes from the definition found in __init__
Project description
crepr
Create a __repr__
for your python classes.
A Python script that takes a file path as a command-line argument,
imports the specified file, and creates a __repr__
method
for each class defined in the module.
It uses the definition found in the __init__
method of the class.
It is pronounced /kɹeɪpr/, like 🇳🇿 crêpe.
Have a look at the blog-post Love Your Representation for the rationale of this package.
Install
pip install crepr
Usage
❯ crepr --help
Usage: crepr [OPTIONS] FILE_PATH
Create a __repr__ method for each class of a python file.
Arguments:
FILE_PATH [required]
Options:
--install-completion [bash|zsh|fish|powershell|pwsh]
Install completion for the specified shell.
--show-completion [bash|zsh|fish|powershell|pwsh]
Show completion for the specified shell, to
copy it or customize
Example
Given the file tests/classes/kw_only_test.py
with the contents:
class KwOnly:
def __init__(self, name: str, *, age: int) -> None:
self.name = name
self.age = age
The command:
❯ crepr tests/kw_only_test.py
produces
class KwOnly:
def __init__(self, name: str, *, age: int) -> None:
self.name = name
self.age = age
def __repr__(self) -> str:
"""Create a string (c)representation for KwOnly."""
return (f'{self.__class__.__module__}.{self.__class__.__name__}('
f'name={self.name!r}, '
f'age={self.age!r}, '
')')
The repr()
of an instance of this class will be:
>>> from tests.classes.kw_only_test import KwOnly
>>> kwo = KwOnly('Christian', age=25)
>>> kwo
tests.classes.kw_only_test.KwOnly(name='Christian', age=25, )
Give your representations some love.
❤️.__repr__(self) -> str:
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
Built Distribution
File details
Details for the file crepr-0.2.0.tar.gz
.
File metadata
- Download URL: crepr-0.2.0.tar.gz
- Upload date:
- Size: 6.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e95e55a659d6c72a9d064154e667eb445e77e398ae7533f04041e6e737cab4fb |
|
MD5 | 4b1734a7cbe5baa6ed00547b9983a646 |
|
BLAKE2b-256 | 387b15addee496b3936c2bc1175b0055609cbd11db8fb350e3d65f5ef739c8a7 |
File details
Details for the file crepr-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: crepr-0.2.0-py3-none-any.whl
- Upload date:
- Size: 6.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a808f482ff969d0507d1475e2ef26da22809abd5b7b4540a708d730130dff5c |
|
MD5 | 3700dee13aa4a0c9a44c4e50911a6126 |
|
BLAKE2b-256 | 81602de377a7f9b3924bc4921d13f16a1fce2f9a32157437e99c1b441672478c |