Instrospective Factory pattern library
Project description
Overview
Python 3 object factory pattern implementation. The principal idea is keep it simple and readable, the main function provide a mechanism to factorize any object with introspection and don’t make the horrible code conditions commonly showed in factory examples:
def factory(type):
if type == 'MyClass':
return MyClass()
if type == 'MyOtherClass':
return MyOtherClass()
So, this module factorize any class from any module and works only in python 3 for python 2 don’t make any sense wasted time adapting differences between both version also is important know which this module only factorize classes or functions from modules so if can’t __import__ them, raises an exception, and if you want factorize class or function who is in the same module you need make it reachable to the __import__ statement
Installation
git clone https://github.com/engine-cl/ng_factory.git
cd ng-factory
python3 setup.py install
pip install ng_factory
Testing
python test/factory.py
Example
Create any module with your atomic class encapsulation with GOPS and then factorize object to inject the dependencies into the business logic like persistence layer or any another layer.
from ng_factory import factorize
class persistence(object):
""" assumes all code needed to connect db and commit data transaction """
def __init__(self, data):
import database
self._dbcon = database.get_connection()
self.data = data
def save(self):
self._dbcon.commit(this.data.persist())
class DataObjectTypeOne(object):
""" assumes all serializable function to format the data output """
@staticmethod
def persist():
return self.get_save_format()
try:
db = persistence(factorize(module=Example, object_type=DataObjectTypeOne))
except(ArgumentError, NonExistentTypeError, NonExistentModuleError) as e:
print("factory error {}".format(e))
raise
db.save()
Project details
Release history Release notifications | RSS feed
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 ng_factory-0.1.2.tar.gz
.
File metadata
- Download URL: ng_factory-0.1.2.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d0b677aa93c420319e5c7bbfa592fe02ec26e6eebe875ee04e004a8706e59dec |
|
MD5 | f7d30b338171d8f893c3d127bb18d8ec |
|
BLAKE2b-256 | 768f4ec7946e3a6666248f65391a93fcb898fb9dae8047519634b7d4f7dae229 |