Metadata-Version: 2.1
Name: kabbes_parent_class
Version: 0.7.0
Summary: Parent Class for generic Python use
Home-page: https://pypi.org/project/kabbes-parent-class/
Author: James Kabbes
Author-email: james.kabbes@gmail.com
Project-URL: GitHub, https://github.com/jameskabbes/parent_class
Project-URL: Documentation, https://jameskabbes.github.io/parent_class
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

[GitHub Pages](https://jameskabbes.github.io/parent_class) <br>
[PyPI](https://pypi.org/project/kabbes-parent-class)

# parent_class
Parent Class for generic Python use. Contains many helpful standard methods to speed up development for future classes. Designed to be inherited by Child classes.

<br>

# Installation
`pip install kabbes_parent_class`

<br>

# Usage
For more in-depth documentation, read the information provided on the Pages. Or better yet, read the source code.

```python
from parent_class import ParentClass
```

```python
Obj = ParentClass()
```

```python
Obj.print_atts()
```

```
>>>
---ParentClass Class---
type:   ParentClass
```

```python
Obj.type
```

```
>>> 'ParentClass'
```

<br>

# Author
James Kabbes

