Skip to main content

Instrospective Factory pattern library

Project description

https://travis-ci.org/engine-cl/ng-factory.svg https://codecov.io/github/engine-cl/ng-factory/coverage.svg?branch=master https://www.quantifiedcode.com/api/v1/project/f57003898f714494b2a6f2bb66516a18/badge.svg

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ng_factory-0.1.0.tar.gz (2.8 kB view details)

Uploaded Source

File details

Details for the file ng_factory-0.1.0.tar.gz.

File metadata

  • Download URL: ng_factory-0.1.0.tar.gz
  • Upload date:
  • Size: 2.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for ng_factory-0.1.0.tar.gz
Algorithm Hash digest
SHA256 da7ab0184dc29583662ff6aadc8d794d510ddb35d8b2ee0f20bed07dab078883
MD5 ae253df69be352de6837cd2279735643
BLAKE2b-256 c12466203e128af9485f09950a5886251759366e60aa73df73299d046771cc15

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page