Metadata-Version: 2.2
Name: custom-repr
Version: 0.2.3
Summary: A lightweight Python library to automatically generate clean __repr__ methods for all your classes. Zero setup, zero overhead.
Author-email: Pedro Fernandes da Silva <paca.fs@gmail.com>
License: MIT
Keywords: repr,decorator,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

# Custom Repr

A simple decorator to add pretty representation to Python 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)
