Metadata-Version: 2.1
Name: writable-property
Version: 2020.7.1
Summary: writable property
Home-page: https://github.com/andrewp-as-is/writable-property.py
License: Unlicense
Description: <!--
        https://readme42.com
        -->
        
        
        [![](https://img.shields.io/pypi/v/writable-property.svg?maxAge=3600)](https://pypi.org/project/writable-property/)
        [![](https://img.shields.io/badge/License-Unlicense-blue.svg?longCache=True)](https://unlicense.org/)
        
        ### Installation
        ```bash
        $ [sudo] pip install writable-property
        ```
        
        #### Examples
        ```python
        >>> 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"
        ```
        
        <p align="center">
            <a href="https://readme42.com/">readme42.com</a>
        </p>
Keywords: writable property
Platform: UNKNOWN
Classifier: License :: Public Domain
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
