Skip to main content

Light ioc container for you

Project description

pyject

What is Pyject?

Pyject is a IocContainer for Python.

It helps implementing the dependency injection principle.

Installation

The package is available on the PyPi:

pip install pyjectt

Examples

from abc import ABC, abstractmethod
from pyject import Container

class DuckInterface(ABC):
    @abstractmethod
    def quack(self):
        raise NotImplementedError()

class QuackBehavior(ABC):
    @abstractmethod
    def quack(self):
        raise NotImplementedError()

class Sqeak(QuackBehavior):
    def quack(self):
        print("Quack_1")

class DuckA(DuckInterface):
    def __init__(self, squeak: QuackBehavior):
        self._quack_behavior = squeak

    def quack(self):
        self._quack_behavior.quack()

class DuckC(DuckInterface):
    def quack(self):
        print("Quack_2")

container = Container()
container.add_singleton(QuackBehavior, Sqeak)
container.add_transient(DuckInterface, DuckA)
container.add_singleton(DuckInterface, DuckC)

duck = container.get(DuckInterface)
duck.quack()

ducks = container.get_all(DuckInterface)
for duck in ducks:
    duck.quack()

print(container.get(DuckInterface) != container.get(DuckInterface))

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

pyjectt-0.1.4.tar.gz (7.6 kB view hashes)

Uploaded Source

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