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.
pip install kabbes_parent_class
For more in-depth documentation, read the information provided on the Pages. Or better yet, read the source code.
from parent_class import ParentClass
Obj = ParentClass()
Obj.print_atts()
>>>
---ParentClass Class---
type: ParentClass
Obj.type
>>> 'ParentClass'
James Kabbes