Metadata-Version: 1.0
Name: reprtools
Version: 0.0.post5-ac5a33a1b087
Summary: utilities for nice object reprs
Home-page: UNKNOWN
Author: Ronny Pfannschmidt
Author-email: Ronny.Pfannschmidt@gmx.de
License: UNKNOWN
Description: 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>
        
        
        
Platform: UNKNOWN
