Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

dependency injection python

"""Example of dependency injection in Python."""

import logging
import sqlite3

import boto.s3.connection

import example.main
import example.services

import dependency_injector.containers as containers
import dependency_injector.providers as providers


class Platform(containers.DeclarativeContainer):
    """IoC container of platform service providers."""

    logger = providers.Singleton(logging.Logger, name='example')

    database = providers.Singleton(sqlite3.connect, ':memory:')

    s3 = providers.Singleton(boto.s3.connection.S3Connection,
                             aws_access_key_id='KEY',
                             aws_secret_access_key='SECRET')


class Services(containers.DeclarativeContainer):
    """IoC container of business service providers."""

    users = providers.Factory(example.services.UsersService,
                              logger=Platform.logger,
                              db=Platform.database)

    auth = providers.Factory(example.services.AuthService,
                             logger=Platform.logger,
                             db=Platform.database,
                             token_ttl=3600)

    photos = providers.Factory(example.services.PhotosService,
                               logger=Platform.logger,
                               db=Platform.database,
                               s3=Platform.s3)


class Application(containers.DeclarativeContainer):
    """IoC container of application component providers."""

    main = providers.Callable(example.main.main,
                              users_service=Services.users,
                              auth_service=Services.auth,
                              photos_service=Services.photos)
Comment

python Dependency injection

from dependency_injector import containers, providers
from dependency_injector.wiring import Provide, inject


class Container(containers.DeclarativeContainer):

    config = providers.Configuration()

    api_client = providers.Singleton(
        ApiClient,
        api_key=config.api_key,
        timeout=config.timeout,
    )

    service = providers.Factory(
        Service,
        api_client=api_client,
    )


@inject
def main(service: Service = Provide[Container.service]):
    ...


if __name__ == "__main__":
    container = Container()
    container.config.api_key.from_env("API_KEY", required=True)
    container.config.timeout.from_env("TIMEOUT", as_=int, default=5)
    container.wire(modules=[__name__])

    main()  # <-- dependency is injected automatically

    with container.api_client.override(mock.Mock()):
        main()  # <-- overridden dependency is injected automatically
Comment

python dependency injection

from some_package import A

class B:
	def __init__(self, a=A()):
    	self._a = a
    
    ...
Comment

PREVIOUS NEXT
Code Example
Python :: double for in loop python 
Python :: python tkinter 
Python :: parse email python 
Python :: qr scanner 
Python :: python all but the last element 
Python :: division in python 
Python :: django prevent duplicate entries 
Python :: python combine two columns into matrix 
Python :: How to Add a overall Title to Seaborn Plots 
Python :: pyqt5 hide button 
Python :: how to overlap two barplots in seaborn 
Python :: quicksort algorithm in python 
Python :: tensorflow Dense layer activatity leaklyrelu 
Python :: python - login 
Python :: push button raspberry pi 
Python :: convert string to int python 
Python :: timedelta format python 
Python :: Python NumPy expand_dims Function Example 
Python :: Create A Template In Django 
Python :: upgrade python version windows 
Python :: print() function in python 
Python :: roc curve 
Python :: python remove the element in list 
Python :: python iterating through a list 
Python :: how to print second largest number in python 
Python :: percentage plot of categorical variable in python woth hue 
Python :: test pypi 
Python :: import os in python 
Python :: convert python code to pseudocode online 
Python :: np.transpose(x) array([[0, 2], [1, 3]]) 
ADD CONTENT
Topic
Content
Source link
Name
3+3 =