Metadata-Version: 2.1
Name: writable-property
Version: 2019.3.23
Summary: writable property
Home-page: https://github.com/looking-for-a-job/writable-property.py
License: UNKNOWN
Keywords: writable property
Platform: UNKNOWN
Classifier: License :: Public Domain
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development
Description-Content-Type: text/markdown
Requires-Dist: public
Requires-Dist: setuptools

<!--
https://pypi.org/project/readme-generator/
-->

[![](https://img.shields.io/pypi/pyversions/writable-property.svg?longCache=True)](https://pypi.org/project/writable-property/)
[![](https://img.shields.io/pypi/v/writable-property.svg?maxAge=3600)](https://pypi.org/project/writable-property/)
[![Travis](https://api.travis-ci.org/looking-for-a-job/writable-property.py.svg?branch=master)](https://travis-ci.org/looking-for-a-job/writable-property.py/)

#### Installation
```bash
$ [sudo] pip install writable-property
```

#### Classes
class|`__doc__`
-|-
`writable_property.writable_property` |writable property class

#### 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://pypi.org/project/readme-generator/">readme-generator</a>
</p>

