Version | |
Status | |
Documentation | |
Tools | |
Compatibility | |
Stats | |
This package provides classes and decorators for a variety of Python implementations of registration, factories, and type validators.
registered
: a decorator that stores a registry in aregistry
attribute of the function or class which is wrapped by the decorator.Registrar
: a mixin for automatic subclass registration.
InstanceFactory
: mixin that stores all subclass instances in theinstances
class attribute and returns stored instances when thecreate
classmethod is called.LibraryFactory
: mixin that stores all subclasses and subclass instances in thelibrary
class attribute and returns stored subclasses and/or instances when thecreate
classmethod is called.SourceFactory
: mixin that calls the appropriate creation method based on the type of passed first argument tocreate
and the types stored in the keys of thesources
class attribute.StealthFactory
: mixin that returns stored subclasses when thecreate
classmethod is called without having asubclasses
class attribute like SubclassFactory.SubclassFactory
: mixin that stores all subclasses in thesubclasses
class attribute and returns stored subclasses when thecreate
classmethod is called.TypeFactory
: mixin that calls the appropriate creation method based on the type of passed first argument tocreate
and the snakecase name of the type. This factory is prone to significant key errors unless you are sure of the snakecase names of all possible submitted type names. SourceFactory avoids this problem by allowing you to declare corresponding types and string names.
bonafide
: decorator that validates or converts types based on type annotations of the wrapped function or dataclass (under construction)
ashford`s framework supports a wide range of coding styles. You can create complex multiple inheritance structures with mixins galore or simpler, compositional objects. Even though the data structures are necessarily object-oriented, all of the tools to modify them are also available as functions, for those who prefer a more funcitonal approaching to programming.
The project is also highly internally documented so that users and developers can easily make ashford work with their projects. It is designed for Python coders at all levels. Beginners should be able to follow the readable code and internal documentation to understand how it works. More advanced users should find complex and tricky problems addressed through efficient code.
[TODO: List any OS or other restrictions and pre-installation dependencies]
To install ashford
, use pip
:
pip install ashford
[TODO: Describe common use cases, with possible example(s)]
Contributors are always welcome. Feel free to grab an issue to work on or make a suggested improvement. If you wish to contribute, please read the Contribution Guide and Code of Conduct.
[TODO: If they exist, it is always nice to acknowledge other similar efforts]
[TODO: Mention any people or organizations that warrant a special acknowledgment]
Use of this repository is authorized under the Apache Software License 2.0.