Dependency Injection Container Library
Project description
Injecta
Dependency Injection (DI) Container written in Python. Main component of the Pyfony Framework.
Installation
$ pip install injecta
Simple container initialization
(The following steps are covered in the ContainerInitializerTest)
To start using Injecta, create a simple config.yaml
file to define your DI services:
parameters:
api:
endpoint: 'https://api.mycompany.com'
services:
mycompany.api.ApiClient:
arguments:
- '@mycompany.api.Authenticator'
mycompany.api.Authenticator:
class: mycompany.authenticator.RestAuthenticator
arguments:
- '%api.endpoint%'
- '%env(API_TOKEN)%'
Then, initialize the container:
from injecta.container.ContainerBuilder import ContainerBuilder
from injecta.config.YamlConfigReader import YamlConfigReader
from injecta.container.ContainerInitializer import ContainerInitializer
config = YamlConfigReader().read('/path/to/config.yaml')
containerBuild = ContainerBuilder().build(config)
container = ContainerInitializer().init(containerBuild)
Use container.get()
to finally retrieve your service:
from mycompany.api.ApiClient import ApiClient
apiClient = container.get('mycompany.api.ApiClient') # type: ApiClient
apiClient.get('/foo/bar')
Advanced examples
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
injecta-0.8.13b1.tar.gz
(27.9 kB
view hashes)
Built Distribution
injecta-0.8.13b1-py3-none-any.whl
(57.6 kB
view hashes)
Close
Hashes for injecta-0.8.13b1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4aaf00d777f3a9913ce3afdca4077ca3e769b27c64e21507bbd39c5b731c793b |
|
MD5 | 7816dbfeb4123d143d1a2f112db332ae |
|
BLAKE2b-256 | 1575b81b15953ed82dca5f887e860c3b8d26be77ae1a194ce3dbe1ff795ca714 |