Metadata-Version: 2.1
Name: attribute
Version: 0.1.4
Summary: Attribute management made easy
Home-page: https://github.com/tombulled/attribute
License: MIT
Keywords: python,attribute
Author: Tom Bulled
Author-email: 26026015+tombulled@users.noreply.github.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Project-URL: Repository, https://github.com/tombulled/attribute
Description-Content-Type: text/markdown

# attribute
Attribute management made easy

## Installation
```console
pip install git+https://github.com/tombulled/attribute@main
```

## Usage
```python
>>> import attribute
>>>
>>> def foo(): pass
>>>
>>> name = attribute.Attribute('__name__')
>>>
>>> name.get(foo)
'foo'
```
