Tags give the ability to mark specific points in history as being important
-
v0.2.0
protected512f7f30 · ·Increased Flexibility This release deprecates the `@has_property()` decorator in favour of a new, more flexible `@wrapper_property()` decorator. With this decorator it is possible to do **anything** that is otherwise possible via the standard `@property`-way of creating properties. It provides convenient shortcuts to create commonly-needed properties. Furthermore, this release improves the `@with_init_from_properties()` and `@with_repr_like_init_from_properties` decorators so that they only use read- and settable properties. Before, also properties without setter were shown in `__repr__`, which caused an `AttributeError` to be raised in `__init__`.
-
v0.1.0
protected9716b510 · ·This is the first release providing basic functionality: - quickly adding properties to classes via decorators - adding an __init__-method based on the properties - adding a pretty __repr__-method based on the properties and the __init__ method - adding an __eq__-method which compares the properties