Skip to main content

A dependency injection library for beginners

Project description

junkie

Junkie is a dependency injection library for beginners. It is easy to use and has no magic hidden state.

Core features:

  • injects instances via parameter name and if not available via type annotation
  • handles context managers when creating objects
  • provides simple configuration with dictionaries
  • can be easily combined with any other object instantiation approach
  • supports a flexible way to define scopes

Example:

from junkie import Context

class App:
    def __init__(self, text: str):
        self.text = text

    def greets(self) -> str:
        return self.text

context = Context({
    "greeting": "Hello",
    "name": "Joe",
    "text": lambda greeting, name: f"{greeting} {name}!"
})

with context.build(App) as app:
    assert app.greets() == "Hello Joe!"

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

junkie-3.0.0.dev1.tar.gz (5.1 kB view hashes)

Uploaded Source

Built Distribution

junkie-3.0.0.dev1-py3-none-any.whl (8.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