Metadata-Version: 2.2
Name: reprtools
Version: 0.1
Summary: utilities for nice object reprs
Author: Ronny Pfannschmidt
Author-email: Ronny.Pfannschmidt@gmx.de
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: summary

reprtools
==========

i created reprtools,
because i was annoyed by how i have to write __repr__ in my simple classes

usage::

    from reprtools import FormatRepr

    class User(object):
        __repr__ = FormatRepr("<User {name}>")

        def __init__(self, name):
            self.name = name



 >>> User('test')
 <User test>


