Skip to main content

Dependency injection framework for Python

Project description

https://raw.githubusercontent.com/wiki/ets-labs/python-dependency-injector/img/logo.svg

Latest Version License Supported Python versions Supported Python implementations Downloads Downloads Downloads Wheel Build Status Coverage Status

What is Dependency Injector?

Dependency Injector is a dependency injection framework for Python.

It helps implementing the dependency injection principle.

Key features of the Dependency Injector:

  • Providers. Provides Factory, Singleton, Callable, Coroutine, Object, List, Dict, Configuration, Resource, Dependency and Selector providers that help assembling your objects. See Providers.

  • Overriding. Can override any provider by another provider on the fly. This helps in testing and configuring dev / stage environment to replace API clients with stubs etc. See Provider overriding.

  • Configuration. Reads configuration from yaml & ini files, pydantic settings, environment variables, and dictionaries. See Configuration provider.

  • Containers. Provides declarative and dynamic containers. See Containers.

  • Resources. Helps with initialization and configuring of logging, event loop, thread or process pool, etc. Can be used for per-function execution scope in tandem with wiring. See Resource provider.

  • Wiring. Injects dependencies into functions and methods. Helps integrating with other frameworks: Django, Flask, Aiohttp, Sanic, FastAPI, etc. See Wiring.

  • Asynchronous. Supports asynchronous injections. See Asynchronous injections.

  • Typing. Provides typing stubs, mypy-friendly. See Typing and mypy.

  • Performance. Fast. Written in Cython.

  • Maturity. Mature and production-ready. Well-tested, documented and supported.

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


class Container(containers.DeclarativeContainer):

    config = providers.Configuration()

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

    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')
    container.config.timeout.from_env('TIMEOUT')
    container.wire(modules=[sys.modules[__name__]])

    main()  # <-- dependency is injected automatically

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

When you call main() function the Service dependency is assembled and injected automatically.

When doing a testing you call the container.api_client.override() to replace the real API client with a mock. When you call main() the mock is injected.

You can override any provider with another provider.

It also helps you in configuring project for the different environments: replace an API client with a stub on the dev or stage.

With the Dependency Injector objects assembling is consolidated in the container. Dependency injections are defined explicitly. This makes easier to understand and change how application works.

https://raw.githubusercontent.com/wiki/ets-labs/python-dependency-injector/img/di-readme.svg

Visit the docs to know more about the Dependency injection and inversion of control in Python.

Installation

The package is available on the PyPi:

pip install dependency-injector

Documentation

The documentation is available here.

Examples

Choose one of the following:

Tutorials

Choose one of the following:

Concept

The framework stands on the PEP20 (The Zen of Python) principle:

Explicit is better than implicit

You need to specify how to assemble and where to inject the dependencies explicitly.

The power of the framework is in a simplicity. Dependency Injector is a simple tool for the powerful concept.

Frequently asked questions

What is the dependency injection?
  • dependency injection is a principle that decreases coupling and increases cohesion

Why should I do the dependency injection?
  • your code becomes more flexible, testable and clear 😎

How do I start doing the dependency injection?
  • you start writing the code following the dependency injection principle

  • you register all of your application components and their dependencies in the container

  • when you need a component, you specify where to inject it or get it from the container

What price do I pay and what do I get?
  • you need to explicitly specify the dependencies

  • it will be extra work in the beginning

  • it will payoff as the project grows

Have a question?
Found a bug?
Want to help?
  • ⭐️ Star the Dependency Injector on the Github

  • 🆕 Start a new project with the Dependency Injector

  • 💬 Tell your friend about the Dependency Injector

Want to contribute?
  • 🔀 Fork the project

  • ⬅️ Open a pull request to the develop branch

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

dependency-injector-4.27.0.tar.gz (693.7 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

dependency_injector-4.27.0-pp37-pypy37_pp73-win32.whl (274.4 kB view details)

Uploaded PyPyWindows x86

dependency_injector-4.27.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl (494.0 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-4.27.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (451.8 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-4.27.0-pp36-pypy36_pp73-win32.whl (274.4 kB view details)

Uploaded PyPyWindows x86

dependency_injector-4.27.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (494.0 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-4.27.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (451.8 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-4.27.0-pp27-pypy_73-win32.whl (310.3 kB view details)

Uploaded PyPyWindows x86

dependency_injector-4.27.0-pp27-pypy_73-manylinux2010_x86_64.whl (494.0 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-4.27.0-pp27-pypy_73-macosx_10_9_x86_64.whl (455.2 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-4.27.0-cp39-cp39-win_amd64.whl (438.7 kB view details)

Uploaded CPython 3.9Windows x86-64

dependency_injector-4.27.0-cp39-cp39-win32.whl (360.8 kB view details)

Uploaded CPython 3.9Windows x86

dependency_injector-4.27.0-cp39-cp39-manylinux2010_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

dependency_injector-4.27.0-cp39-cp39-manylinux2010_i686.whl (3.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

dependency_injector-4.27.0-cp39-cp39-manylinux1_i686.whl (3.2 MB view details)

Uploaded CPython 3.9

dependency_injector-4.27.0-cp39-cp39-macosx_10_9_x86_64.whl (670.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

dependency_injector-4.27.0-cp38-cp38-win_amd64.whl (439.1 kB view details)

Uploaded CPython 3.8Windows x86-64

dependency_injector-4.27.0-cp38-cp38-win32.whl (361.0 kB view details)

Uploaded CPython 3.8Windows x86

dependency_injector-4.27.0-cp38-cp38-manylinux2010_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

dependency_injector-4.27.0-cp38-cp38-manylinux2010_i686.whl (3.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

dependency_injector-4.27.0-cp38-cp38-manylinux1_i686.whl (3.6 MB view details)

Uploaded CPython 3.8

dependency_injector-4.27.0-cp38-cp38-macosx_10_9_x86_64.whl (666.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

dependency_injector-4.27.0-cp37-cp37m-win_amd64.whl (411.7 kB view details)

Uploaded CPython 3.7mWindows x86-64

dependency_injector-4.27.0-cp37-cp37m-win32.whl (346.5 kB view details)

Uploaded CPython 3.7mWindows x86

dependency_injector-4.27.0-cp37-cp37m-manylinux2010_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

dependency_injector-4.27.0-cp37-cp37m-manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

dependency_injector-4.27.0-cp37-cp37m-manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.7m

dependency_injector-4.27.0-cp37-cp37m-macosx_10_9_x86_64.whl (642.1 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

dependency_injector-4.27.0-cp36-cp36m-win_amd64.whl (410.9 kB view details)

Uploaded CPython 3.6mWindows x86-64

dependency_injector-4.27.0-cp36-cp36m-win32.whl (349.8 kB view details)

Uploaded CPython 3.6mWindows x86

dependency_injector-4.27.0-cp36-cp36m-manylinux2010_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

dependency_injector-4.27.0-cp36-cp36m-manylinux2010_i686.whl (2.8 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

dependency_injector-4.27.0-cp36-cp36m-manylinux1_i686.whl (2.8 MB view details)

Uploaded CPython 3.6m

dependency_injector-4.27.0-cp36-cp36m-macosx_10_9_x86_64.whl (692.1 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

dependency_injector-4.27.0-cp35-cp35m-win_amd64.whl (381.4 kB view details)

Uploaded CPython 3.5mWindows x86-64

dependency_injector-4.27.0-cp35-cp35m-win32.whl (323.0 kB view details)

Uploaded CPython 3.5mWindows x86

dependency_injector-4.27.0-cp35-cp35m-manylinux2010_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

dependency_injector-4.27.0-cp35-cp35m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

dependency_injector-4.27.0-cp35-cp35m-manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.5m

dependency_injector-4.27.0-cp35-cp35m-macosx_10_9_x86_64.whl (634.4 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

dependency_injector-4.27.0-cp27-cp27mu-manylinux2010_x86_64.whl (2.3 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

dependency_injector-4.27.0-cp27-cp27mu-manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

dependency_injector-4.27.0-cp27-cp27mu-manylinux1_x86_64.whl (2.3 MB view details)

Uploaded CPython 2.7mu

dependency_injector-4.27.0-cp27-cp27mu-manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 2.7mu

dependency_injector-4.27.0-cp27-cp27m-win_amd64.whl (425.6 kB view details)

Uploaded CPython 2.7mWindows x86-64

dependency_injector-4.27.0-cp27-cp27m-win32.whl (354.0 kB view details)

Uploaded CPython 2.7mWindows x86

dependency_injector-4.27.0-cp27-cp27m-manylinux2010_x86_64.whl (2.3 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

dependency_injector-4.27.0-cp27-cp27m-manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

dependency_injector-4.27.0-cp27-cp27m-manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 2.7m

dependency_injector-4.27.0-cp27-cp27m-macosx_10_9_x86_64.whl (619.0 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

Details for the file dependency-injector-4.27.0.tar.gz.

File metadata

  • Download URL: dependency-injector-4.27.0.tar.gz
  • Upload date:
  • Size: 693.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency-injector-4.27.0.tar.gz
Algorithm Hash digest
SHA256 f485013ddb763c5e49135145a8bd7a1cad53c031e996656798d1e12c0c8b8266
MD5 00bb298e886d543dc2b4067e62dc80ec
BLAKE2b-256 19ef25f2412e0b8629ac6f09905bf2a3e076ce44f94ef2adb180ed5652b75ff0

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-pp37-pypy37_pp73-win32.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 274.4 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 4cd86be8593637fb9e933e243c462a2980a5189773fff3b8f2ff09f98bc8d9f1
MD5 a23e9bb5379e882a7283f5c0abc291e9
BLAKE2b-256 dba6eabedbbded6f93f79a6589254dabb65c3f5bb0b10d7e150e8cbb4ef6a4d3

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for dependency_injector-4.27.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f34f3bf875848c145a7d454f17eaae503fbef2dde264e8207fcc3c5660cc83fe
MD5 26172b419086d17b351a6311a38a2a7d
BLAKE2b-256 ae17ffca21da1ceba6bb3b64f10f04ede501ef0d65efe5c1ee78be3f35e8d5b7

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-pp37-pypy37_pp73-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for dependency_injector-4.27.0-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9456e626dbabcf4d694ed19367e0395f7fcc0c475b90429ad0d6a0a83ceb2609
MD5 14b3f35d76d1087a82612d13dd2487e7
BLAKE2b-256 79012a866ef940caeac8319863e816799df617fa7a7a8c341dab6faabbc9583e

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dependency_injector-4.27.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0907a533567efc0f3106d7ff799f4e8d0bbdec5d7be8d3ff8d540270e81ae83d
MD5 c69396833c572cc048637a0d09df368d
BLAKE2b-256 96588b22e585c95b7bd29842e12149d051d0762793f738d2664cff75b8d267b7

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-pp36-pypy36_pp73-win32.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 274.4 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 94227a64ed8926cb86f11274ed1689b28e86915992002f498c273126f325d195
MD5 17f7c2935095a7b268152b622570b59b
BLAKE2b-256 a2094f5f8c5ab5ac4d5d867f21d72747411290aad37b1d66a05efa6fbd3ab421

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for dependency_injector-4.27.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 82e0087c98ec502183008290c990a1361b96fb82c5a0e1cf506a23fa5a40b12c
MD5 543bb7af30e50febbe35233e49e8713c
BLAKE2b-256 22d43616da5437c655b7ee15ec88171d0778a7db74fbe1dad44049014617fa67

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-pp36-pypy36_pp73-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for dependency_injector-4.27.0-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6163d91a4ca8c75e3fad4fefc8a9975868dc79939d4f9a691805cb46405e2050
MD5 9f57f4ba859ad0de18179b0ad778e332
BLAKE2b-256 1b8a17fcb9087a0f9db947cc0a20c08e7db10e9f35b0ad55e201320a0f0d012c

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dependency_injector-4.27.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1d27cc61f01b73bec625215113bab5e2d15bc868581cc4acaa2d43b975f2107c
MD5 af31bcd1acc8a3d973de3d76b25079e5
BLAKE2b-256 5274a1c5593a0da960bd5cc1a8187df0d5b8b442b92975d237e2784e63ee10ee

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-pp27-pypy_73-win32.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-pp27-pypy_73-win32.whl
  • Upload date:
  • Size: 310.3 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-pp27-pypy_73-win32.whl
Algorithm Hash digest
SHA256 d043b2259333c6040dfe772cc4e9bf40702dc7592e330c9bbc3e1cc7db671504
MD5 ed70067d2810e4efe5c8a4ef6d353eaa
BLAKE2b-256 4b2ca1bd4b916b9eddc5d53fe4a3dbac78dab27e4ffc57c29d93ffcd4262f6b1

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-pp27-pypy_73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 494.0 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7f6a61f1e79479ce80d4d425c63160faf8ef4873a94ef36611de19ce01806371
MD5 15b1b1c9c0ecfd3efaf2176c03727b41
BLAKE2b-256 f78996944cc90006c593a7c8d7589fde707c8d31af727f6fbbf3752aad110a7c

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-pp27-pypy_73-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for dependency_injector-4.27.0-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 56cdb3f9e91d08285d267d6b2e3d4b17aef00935f2ebe73f099c748f785f2835
MD5 8ef5a6d6c2ce2213a25c088bfd2ff42a
BLAKE2b-256 d409c610dbcea95e4182f230a1a011e3742ec12b6c1823b3ec0afe1b52dafd9b

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-pp27-pypy_73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 455.2 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8e19a3acde635c578dec69bcb07af6bb4874c9805cff110c791ae2a7c0109ff6
MD5 d0b4c8dfd47148f5a62bc49e83abe1c5
BLAKE2b-256 db6a7bc600b01b0fce9c34ff5599e9a11cba53fe65cd11264b7f82beaea8e3fd

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 438.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8ed9fd9684a6321583b4b10493093581486e76b7ef42168eaa68c2cd0763e07a
MD5 3ef7779dcb68b81633bc0780031b2147
BLAKE2b-256 f38d132982db8d301fcae40ba5ea6e3e13e2650276e7a8eb8d7305489922ddad

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 360.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 363f21d01d8af3919ed5562da970190d2d8a4bd7cea24e9319c4c4c458cc9fba
MD5 0cc2302b455d073256d82786fb8f40d8
BLAKE2b-256 2e3fe1b141b5c59fd25097f65a625569c373d79f071e5a7e51005c79e0adc447

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dependency_injector-4.27.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 630f23b19a4be6b6caf6225dfeeb541b0ed04b91f66662fa99958e8f152ade5c
MD5 bd899ece40ee59646a1634d8f8c2fb1a
BLAKE2b-256 68aa2fd5e7ba258cb6f766205902b587cd6b8e2193206706cb4b90d0705d26a5

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 22f440da60959414d2ee75b77128d5b6dea23389560f84155188bd8d2ab13b01
MD5 d95c6a8430438f91737bb137caf1301d
BLAKE2b-256 2b8e4559395d90a48781f005bddaae85f82a10b64bbe3cfa1520509c277ba1d0

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f13ebe4983b6314522e99e36e44f0bb1da24fdbdb17f750a97f9fc56c7c86302
MD5 005e89df20d8f94e1fcd41f77028cebb
BLAKE2b-256 c511fe16ea43bf56c0e246a8da1251d8d3f40bb815ccab90429b5780f2945e3c

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 22a27da9acc0c2c445140cf61c39a7ad989903bf151a8a0769b6c9d4615b7e2c
MD5 c90f14459c8ffdd19c8d8910cd56ec35
BLAKE2b-256 69d88e2d48195687c12d1f61242aef22d410605baf1838bac506363e13501683

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 bb494807fac234285158e3610c894622b75e5c7d280e3ded7c579de30c5f8ddc
MD5 0deaaa2042d62f90984833f93c80db97
BLAKE2b-256 48e9c122174f56576ae392ad795e3955db66e56605a60dc60281da112460bc97

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 670.3 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0f8d1663c9f8f9bd0d264f13db8d34f67988c658f2415b2c8bc4294bb66cebc6
MD5 42e30422a0aeeeb1401134682608fd43
BLAKE2b-256 da92ca60ffa4d334a0c2b952fb0b0ef373ca68de6d4d433f48209d056f0373f5

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 439.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c4fb5d62555e0f7a2ce2366db244ef6f572ed3ef938b044be7984c5a4e8c9e20
MD5 5fb3dcd1f0047192da4ad92072923e49
BLAKE2b-256 1d39978d2003f402259842b61ea05d6fcc200c2604cfb44c69976a4a17fd167f

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 361.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2dd60030b20fff23ccf071cc07214ca4e4b3eeb4a677975e802845dc40808689
MD5 e87979eed7fec53f96e4f075219727d8
BLAKE2b-256 ac66560b4d1555d2f48f45b03d6ad8731403d91f6b1a56d87b9f2a55aa03e202

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dependency_injector-4.27.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ee61cfe7b8487b09dc63abeaaed56001ce52c80647e1291cf2eeba55ec1095f
MD5 e2ea9aee325370aa94281300099700dd
BLAKE2b-256 322098135568ea6bdc90bc48f6557b22b9748af86650f95ae7f979657cbf3e60

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a9431f7acc53edb1dd9d4847501acbf39a0fb64a17319da586e88e76e8a78fd5
MD5 85d48e4ba0b59b59e4b6efa4d99b1bc4
BLAKE2b-256 d5f63bc81ecf53a03b84d39b55a14239cfa7a50ed62a7efb125aa845f37f84fd

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 02d94ee634fc081807cf355468205d72ae0ab8d784adf64e442ad20cb82217f1
MD5 a45b949daade64a362ff4fcc272743f2
BLAKE2b-256 c98c75970ae77647db14008db0a9e67ea81457e595dd42087615d150e6f00c2d

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 42c167f3b6bf745d3fdfbf53ac2755a0a2a97bc18821614921715b79708cb38d
MD5 a76c1761d0f9ba41b74b90e5e8180376
BLAKE2b-256 b91c6abce1ecbc3d3973a8cf5b2284e52149973e36805a3597d00ba31306ae30

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ba16d69111aa69bf4090401182e5620a2891e03847fb14a314e88ee5643e0043
MD5 e5f127b0ca7125cf0805119a96a84438
BLAKE2b-256 1e825862ef15281546baea481df2b3b4666daad50296a60dce745a0b74234aaa

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 666.9 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a3fcadf8fe2f478a11e51d349fa46c996af4e46621b9c084e6ad91185a247c70
MD5 d329a8ed036071fb45f1db1bb90cefee
BLAKE2b-256 56eafda288f41620b4a059e7f2ee0a76b4f50f829e77d9dbe3cd54d8b5a4f5fa

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 411.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 746235be3c626d4a872964e89b6bda5f3439fcaeee9e88baebb36215af2a2332
MD5 ff79c381d44383223cdb50d5835989a5
BLAKE2b-256 2f56230660edaf756ade1aac3f69e690c878647be2a2d551fdc2a542e5370258

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 346.5 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 65470e12e87f12939c5f2bbed7edb4dc3e50b3adca3314c7cd647f2062111474
MD5 be64bdaa7d8a4fcfef3f105a76c63ac1
BLAKE2b-256 c93682a31e0f3456fdc4b46f2b2668e3a68c62858b34fba0abf0d8566440dc57

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dependency_injector-4.27.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 43d5974be55f0a2a8c27e6360edc30e4cbc55794d013cb145e3a6b71f74743fc
MD5 286bfe35c68b6f7814f3bae34925214c
BLAKE2b-256 0f6c0d3072569c8ab3eac254371ea51bd1cf75db27831522517d8f87a8ec8de4

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bd5957cb1af3de80fd29e7821bd5d3cf06b90fec530f0312773e5d3dc34cfa1c
MD5 04e8b1efebdedfd87d2090e8e0e31149
BLAKE2b-256 57246c2d4f604c73c9111ab5ea6c6d63aa62a8661e445ad378369be9a5c19df1

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f9c6561da93beb0ad97fe63d375ed074c074dabb4d321d30f49d3cb908b0e193
MD5 71418a66518ed88fbeb1f1d8db98c1a7
BLAKE2b-256 b58d5da7900d4318f47ecc761087e85c180685890a3368b7a89eb55e278d493e

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 afede79549e30f9f37ecc62197716b32e07b464d601d68035aa6c848c45c0c31
MD5 8262215558d73cec37f46cf053f3d8b2
BLAKE2b-256 2a8a268d364a62d67f6adbf14f2b2695a6086f1535d3339d9372519c6ae04b03

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8361b9a2e0c482da0e4d78581616eb997c6a55be712e1f18c9ddda42656f834a
MD5 0cce50560b2903ca7d141a2733cf0c1d
BLAKE2b-256 3a39899eb995ae9d3b5cfe5d3c1df450e41fbdceaf55f099f03705bd1a05505e

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 642.1 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 da03f1bf61b673bd52d58d8c575aac651a65a84a9003bf964550dcc954ea1357
MD5 59aba71d85dad7dae68044d3b07d09e3
BLAKE2b-256 0b1b134490d99a509ebbe03786164ee1dc390f7d35b86f84d378b632fcbdb976

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 410.9 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4eadce3a5049af40555dcb746b95626d6bb8b3afaef5899bae6906fbf7091e98
MD5 98dfb31420d8bd1dc64dff52afbc6054
BLAKE2b-256 c3d114dff6a502de62d008696a6ac2911d6f2abfbb5a18a0877e685faecee88e

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 349.8 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 3e93eb1ade4f5544f5ae8b0e9607b5fb0c6174c054462cea744c47f69bc9ee2f
MD5 0deeca721259e1a9a653a34d115ea652
BLAKE2b-256 aa4fba2905171404cadf713539caa6715db6ae906c5686e30bad155ede3be46b

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dependency_injector-4.27.0-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18b567d1eb9b2ad0d943edaedadef5328c0af3f3d1a19f33538b80dcf046c7b0
MD5 5dabe5b03d40bd95edff4aaf51dd2417
BLAKE2b-256 217997f1fe8b97b1c018f1719ea3fff19021820ba07bb1f38a81376c2592a21d

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 881c484bf305fcd00eacb074e64add1a2e3e4c964814e4a755a6cdd06c188c31
MD5 b651ecde2f851b796331b530a998c53d
BLAKE2b-256 e5ea068b17337b44b54bb7438821fcec6f263f57dfaa00612cecbfec5f2367b5

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 61aa77d56034b8d2cb08025d77d05bb2dba297320c56094dadd6c5bd092adb8f
MD5 7725a9a713ccded513c421669a86f248
BLAKE2b-256 f3b8fe6c2d157322298b002d343eb8684d4f3b718b0080a400bfaa62b926ad33

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5f9fcc35c455b6a6fc7100947cbeac47c48b8832c962d5abff8706424a6da9bc
MD5 d880474dc6d750a9ea6ac9d183f630ad
BLAKE2b-256 fcf9eb11e6d9dac9f5d2e80dd892bca54053df0263e57e09738e1542b32441ec

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b5095c878236626359ad603da33a5a36f846dde4c2f8924a1ce6177e9d4a330e
MD5 81f74046ff97e69a3f6ac6f9c5fad1ac
BLAKE2b-256 2b1997ceaab242fb659e3e2332f2a1f67b62f3ff664f08a1b06d7e7de1538036

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 692.1 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fcfa8648c04e2e89d9cbd931345e59ecb134a76ef80a38879bf2b6cfa9d4f982
MD5 1da233809b4c79ddf8a26a9b0b164298
BLAKE2b-256 ee06d8dcc1eef95b02dda820bf5d7d63be0d0f50f8c51e90a1a65d8f98d7b71d

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 381.4 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 4319d7db5786605196f7488ee30a16bee4cf4d5c0531046329fa6bbdf8440cee
MD5 32ae18ba98fd9b3c91e5fe65e180f322
BLAKE2b-256 84ce6af8569e88a250421caafef461877074ab28efa2e24c82d58d61389af86e

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 323.0 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 9d80e8dfc1698bb241805a97871bf05d8e3aea59ab6e0eb800d59277efc5909d
MD5 2e8c2033ea07151e48392ef15bc1855c
BLAKE2b-256 9c0c6ba375c134ec35ee96f8f2650a267d70c05c1846ea2f7ef56686d150a8f4

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp35-cp35m-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dependency_injector-4.27.0-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d229bb8e95f312db8f41f769b144f4b9402963ca804814c184954c3466d918e
MD5 8f8e409609cae3947dafafb4488fcbc5
BLAKE2b-256 afea4028809ec82554430e7747ab3641855fddc71c2e844f63a49e50052cc904

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5c4f4401572525246f6fab36a4bf5436be3ed2b8a3b2f8a84227de8f32db43c5
MD5 b0d0241e8481016390bac6d94038bcb3
BLAKE2b-256 755415c0cba3ac108aecbe495e605e2602d5c935903f33cf1a8307579afde168

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8842bad38b01a79cc695a2425107398daec884f3c9b4c0dcd91b01c815062e90
MD5 ffe67b26403259134f51f447dfb3212d
BLAKE2b-256 d610aa581b478e116244df940856b469fcfa7fb494ad1fffdc5f72167fdf37f5

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4f165f4040a4b6d2ebd177d445d5e77ce7909fd80f73b0465491b24033ab1fbd
MD5 daf4e62a48b13b0daa441dbd111ccb1c
BLAKE2b-256 d36f1f7ab4a7a53192dabe0c85e44f1e38a311ce699a051123ec3f6facaad62f

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 bac97ac6e2a2ca829b53f6124b796bfdbb523f32b0e97da35dd76a27bb44ace9
MD5 ec242ac87286da88530f2bb4f3fee2a3
BLAKE2b-256 4d25e082a15681fb3e7d758bfa5bb73005f7dd0c3dda45aeda2bd750fb7291af

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 634.4 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bc819e59d74c0fa3c1a48e9002d994021c19868f815db80c0fa9065d5644867a
MD5 c160bd32fffb87ebb0f1432f5715b95b
BLAKE2b-256 4d1a825dca195c6eff2c2e4025a1233487642e4affe5819e8799cb5b4870a3d8

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0d207f22cc1cfbfdca9d758cb0dc86caf49de7d36ad9b954f9a778e64dc0eaab
MD5 c06d6f54f4416aceb29ea33df2d2d99f
BLAKE2b-256 882b31e354f8da85dd0fc6cd329a316eba4a602a37110c2a9681c319c5bd37c6

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 788f8c9e43f6946c329070b9fc6afd23fef58b82951a3fd0abd65ea2bd08583a
MD5 c14c3e4697b695c6a22ede91feb881bf
BLAKE2b-256 23bfd90cf2c5f3288c050cfc59c0cd7e132ae49ce01a5a2fdd171532946b49f7

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for dependency_injector-4.27.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f0ad6b236cf63d2119db85f31011b9816b0e467d7ee2b6d5f8adb1171b8781fa
MD5 0e5bb39c191facb8c8a5dcf38a4295ce
BLAKE2b-256 dbadb1fe3b764b3f58477845f883b916dad7937597f45cc5c9260bc351a512a9

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 bec5f75cb02fd030834278382365051550a981764f648976fccd218d31569e8c
MD5 e1ec3c8e50cfe3e4fedbfd6e0e8e7678
BLAKE2b-256 8ff458fa78192ab10ab4789b84b0ef29992846f969342cc875cb80b8069acb94

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 425.6 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 05f87362d9aa35464d3fce78287715dd6e3f3d0a61e8bf9cfd730670f3c7c739
MD5 2c4b7ccb45ca79fc2dbbd085313d7879
BLAKE2b-256 0dc451e21b1a67f6fbbe43172629bd160c8e672e9789daa0ddeaad2db59f99cb

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp27-cp27m-win32.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 354.0 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 c1aebe953e4e941505bcbc1c5fafd534e2f924b6478658e1cc3d99fa65b8f307
MD5 cd429805983f958688dad33715e9223c
BLAKE2b-256 8dd4ae665092a7c26268c01cd34e27ee9fbd5aa62a61ce752c5b2666358ca9b4

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1d0c2f2c9d1e9a908a610595ab8e375dc130f4e92f28b66cf0e05abde43f4048
MD5 f57591613df3fe95f4078df844519ee8
BLAKE2b-256 9bbb24de58924690c36f4ac8353b2998595f1c3a06da1682958f6a93215adcac

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2c5358076ef0df4a94564e1d74424ea7e8ca777fd7ba949fdb8e5964ad06278f
MD5 84a7801036372034261e5e692f0829a6
BLAKE2b-256 99260546c06da43fcac8fad75ed082855ddce0911db9095f4ba80ca01a30ba4c

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 78d26e6877db27e1e32060897e8131445f7aaf4426f5671726a7150ddf31e4d6
MD5 ce435b267d9f7a7ccab0f9ceb026e86d
BLAKE2b-256 6742ee4aebfcc507b7cbe2150c968bf79ab8bac490dbaba45223db7dd52ce453

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 aac1047598fa101bd6f56b823d175d2ab6f877cace22563d89bb80de966e0aa5
MD5 0e49005198423347981c0bcda41c9b52
BLAKE2b-256 99da16a31f4bfd8c1c6f148a917683be7be761a388eca8f5a600988172903f61

See more details on using hashes here.

File details

Details for the file dependency_injector-4.27.0-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: dependency_injector-4.27.0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 619.0 kB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.2

File hashes

Hashes for dependency_injector-4.27.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a11b6ead9f8d62af2ea93c5f9c28a0b8c97b8f4fcd430b4e4f1e95d510938b7d
MD5 dc6ff8700f844a6a68e58d7027d2fdea
BLAKE2b-256 4e80a79e5b7029ed6c22545a20031daf7e062a8499b74d37e96fac01c0678f09

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page