plugable dependency injection and result processing
Project description
in-n-out
Python dependency injection you can taste.
A lightweight dependency injection and result processing framework for Python using type hints. Emphasis is on simplicity, ease of use, and minimal impact on source code.
import in_n_out as ino
class Thing:
def __init__(self, name: str):
self.name = name
# use ino.inject to create a version of the function
# that will retrieve the required dependencies at call time
@ino.inject
def func(thing: Thing):
return thing.name
def give_me_a_thing() -> Thing:
return Thing("Thing")
# register a provider of Thing
ino.register_provider(give_me_a_thing)
print(func()) # prints "Thing"
def give_me_another_thing() -> Thing:
return Thing("Another Thing")
with ino.register_provider(give_me_another_thing, weight=10):
print(func()) # prints "Another Thing"
This also supports processing return values as well (injection of intentional side effects):
@ino.inject_processors
def func2(thing: Thing) -> str:
return thing.name
def greet_name(name: str) -> str:
print(f"Hello, {name}!")
ino.register_processor(greet_name)
func2(Thing('Bob')) # prints "Hello, Bob!"
Alternatives
Lots of other python DI frameworks exist, here are a few alternatives to consider:
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
in-n-out-0.1.3.tar.gz
(31.0 kB
view details)
Built Distribution
in_n_out-0.1.3-py3-none-any.whl
(18.6 kB
view details)
File details
Details for the file in-n-out-0.1.3.tar.gz
.
File metadata
- Download URL: in-n-out-0.1.3.tar.gz
- Upload date:
- Size: 31.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31960b63d9b217f5f536b91f7e98dc8ff802d37d8a365de4c1d4fff139dd1ccb |
|
MD5 | a86a9d2a1efc7b13ac0af5b9964eb9ab |
|
BLAKE2b-256 | 16a7994db3e2a496a8f8c8e3ba1027924944b7d1a4299256e8750bf7c0cd3692 |
File details
Details for the file in_n_out-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: in_n_out-0.1.3-py3-none-any.whl
- Upload date:
- Size: 18.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e91880496920abbd6a8bb986da95965f9265c975bb80f020d52de4b1ab63fcf7 |
|
MD5 | 9b21fb6da1eb1702645712aa74e13c6b |
|
BLAKE2b-256 | dfa91ceee58ca8375114132d47be56ceb2bbe5548dc464b64f6700402ed8ca38 |