Dependency injection with type hints
Project description
Wint - dependency injection with type hints.
Intro
Wint is a lightweight library that implements dependency injection via type hinting.
Installation
Just use pip:
$ pip install wint
How it works
There are a ton of approaches to DI, and this library implements only property injection.
When autowired
decorator is applied then class is inspected for all
annotated properties. If property has no value, then it is replaced with DependencyDescriptor
.
Dependency is resolved when attribute is accessed on instantiated class instance.
This behaviour allows to resolve dependencies in lazy manner with the downside of a side effect — instance receives a descriptor property that was not existed earlier.
Example
from wint import autowired, ContainerProvider
class Printer:
"""Abstract class for printing messages."""
def print(self, message):
raise NotImplementedError
class RealPrinter(Printer):
"""Implementation of `Printer` which uses `print` to output messages."""
def print(self, message):
print(message)
@autowired()
class PrintService:
# RealPrinter will be automatically injected on property access.
printer: Printer
def run(self, msg):
self.printer.print(f"{msg}, i'm running!")
if __name__ == "__main__":
container = ContainerProvider.get()
# Register RealPrinter as singleton implementation of Printer.
container.register(Printer, RealPrinter())
PrintService().run('hey')
$ python example.py
hey, i'm running!
Notes
This library is built on punq (MIT License) and uses it's vendored version.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file wint-0.2.0.tar.gz
.
File metadata
- Download URL: wint-0.2.0.tar.gz
- Upload date:
- Size: 6.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 96b5f93ea7aa2d01e47ad3e35144d0aaa913278507b1b059b007826f77f7f4dd |
|
MD5 | a0e5b33f9bfde863dd9f3fe3cf6ccac7 |
|
BLAKE2b-256 | 761a5612341055155268a97ca8f0be196e1d21d152c2ebc4c16b1788213fe929 |
File details
Details for the file wint-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: wint-0.2.0-py3-none-any.whl
- Upload date:
- Size: 23.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9a9184eece1fa3438fa86600d5dc3ecfb0ea8c54f41627b5914e3191fd316ffb |
|
MD5 | 7554c9762c43231d3032324d369fc637 |
|
BLAKE2b-256 | c8b981aab1d9fe2e405b51c25db5e5a5c9c8e5b701008f9c7055711126668706 |