writable-property

writable property


Keywords
writable, property, python
License
Unlicense
Install
pip install writable-property==2020.12.3

Documentation

Installation

$ [sudo] pip install writable-property

Examples

>>> from writable_property import writable_property

>>> class Class:
    @writable_property
    def prop(self):
        return "value"

>>> obj = Class()
>>> obj.prop
"value"

>>> obj.prop = "new"
>>> obj.prop
"new"

readme42.com