Skip to main content

Dependency injection and inversion of control and library for simple service handling

Project description

IOCynergy

Python module for IOC container using dependency injection (uses python 3+ type hints)

Easy way to initialize your services

class TestClass:
    pass

class ParentClass:
    def __init__(self, test_class: TestClass):
        self.test_class = test_class

instance = cynergy.get(ParentClass)  # Returns TestClass initialized as singleton

print(type(instance))  # ParentClass
print(type(instance.test_class))  # TestClass

Access to your configuration from any service

@arguments(db=Config('db_name'),host=Config('hostname')
class DbConnector:
    def __init__(self, db: str, host: str):
        self.db = db
        self.host = host

cynergy.initialize(MemoryConfig({
    "db_name": "LocalDbName",
    "hostname": "localhost"
}))

instance = cynergy.get(DbConnector)

print(instance.db)  # LocalDbName
print(instance.host)  # localhost

** You can implement your own configuration provider (for exmaple you can create DbConfigProvider which provides your settings from the db)

Manually register special types

class Original:
    pass

class Other:
    pass

cynergy.register_class(Original, Other)

instance = cynergy.get(Original)

print(type(instance))  # Other

Register collection of services

class HandlerBase:
    pass

class SomeHandler1(HandlerBase):
    pass

class SomeHandler2(HandlerBase):
    pass

class SomeService:
    def __init__(self, handlers: List[HandlerBase]):
        self.handlers = handlers

cynergy.register_many(HandlerBase, [SomeHandler1, SomeHandler2])

instance = cynergy.get(SomeService)

print(type(instance.handlers))  # list
print(type(instance.handlers[0]))  # SomeHandler1
print(type(instance.handlers[1]))  # SomeHandler2

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

cynergy-1.0.0.tar.gz (4.3 kB view hashes)

Uploaded Source

Built Distribution

cynergy-1.0.0-py3-none-any.whl (2.0 kB view hashes)

Uploaded Python 3

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