Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 739 Bytes

README.md

File metadata and controls

47 lines (33 loc) · 739 Bytes

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.

Documentation
PyPI


Installation

pip install kabbes_parent_class


Usage

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'

Author

James Kabbes