A lightweight, decoupled wrapper for dynamic class assignment.
Project description
# borg_pod Python design pattern and module.
The Borg Pod pattern provides an easy method for creating dynamic and decoupled classes. Instead of imposing developer overhead of linking class implementations, designing a state machine, referring to the correct pointers for the owners of each attribute / method, and debugging the system - you could just put a wrapper above your classes and be done with it.
## Get
Clone this repo, or use pip3 install borg_pod
## Use
At the top of your module, be sure to include:
from borg_pod import resist, assimilate, BorgPod
Or, if you adhere to Google standards:
import borg_pod as bp_or_be_oil
You’ve imported borg_pod’s relevant attributes directly like a sane person? Let’s say you have some classes you want to be able to switch an instance between:
class SomeClassA(object):
- def __init__(self):
pass
- def my_method(self):
print(“I AM SOME CLASS A”)
class OtherClassB(object):
- def __init__(self):
print(“HOLD ON, I AIN’T SO QUIET.”)
- def my_method(self):
print(”…where am I again?”)
- def a_unique_method(self, to_print):
print(to_print)
All you would do is add the @assimilate decorator above both:
@my_library.assimilate class SomeClassA …
@my_library.assimilate class OtherClassB
…
Creating and converting an instance of one would look like:
my_first_unique = SomeClassA()
my_second_unique = SomeClassA()
my_third_unique = OtherClassB()
assert my_first_unique is not my_second_unique and my_third_unique is not my_first_unique
first_b = SomeClassB(my_first_unique)
second_b = SomeClassB(my_second_unique)
third_b = SomeClassB(my_third_unique)
- assert (first_b is my_first_unique and second_b is my_second_unique and third_b is my_third_unique
and first_b is not third_b and first_b is not second_b)
And that’s it! More advanced usage involves the @resist decorator, to avoid the self reference injection - but most devs don’t need to worry about that. You can find more thorough documentation inside of the module. Classes with the @assimilate decorator can be subclassed and can be subclasses of other decorated or non-decorated classes.
## Copyright
borg_pod module by Andrew M. Hogan. (borg_pod © 2018 Hogan Consulting Group)
## License
Licensed under the Apache License.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file borg_pod-1.0.31.tar.gz
.
File metadata
- Download URL: borg_pod-1.0.31.tar.gz
- Upload date:
- Size: 13.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0415b8aadea569fce24856b8428884ffc2f2c43b9c74cda2ba2d64e2c723513a |
|
MD5 | 59f823b4c7557e4dc4eb3ff8e8fa06a9 |
|
BLAKE2b-256 | c5093499f0c743ab612ab3e7131ce65f79d39cbf8fb092aee80ac8fc20d42b6e |