Metadata-Version: 2.2
Name: custom-repr
Version: 1.2.2
Summary: A lightweight Python library to automatically generate clean __repr__ methods for all your user-declared classes.
Author-email: Pedro Fernandes da Silva <paca.fs@gmail.com>
License: MIT
Keywords: repr,string representation
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: rich>=10.0

# Custom Repr

A lightweight Python library to automatically generate clean __repr__ methods for all your user-declared classes.

## Installation

```sh
pip install custom-repr
```

## Usage

```python
import custom_repr

class Person:
    def __init__(self, name, age):
        self.name = name
        self.age = age

person = Person("John", 30)

print(person)  # Person(name: "John", age: 30)
