Constructor injection for Python
Project description
diapyr
Constructor injection for Python.
This README is auto-generated, see project wiki for details.
API
diapyr
DI
Convenience import.
types
Convenience import.
diapyr.diapyr
types
def types(*deptypes, **kwargs)
Declare that the decorated function or method expects args of the given types. Use square brackets to request all instances of a type as a list. Use this kwarg to declare the type of result returned by a factory.
DI Objects
class DI()
add
def add(obj)
Register the given class, factory or instance.
all
def all(type)
Return all objects of the given type, instantiating them and collaborators if necessary.
__call__
def __call__(clazz)
Return unique object of the given type, instantiating it and its collaborators if necessary.
__exit__
def __exit__(*exc_info)
Discard all instances created by this container, calling dispose if they have it.
diapyr.start
diapyr.util
innerclass
def innerclass(cls)
An instance of the decorated class may access its enclosing instance via self.
singleton
def singleton(t)
The decorated class is replaced with a no-arg instance.
invokeall
def invokeall(callables)
Invoke every callable, even if one or more of them fail. This is mostly useful for synchronising with futures. If all succeeded return their return values as a list, otherwise raise all exceptions thrown as a chain.
bfs
def bfs(keys)
Breadth-first search starting with the given iterable of keys, intended to be used as a decorator.
If a function is decorated it should take an info object and key, and yield subsequent keys.
If a class is decorated, a new instance of it is used as info object:
The class should have a newdepth method that will be called before each depth, and a process method that takes a key and yields subsequent keys as in the function case.
The info object is kept updated with the list of currentkeys, current depth and the set of donekeys.
Note that the first currentkeys (depth 0) is exactly the passed in keys iterable, subsequent currentkeys will be non-empty lists.
The process function is only invoked for keys that have not yet been processed, i.e. unique keys.
When finished the decorated function/class is replaced with the last state of the info object.
setuphacks
getsetupkwargs
def getsetupkwargs(setuppath, fields)
Extract the kwargs passed to setup at the given path (typically some setup.py) that have names in the given fields.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file diapyr-37.tar.gz.
File metadata
- Download URL: diapyr-37.tar.gz
- Upload date:
- Size: 9.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6cb04e86b44de6ed00141fd80a6c0b6a88307778b3bb080b560d478b6baca65
|
|
| MD5 |
372bdb1d8be98e7b2445768d266de160
|
|
| BLAKE2b-256 |
ea943f354882af14c88571cc0903a149fca1e6754a8ad02082f6babc47388183
|
File details
Details for the file diapyr-37-py3-none-any.whl.
File metadata
- Download URL: diapyr-37-py3-none-any.whl
- Upload date:
- Size: 11.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6b29afa1b618415f67b6562d86f4f47926cc5e93f57df2ff5578497aef941b0
|
|
| MD5 |
c836e2d4e137c0ee6676abe6dc77719e
|
|
| BLAKE2b-256 |
2dcf75143b5a740edb00dfdecd9d39f03ebcb524224893d16dac4751c669940c
|