Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Creating Tribes and Templates should not require an existing class. The current implementation is clumsy: to create a Tribe you would run:
Tribe().construct(...)
Describe the solution you'd like
A clear and concise description of what you want to happen.
Change .read() and .construct() to @classmethods that allow the following syntax:
Tribe.construct(...)
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Keeping it the way it is is pretty ugly...
Additional context
Add any other context about the feature request here.
Is your feature request related to a problem? Please describe. A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Creating
Tribe
s andTemplate
s should not require an existing class. The current implementation is clumsy: to create aTribe
you would run:Describe the solution you'd like A clear and concise description of what you want to happen.
Change
.read()
and.construct()
to@classmethod
s that allow the following syntax:Describe alternatives you've considered A clear and concise description of any alternative solutions or features you've considered.
Keeping it the way it is is pretty ugly...
Additional context Add any other context about the feature request here.