Skip to main content

Yet Another Python Dependency Injection

Project description

YAPYDI: Yet Another Python Dependency Injection

Why? Just need a simpler DI, checked some existing ones, not a fun, so developed this one.

Why DI in python? Well, it is NOT for everyone. It is always an good idea for loose coupling for user and implmentation.

How to use it

Install

pip install yapydi

Basic usage

from yapydi import enable_di, bean, injected, Injected

@bean()
def world() -> str:
    return "World"
    
@injected
def hello_world(world : str = Injected[str]):
    print("Hello {}!".format(world))

@enable_di
def main():
    hello_world()

if __name__ == "__main__":
    main()

Advanced usage

from yapydi import enable_di, bean, BeanRegistry

@bean(name="my_bean_name")
def world() -> str:
    return "World"

def hello_world():
    registry = BeanRegistry.get_instance()
    print("Hello {}!".format(registry.one_by_name("my_bean_name")))

@enable_di
def main():
    hello_world()

if __name__ == "__main__":
    main()

Check more details inside * injection_test.py * please.

How does it work

Doing bean definition and injection with annotation power. @bean() annotation will get the bean to be registered. @enable_di will init the beans, and @injected will be hooked so the injection can happen. BeanRegistry is the only place for retrieve beans by name type or both.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

yapydi-0.1.3-py3-none-any.whl (26.2 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