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.32.1.tar.gz (743.8 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.32.1-pp37-pypy37_pp73-win32.whl (294.7 kB view details)

Uploaded PyPyWindows x86

dependency_injector-4.32.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl (528.6 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-4.32.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (487.7 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-4.32.1-pp36-pypy36_pp73-win32.whl (294.7 kB view details)

Uploaded PyPyWindows x86

dependency_injector-4.32.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl (528.6 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-4.32.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (487.7 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-4.32.1-pp27-pypy_73-win32.whl (335.8 kB view details)

Uploaded PyPyWindows x86

dependency_injector-4.32.1-pp27-pypy_73-manylinux2010_x86_64.whl (530.1 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-4.32.1-pp27-pypy_73-macosx_10_9_x86_64.whl (491.1 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-4.32.1-cp39-cp39-win_amd64.whl (470.0 kB view details)

Uploaded CPython 3.9Windows x86-64

dependency_injector-4.32.1-cp39-cp39-win32.whl (385.9 kB view details)

Uploaded CPython 3.9Windows x86

dependency_injector-4.32.1-cp39-cp39-manylinux2010_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

dependency_injector-4.32.1-cp39-cp39-manylinux2010_i686.whl (3.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

dependency_injector-4.32.1-cp39-cp39-manylinux1_i686.whl (3.5 MB view details)

Uploaded CPython 3.9

dependency_injector-4.32.1-cp39-cp39-macosx_10_9_x86_64.whl (719.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

dependency_injector-4.32.1-cp38-cp38-win_amd64.whl (470.3 kB view details)

Uploaded CPython 3.8Windows x86-64

dependency_injector-4.32.1-cp38-cp38-win32.whl (386.1 kB view details)

Uploaded CPython 3.8Windows x86

dependency_injector-4.32.1-cp38-cp38-manylinux2010_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

dependency_injector-4.32.1-cp38-cp38-manylinux2010_i686.whl (3.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

dependency_injector-4.32.1-cp38-cp38-manylinux1_i686.whl (3.9 MB view details)

Uploaded CPython 3.8

dependency_injector-4.32.1-cp38-cp38-macosx_10_9_x86_64.whl (715.7 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

dependency_injector-4.32.1-cp37-cp37m-win_amd64.whl (442.9 kB view details)

Uploaded CPython 3.7mWindows x86-64

dependency_injector-4.32.1-cp37-cp37m-win32.whl (374.3 kB view details)

Uploaded CPython 3.7mWindows x86

dependency_injector-4.32.1-cp37-cp37m-manylinux2010_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

dependency_injector-4.32.1-cp37-cp37m-manylinux2010_i686.whl (2.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

dependency_injector-4.32.1-cp37-cp37m-manylinux1_i686.whl (2.9 MB view details)

Uploaded CPython 3.7m

dependency_injector-4.32.1-cp37-cp37m-macosx_10_9_x86_64.whl (687.6 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

dependency_injector-4.32.1-cp36-cp36m-win_amd64.whl (441.8 kB view details)

Uploaded CPython 3.6mWindows x86-64

dependency_injector-4.32.1-cp36-cp36m-win32.whl (376.2 kB view details)

Uploaded CPython 3.6mWindows x86

dependency_injector-4.32.1-cp36-cp36m-manylinux2010_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

dependency_injector-4.32.1-cp36-cp36m-manylinux2010_i686.whl (3.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

dependency_injector-4.32.1-cp36-cp36m-manylinux1_i686.whl (3.0 MB view details)

Uploaded CPython 3.6m

dependency_injector-4.32.1-cp36-cp36m-macosx_10_9_x86_64.whl (684.0 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

dependency_injector-4.32.1-cp35-cp35m-win_amd64.whl (412.6 kB view details)

Uploaded CPython 3.5mWindows x86-64

dependency_injector-4.32.1-cp35-cp35m-win32.whl (346.6 kB view details)

Uploaded CPython 3.5mWindows x86

dependency_injector-4.32.1-cp35-cp35m-manylinux2010_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

dependency_injector-4.32.1-cp35-cp35m-manylinux2010_i686.whl (2.8 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

dependency_injector-4.32.1-cp35-cp35m-manylinux1_i686.whl (2.8 MB view details)

Uploaded CPython 3.5m

dependency_injector-4.32.1-cp35-cp35m-macosx_10_9_x86_64.whl (683.4 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

dependency_injector-4.32.1-cp27-cp27mu-manylinux2010_x86_64.whl (2.5 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

dependency_injector-4.32.1-cp27-cp27mu-manylinux2010_i686.whl (2.3 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

dependency_injector-4.32.1-cp27-cp27mu-manylinux1_x86_64.whl (2.5 MB view details)

Uploaded CPython 2.7mu

dependency_injector-4.32.1-cp27-cp27mu-manylinux1_i686.whl (2.3 MB view details)

Uploaded CPython 2.7mu

dependency_injector-4.32.1-cp27-cp27m-manylinux2010_x86_64.whl (2.5 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

dependency_injector-4.32.1-cp27-cp27m-manylinux2010_i686.whl (2.3 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

dependency_injector-4.32.1-cp27-cp27m-manylinux1_i686.whl (2.3 MB view details)

Uploaded CPython 2.7m

dependency_injector-4.32.1-cp27-cp27m-macosx_10_9_x86_64.whl (668.8 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: dependency-injector-4.32.1.tar.gz
  • Upload date:
  • Size: 743.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency-injector-4.32.1.tar.gz
Algorithm Hash digest
SHA256 eec27e4e9ff06c0ff07f7b41ee90744f4f10d82a2bb1e28cb4394d53ab56dbf7
MD5 f3c780e91fc1d8ab8e0c2a5ae2499347
BLAKE2b-256 57d3eb9b555b7d881869accbdc1c973437bfd3b925800aad004b97d6ab5a6eb1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 294.7 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 0b17ee90adcd9e769b01e336cc86a58f0fd5c83faed09d84348ff2d50b0df930
MD5 9a278fa0e18985bd22c60609356c26e1
BLAKE2b-256 95b56be0b0cd911cae745c5913f54f886c33f03523dc0ebf13e1f9a0be824d11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.32.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fe47051d2b2d3281d936b7c46129c009d64063c27d28277e6c129839a57ce50c
MD5 9d507badb3cb38356f217507ab83feb2
BLAKE2b-256 3939e658ee23579f5c5cb1730ad8402238d16157c50047db864adb724d11de06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.32.1-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a198e3553f261c6689c9c24a88b128128295a6aeaea02da46796221e46c2be95
MD5 111739266e70572d15c6f34b8a99800c
BLAKE2b-256 1d0f20fd7516a4cc10d376e35a183b014831c2b43fdcd6a4e3b3479dc2bfd02b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.32.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 067cd43da66c773ffab24d8e370d09b2a1691fb75dfff96c0db2f324dc1bd871
MD5 dcce4fe1836f68e5daec8e457826c1e0
BLAKE2b-256 c489cb2fe30bb0e31a69b629a3b7ca4feb61d9c76c94855f492009580a2a964f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 294.7 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 5217557feb216e08ae252f9ab2575012cd4a0d939b4fcefd98c95f218f1550b5
MD5 58fb94636cfe73ade78315359d035cad
BLAKE2b-256 02f7b45cb064858e4ebae94f546d37c2cfcc2dd9402be67bf123bc2dbe0ba96f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.32.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bd68a0ca7fe86ac075d74ec089ee7377aa05ede8c588609717029710b91734c7
MD5 887b2e77179a089695c9e6d8cf4f34c4
BLAKE2b-256 422a86dfaf3d8a880a4413327e6fc1fcb24302b6f5c480472cefb70178201f32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.32.1-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 85eb6b5812cec7ca7e957c00b7b819c1ce1ccd64bb6a76bba75a971caec71bca
MD5 9e4298715010d92814c5684329654e33
BLAKE2b-256 d4ad759d82181af6441cd361b16f628d0b02f385b6e040ccd35c8eadde9f0002

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.32.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2e45b0b956a5b7f9f0bb30f7318bc50d4620f9c75f977b78b8e90fdb13e699ed
MD5 e6e83274758b1249bd5f92ee01bec446
BLAKE2b-256 6d7b1c42f8b71d7b11d502c6f61c8cfec2b3d75db6cb8d81cf3a44fd97220474

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-pp27-pypy_73-win32.whl
  • Upload date:
  • Size: 335.8 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-pp27-pypy_73-win32.whl
Algorithm Hash digest
SHA256 f1cf5a4870aee3a01ff816a0c7692eb607e604ccc9114c4ebb49c4f878335e02
MD5 0545e21fe377e664dfa26ccc61c7ba6b
BLAKE2b-256 a3b9e07c7d902a68073aacb302117303152da1aee1f68807a3280d8080b6eccf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 530.1 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 38eacfe93b8b8e80c1d1dbf2dc1ca4bd7ba40b0f0c09e1326d4cd97cbcfee76e
MD5 3ae6fa22c2ce8bc9229d5100b4612f59
BLAKE2b-256 7b1821ffedd6507554df33b9d36bfcc81b9e6dd09426968419246ec6a82768a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.32.1-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 afd853db695d8e8a649ebb2fd7d6883aa31c6cb72b3ecae1d3fa2047d8979702
MD5 74641ab31e25c841c7151e49c2296137
BLAKE2b-256 f8636a999014060f22909e23a13de676105004a4e5612380a541ffecb0c41fd3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 491.1 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4052b7d38d18d1bcd0871ae71876d16d76314be5a4a29763ca6ebc38eccd365
MD5 76e7f3c54549549acf126cb53706069a
BLAKE2b-256 973788aaeebfc08dec067804eb55ab8fbf43a6d8ba22d3d4e7228251b9aee4a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 470.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 947fcc56c7790446c34e81c64bd41ad01ce43ae43e8a24505ab15ca2a98bcee9
MD5 fd6687dab4686dbddfdef97b6acd648a
BLAKE2b-256 96a10be6ceb56c74067f981847bbe6b402a1da0b6b43a1a17b8bf740138d0bbc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 385.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b6fb715a16fd61373cd435ba704e84607b8345d554b130794d63ad25ec8dfcc4
MD5 10688346145b882541a58070215fad01
BLAKE2b-256 f386ad3ada7c58ee78204bc32c127ca616d88b4b6fbcc1a25726c0060a99b5e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.32.1-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 027a52062313bc41dc5dc213e375b79d38c6d10e3a74974aad651f77d306e980
MD5 83de96ebea41ee22908c2e6f00fb1ff5
BLAKE2b-256 243e3aeb5ce8359a9b34e475a5198d0b66743f74bc3fcb329ca9a13782382698

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4f2462fc83bb5a1eeac065e110bd80609d362a04cc74e37565e7b64fb307a8fd
MD5 ca7a432fd1608b19df2d2c3c348622a8
BLAKE2b-256 6ed38f5731a39e49098c06ff484c7b110a32b0eedf35262191f721247e84b1d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ff092248fc65f052bd8737c7988866bd9aa70e5a1b33a331e930b1af1916945b
MD5 c70154d927b06dbbe6dbe350ee9e8918
BLAKE2b-256 a7d23327d4318399a516fe35be848d0be4c532cd6d792e872c14ab0cbbdab296

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 09de8ea05cf829bb608e674ab1f202fd62f6b1ff50804885d880052a323c5270
MD5 458b8c62ba8acd7d6bded8a1338889df
BLAKE2b-256 0a9fad893b8520f981fb8332befd64bedcf431400195503d2000c5a5e25e1302

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 73036116c4fddfa0580327a5a2d0265a2fa51ced6cd77262d489577cc6188f27
MD5 41f455c1b786602068ff558be1758fd0
BLAKE2b-256 f0f1be0d5912248ac697d3d3bc36eee6525b57a1858166ff53272467fe113fea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 719.5 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6510f17950ea703893014916d52281be37b85c7d9ff5c9a03b592671cbe0c555
MD5 c418d8e875ed6b4394dffd884bbb173c
BLAKE2b-256 310eadce7b142d99e9d187b8ad071906d91b93a453c8f46493a8b688b5faa2da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 470.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 00c0c47d823b93498b41568ac2f264b18133e450b03ed4d813d99642b7175032
MD5 243ece860108becd876b7248cb663c36
BLAKE2b-256 7959e1a2fb1cbd469e99fd9fcc3c4eab2de2f9bc345cd02f46bbb216bb692f29

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 386.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2da3712de3fe30d467b8b8e28f651d9fce5ea14cee19bae0bc7b7ef4beb3b5e0
MD5 d74824be9a933b1c416fe5d262fbe1a0
BLAKE2b-256 9c3ae330bf9fc987c273e3007f41308c53d88cf8374f1e40dceb7191d67d58f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.32.1-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7851c0d2b235fdfe1ae39099e984565dc20aa9a9ac023352b31bbc7d1177c07a
MD5 bbe16a3f746cff1d14b4fd9dc02d01f1
BLAKE2b-256 162b0090bb4776c8acfd58506eac26e5e56a58b0338b20b2dc676d5b987cfd5b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 dc9782040a01bdbab98345de144e3bcdb7adc95a23a69462646cf0312550771e
MD5 c14b8456b4b0ea0141fe70bb30d288fd
BLAKE2b-256 32c01e9d262bfea048b9185071815bef607968a6221d4b73805d426fe000b577

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7f78868e9e7ea04bbcb56059852e8265e4dd2d59cc5c79aa480b0bcbb1dac0f8
MD5 731248e02b98034520b1058717fbb82f
BLAKE2b-256 c9f246e65a7782094c79da27a952b17a1eeb0baf1c407ab440d6047d374f5872

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 611747bd2c70c39a3e5baa1e893b2de396b4334b2769e5e741737a5fd9650b6d
MD5 8f582ab7c2b1d8a0c548ee8da6b88207
BLAKE2b-256 acf6e8996dad62cbfa71733f8ff2775e77ed8365c9bd843d8ea3a2d0badd4a6a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b3b4721927970d67d663554812e25da48113f698ee4fd008c72a053676cb94af
MD5 d3e3bf18f3c727977e6a7388b69f3975
BLAKE2b-256 4df088285d4c49083bc16af1a49ce4bf7200d2d871f671db6e1402f9a5fce38e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 715.7 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 99c68c8d18333c0877a1dfe630022851eaaf582cb4f1732a436041250bbe9037
MD5 f369e363561fd91285e7a60aa22f37ba
BLAKE2b-256 bdd2085c96ee2e79481b9a3ea22935262e84917268133cb5e137a5fb0ec53f89

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 442.9 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a7d30aaeb5a870b31997cba3b038196cc94b7be694da52ae535556e92d4c53e3
MD5 6e294ec84afc3b9110425d08b0d73c80
BLAKE2b-256 206ca1c72e76e8102aed970b257e4c20a26893871b6a7926ef23841e68afbdf1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 374.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2012090994e588cc96e17da3fab2794b47208eb3833d34f344f48c2c85692964
MD5 abb07e29c93bc6c5d5d8ef310c78899e
BLAKE2b-256 b1bfc943ce2e8903afd07dd8da82ec67dcb374a1385036792e52288890ae4053

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.32.1-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 931f04bddf31e318bc268dd1604220db799b0d7af6ad7a234f2341f2e9b27d0d
MD5 ee3aef6f05efff4481510799a0f8f733
BLAKE2b-256 776dca2461a81cb7ed81c48be6994e0037339d9ccbab65ec56f6bf6c904a110e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4dd824db8a155a94efcdf40a5257540fd28ed98194e4635049b651479446e3dd
MD5 20c22aa7b08ea020f46178a5208fde69
BLAKE2b-256 e8ca7acc24c694a6442b6bcf9445e5a786f1fdf203b3da7656104cde67851ad2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 38b21125299f0ddbd31f9488a1a3c469427f9f5062471250a965c6ff02cdd399
MD5 09dd1d2158b79c1fce82d5893658354e
BLAKE2b-256 056d24089bb4c1a43bcc292934a33f6bce9af6e35b2ff4828b14972e10fa7822

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bab2a26fde0bd03289f2d5c733f31a616b7c1c5e4a5a291be08c0f80ddca11cb
MD5 4b7bb916d4560d9c4f5b8d8961899a38
BLAKE2b-256 ee281df8d3976b4ce9af7e33c3843de48a20e59648421b0a00a481f85a1bda92

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4a6d883cf996fce0ffff74cb194038a3864a92cd47a8843d7500ca019b7c65f7
MD5 40cf83de7cca6b6001eefadff2f35cea
BLAKE2b-256 e420d7f6b921d2cc6ca544466acae993fb62dc8626bc903ff39467ba0c001e1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 687.6 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c500bca0ce701da18ed8ae758b16dcc49a2c57a097495c991d81117f0a335493
MD5 099922f03a5716b71c7d660360a8acc7
BLAKE2b-256 aa62f8dfb1480354fcc93c99713f851f1c6852f79cf325525a6ec6122fbb6792

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 441.8 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4e143181bf34e070aee7f01e050333c5bb9add534a9d93a6849993a08e9e4f02
MD5 d69272065ee08b54e4849a4d0ebeda30
BLAKE2b-256 62419af1a1f713a0de666caf913ba03d9dda235fc09e6f6571d7fd14ade5dc2c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 376.2 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 5b6c8ae7cdf8eea26588416d5ddf57adb14857de6433c1d814fa2b6e213a87f5
MD5 2f73c0946d7064d106adf4ac9606e090
BLAKE2b-256 bcfa164cd4db44da26445896c0ec86468ce01cee47fc827371068be30fe1a154

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.32.1-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1702bc0c5cb0fddbe43b6533e439e07710917fc1a97a848485a27265663dead4
MD5 37a66f75b8d458e6006a5cd53f9ce437
BLAKE2b-256 d33f555b4b7479144a30fd34e65a339d92497b9116d8633f019faa625a2149f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 57fb10b23dc8f8aeeb95f4e0d17d88cd323f46e16d400ef7d7409dd2fa925696
MD5 224ac375a8a95d78379bcd0153992ce4
BLAKE2b-256 2cbbaf08997a23d5a8a701dc8cd67f613d22801b807eb219abcb20c0b5b42b04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3f6cc9467423a60bbfe37a4d0e6f818d354e17e9cb588caa7a5ecdddb7d0c787
MD5 324678f785040c46b6a1f9123cab5c3f
BLAKE2b-256 08ab67269da05fe46c57f68a3af75f7fb4a3f5748e4570ff2a5095261dcedebe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4a7b977664164baf7fbfb20baa58a8b76e9ee4b3332a41f65603a46c4acaa42b
MD5 9f9bdb8dbd08ede51c24aa5d77acabde
BLAKE2b-256 c5ba32d4ce77df5c1648b03660c1fd2cb970b580197948441e79b3b6d86a3ecb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9109826ad9e8581ba87745821a6fa79f4c91ec3fab383f4296c1418a81ab58e0
MD5 d82f6f5c91c0221077874ce343704bb7
BLAKE2b-256 7cef481bb4952edd74c9f85fe88793bdfa67722d3aaeddf035a556355fa48de3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 684.0 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8677d1021fd6d6de6cd52cb9f30f7ee5f01f536bb8f8a82eb926c8c9cfe85e53
MD5 a4d6aa22ece4859515d6ef3ddda97f7f
BLAKE2b-256 bd10bcab270acd9b29dcedbc0cc13a3b78c2a90efa09d0616058072a22221109

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 412.6 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 bd534ea37e3c5c4a6feed61dbfafe671d48baf28097bd58136c9c4d9244175fb
MD5 364965462979ae112b2b0ee4c88d719a
BLAKE2b-256 43e645faed693e8aac771aa1da2471875525658479d12da93e65729ec540eea9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 346.6 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 76c36b0ad01f571f52ad030f813d8082b2c6a4e03a24f98039831f703296634b
MD5 1b7cef4f96ceb2772e382bc0aecec32c
BLAKE2b-256 7b623f2846aa009d7c28284995dcd7db10fb5a12508799081dfee4a10d89ee65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.32.1-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d42e0e81382c57fa4a41e24e2d7f435ac910898c148d62bd235946434f7f5ac
MD5 17556f246e9512064d2aec9931e0008f
BLAKE2b-256 827c3e72f1401e470f7667619889b2b068798efb22ee1b0a94d07b2b9337c656

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d57b389339a7d8c286a83c3a3e67c81e3d5bb9d5acdf23b532b2b6a15538ee02
MD5 eb793fcd9e002595687aa6078824fc9d
BLAKE2b-256 286d29427530c979379ede3b3390423594b57978ed5f0a2dd433fddd51156e45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ffd3ddabdf67f266ef49420049dcc9029d6bea7df06282772c65e9b3482d4db0
MD5 cf334b53503eb889b8a7b6a0f7160a65
BLAKE2b-256 3b0565a90b6b7f02ef237c74104d5fe145150c95b803f2790a9e94be8daadc45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6ea92e9a31e91e92f70dc6703fff8f430073e02c9bc919603e7969d2243d9705
MD5 d08f28f142ee721c11c5b08065a03e6d
BLAKE2b-256 567adcf5fc7059507974b182b87e36b25b56563a2e81294ef9d39c74ff3289f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9e1575e07302cf30f384dbe3b0d3a505f4c64b338e442424615af797632c0e72
MD5 d9ff3bf38c05f6be50ed5dd01d9b9b88
BLAKE2b-256 76ab8b4eb9a5c34a85a5255f88a4185c169513dda728ca6dd2debf38eaf0da99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 683.4 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 842e2d6c453829916b627b06a89ec485152958e405ff5083ded06739127d5c07
MD5 bb55474c4033d29ea1e450965519c533
BLAKE2b-256 defab9bc5e52327001d9c67544220523de5b0650b34b7420d20a7fb95ce89b59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9276655a377f6deba8043bc5a075d7d0d89d697720b6bf1f6125c4778b13e2d1
MD5 0e3cf24a7a364e5be74a31b5c9e92522
BLAKE2b-256 4cae00ff29756422f94dd3a13b3d56b93a7ebf1121670734a3397085c864ff86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 08213bc5e65039e65db6d0e5623de5e3b93e80e8eb26c728be293564b600acfd
MD5 2d4c7e4cfd3f6ef74b1ea87bbb333310
BLAKE2b-256 403a49264da5bfb3db96866d0a91d9ca5e11d239060f187ec1a54878941a4e11

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6f01ffadd5bdd86e80d8221cfbb6b5ef5ec099324c75436712bf11938d7186bd
MD5 524739bf28d95aa0f2e8393e59d8f007
BLAKE2b-256 14cea421bdf8eb369951b524cbf995126dd5194660802be2533584c5b6d0e2e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 88ed639b0b9762b2f4bc4e94142c646d2bd3ea14e5648850a011ba5c0ce4eae5
MD5 f6b0c67b5abdebda452a29bcb3b18984
BLAKE2b-256 8c9581848fb6cd2603625d574461b3eba0d255c67a7dfc498d1f05c1166abfee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 35a25475ecdfe9bbd0aa5fc3a7f927ef4b18eb117010d858dc87b031dbb88b37
MD5 e1e7098bb5e317b4951a622e4455bb4d
BLAKE2b-256 c41186dbbbd8754700bb61babf5048b8f40fded3710f9ca9889666f44f558606

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5a4cc5f202a7ad62f4e9d60bef1cd6b6e6a0a468aa0e34354c51e9e7c406f5ec
MD5 a4e7aeaa42dc627a4a42da8a687eaa24
BLAKE2b-256 ce9c2c22d5532a378b7f6c3d138a9fc059f9f7c2ab94ff576b6b3b6b2fbcf1ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a7fd5ac3a8ca4cfa909436519ce491a10a491570cb660d54367814426e4f2ed1
MD5 2d36e8a54cb81bc939e10d1e5b4aaae9
BLAKE2b-256 f6ac29ed2f702a761bbc65a931417b1acd36cf093bb68a9cd0745f794666a816

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a3e7085ffd3962bb4b35a56beb5de2559b91810571d387da1f7400b04013e08d
MD5 bb2fe6256c3b52e8b90a16bc23c91769
BLAKE2b-256 edf5387521a7ad7ca5f9696db0fdb71ed3bbc35a968f3f5eb9e2044308be6660

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.32.1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 668.8 kB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for dependency_injector-4.32.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 670501209b02b55252628371854dfda1034ca4bc89ba4eee71b0be46a011b81a
MD5 a4732775363f96bcb618e15eb01cabe4
BLAKE2b-256 cf8e0cac7c2cf2ab98a74bdc3187d6786dbd4526ca5fe7ca9a5e5233e18e39d6

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