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, 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.11.3.tar.gz (598.2 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.11.3-pp37-pypy37_pp73-win32.whl (236.5 kB view details)

Uploaded PyPyWindows x86

dependency_injector-4.11.3-pp37-pypy37_pp73-manylinux2010_x86_64.whl (428.9 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-4.11.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (387.3 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-4.11.3-pp36-pypy36_pp73-win32.whl (236.5 kB view details)

Uploaded PyPyWindows x86

dependency_injector-4.11.3-pp36-pypy36_pp73-manylinux2010_x86_64.whl (428.9 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-4.11.3-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (387.3 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-4.11.3-pp27-pypy_73-win32.whl (270.9 kB view details)

Uploaded PyPyWindows x86

dependency_injector-4.11.3-pp27-pypy_73-manylinux2010_x86_64.whl (428.6 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-4.11.3-pp27-pypy_73-macosx_10_9_x86_64.whl (389.1 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-4.11.3-cp39-cp39-win_amd64.whl (377.8 kB view details)

Uploaded CPython 3.9Windows x86-64

dependency_injector-4.11.3-cp39-cp39-win32.whl (306.1 kB view details)

Uploaded CPython 3.9Windows x86

dependency_injector-4.11.3-cp39-cp39-manylinux2010_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

dependency_injector-4.11.3-cp39-cp39-manylinux2010_i686.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

dependency_injector-4.11.3-cp39-cp39-manylinux1_i686.whl (2.8 MB view details)

Uploaded CPython 3.9

dependency_injector-4.11.3-cp39-cp39-macosx_10_9_x86_64.whl (565.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

dependency_injector-4.11.3-cp38-cp38-win_amd64.whl (379.2 kB view details)

Uploaded CPython 3.8Windows x86-64

dependency_injector-4.11.3-cp38-cp38-win32.whl (303.9 kB view details)

Uploaded CPython 3.8Windows x86

dependency_injector-4.11.3-cp38-cp38-manylinux2010_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

dependency_injector-4.11.3-cp38-cp38-manylinux2010_i686.whl (3.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

dependency_injector-4.11.3-cp38-cp38-manylinux1_i686.whl (3.1 MB view details)

Uploaded CPython 3.8

dependency_injector-4.11.3-cp38-cp38-macosx_10_9_x86_64.whl (565.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

dependency_injector-4.11.3-cp37-cp37m-win_amd64.whl (354.9 kB view details)

Uploaded CPython 3.7mWindows x86-64

dependency_injector-4.11.3-cp37-cp37m-win32.whl (294.9 kB view details)

Uploaded CPython 3.7mWindows x86

dependency_injector-4.11.3-cp37-cp37m-manylinux2010_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

dependency_injector-4.11.3-cp37-cp37m-manylinux2010_i686.whl (2.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

dependency_injector-4.11.3-cp37-cp37m-manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 3.7m

dependency_injector-4.11.3-cp37-cp37m-macosx_10_9_x86_64.whl (543.4 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

dependency_injector-4.11.3-cp36-cp36m-win_amd64.whl (353.1 kB view details)

Uploaded CPython 3.6mWindows x86-64

dependency_injector-4.11.3-cp36-cp36m-win32.whl (295.2 kB view details)

Uploaded CPython 3.6mWindows x86

dependency_injector-4.11.3-cp36-cp36m-manylinux2010_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

dependency_injector-4.11.3-cp36-cp36m-manylinux2010_i686.whl (2.4 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

dependency_injector-4.11.3-cp36-cp36m-manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 3.6m

dependency_injector-4.11.3-cp36-cp36m-macosx_10_9_x86_64.whl (591.0 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

dependency_injector-4.11.3-cp35-cp35m-win_amd64.whl (328.9 kB view details)

Uploaded CPython 3.5mWindows x86-64

dependency_injector-4.11.3-cp35-cp35m-win32.whl (271.9 kB view details)

Uploaded CPython 3.5mWindows x86

dependency_injector-4.11.3-cp35-cp35m-manylinux2010_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

dependency_injector-4.11.3-cp35-cp35m-manylinux2010_i686.whl (2.3 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

dependency_injector-4.11.3-cp35-cp35m-manylinux1_i686.whl (2.3 MB view details)

Uploaded CPython 3.5m

dependency_injector-4.11.3-cp35-cp35m-macosx_10_9_x86_64.whl (540.2 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

dependency_injector-4.11.3-cp27-cp27mu-manylinux2010_x86_64.whl (2.0 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

dependency_injector-4.11.3-cp27-cp27mu-manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

dependency_injector-4.11.3-cp27-cp27mu-manylinux1_x86_64.whl (2.0 MB view details)

Uploaded CPython 2.7mu

dependency_injector-4.11.3-cp27-cp27mu-manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 2.7mu

dependency_injector-4.11.3-cp27-cp27m-win_amd64.whl (370.8 kB view details)

Uploaded CPython 2.7mWindows x86-64

dependency_injector-4.11.3-cp27-cp27m-win32.whl (304.2 kB view details)

Uploaded CPython 2.7mWindows x86

dependency_injector-4.11.3-cp27-cp27m-manylinux2010_x86_64.whl (2.0 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

dependency_injector-4.11.3-cp27-cp27m-manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

dependency_injector-4.11.3-cp27-cp27m-manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 2.7m

dependency_injector-4.11.3-cp27-cp27m-macosx_10_9_x86_64.whl (522.2 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: dependency-injector-4.11.3.tar.gz
  • Upload date:
  • Size: 598.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency-injector-4.11.3.tar.gz
Algorithm Hash digest
SHA256 d0aefb900c85d0f0ec8e447defbb5cc5b2b57c30c342bc072d250eb5ea65c5a2
MD5 4d9d42aaca103e7184bea29d5375b183
BLAKE2b-256 3a49ff5acd80fa2538cc18b0f2ee2866caccf39aedaa22ec9605414f30c02d8c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 236.5 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 cf666d67522500f2e129277ae65049a7382f0fb92c6982bdbe3f75ac433995dc
MD5 b822bfe13bc171c03a728b9318e78026
BLAKE2b-256 67862e068d38f11db358279a2c1bbf7af6aa10d316988e76488398e0ca3f389e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.11.3-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0f9323fa70448cf748255f00d215a07855d03d27a9734558e9df17345ff2267b
MD5 f00ae551a4aa5578d8022554e523ee54
BLAKE2b-256 15255c7ac714fd536466047b44d4c45cc24f12c11d0c517182093a5f51822700

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.11.3-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 211f2f2a3d663c80fcf7879e13942683d402956fcf7252a4c9cc3a62c60c6308
MD5 f3929a856b04838d26a66ce64b2923b1
BLAKE2b-256 311e2d7ad611694f1d125a801e054c43f5ebcb93d5e084dccb4076a064453f60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.11.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b9a15fc13a6950b4cc173a37fe96c8db9dcc7e65d97e2d053cc954b50df77e1a
MD5 c9bc12aca81dbce9aa4dc06d9214813d
BLAKE2b-256 fa6054cce01a46a4ceade79613b873f43964fd2a68edbaf98f9f8dfdc6b63fa3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 236.5 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 1048c880a545d7fa24f2f801865c3de30fa779c53f55efa605838b7bc651f351
MD5 1ed6b52e5254fe60f72d2d10e382b98d
BLAKE2b-256 adda397e89404e45b47cd36451d7e6f7325eaf72c5cdf92b2f8f0d0099b4aee4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.11.3-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 51af3e285f722facbbb7438271577c667f1974423c988ecced8747d9a326031b
MD5 7a06b0bfb9f21bbb37f31d805e86fa64
BLAKE2b-256 b068cefd1f93415c4449bdc9711dc63b0535f882667eac8262888556b8f32ab0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.11.3-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 aded3acb55de165ffd5b2e745b562093dcb0486d84e1fe792d3d6911d6127fc4
MD5 d185498cc58dbefab9eda6d11baf469c
BLAKE2b-256 2902a1b998b949adb87e32abfdb45890d9bb0b9a52a611a1bed7ea7c08b9a912

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.11.3-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 be6892fb26b2cee7c05f779e1a3adf59daa313aee442035d7a7474d929c752fa
MD5 184c1ee1ad2f9864177c6b28ac6a8cf8
BLAKE2b-256 79e70f9152647d4767938794ab170e9d5b2236aef735fdc993a64560bb1b90de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-pp27-pypy_73-win32.whl
  • Upload date:
  • Size: 270.9 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-pp27-pypy_73-win32.whl
Algorithm Hash digest
SHA256 c1ad77581508154aa0546481a7e1246dae6ad555f53a10e4acb8f1aee157f018
MD5 cd2ed570b46522352d83b9199a88115d
BLAKE2b-256 da1be9da8f318ede285b155c64772b9bbfef859ec98f8378ff5b038bbbd1169c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 428.6 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cff4796b56e5298119ef3e2529b70717df9b60b04451d9a905a4c0f92f2d61da
MD5 f3284973e9939d7f2b46a9dfd60f5549
BLAKE2b-256 5dc010396b8ec3b27100d6706a6ae4ee153e0a452a8e7bd004116781322bf2df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.11.3-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a557031ee795336b03d7c53b6cbcf7b4bc3e52a4a61c74e417d583fcf25e618e
MD5 04cb3cfed0742969202a41df2c6df8e3
BLAKE2b-256 d4cdfe86431d5c175882577f25c0b3fa4877ee47380e26610fec37447697d3d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 389.1 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8ae2629609fe6e20cf14beb2e851ac56e7f1ac583b2f45639a301b0caffc583f
MD5 1fb5dec9f3090b9d238e5cd1ed8acb43
BLAKE2b-256 50da4832a7105736ecf9bc7b8b548a0a8a0909516925c8ae06a57b3556e2341c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 377.8 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4610f63b4e036a4ea98ac7a20a6b4bc794f1e76c1fdb64819cfed27f960d72fd
MD5 2a7d572970f5ad72cc6662e3bfb7b94e
BLAKE2b-256 dde80fa3f9f8bf99148e799e2a74e914ccdd8a98cf33d4a2fbb3acae9ece8ccd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 306.1 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5d0e5e9fd2da677f90c45ad01588ccef9968a38e419aaf587d6909d9110637dc
MD5 839ac39c2f71c9f17f3a56aa13c21a7b
BLAKE2b-256 19b32abe01add61d8b17299d01813ed9e3becbde34cae560c7a88d293c062b7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.11.3-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97adfaf62aba8e0c52ab155f3907e44abce35c09cca0041df0dddb07f80b1d73
MD5 cd52f68da9990ab81bc05cd419737346
BLAKE2b-256 01dcd1446a1ed70ea44c99851ab6dba7c3af1dfdd3bcec13b60d3a6ff470f22b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.9 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9ca29db5383e27f58c2b9b1a1040f4c7b1e0ddd91f4e2443d8e046ebbc211548
MD5 04edbacb2edf9cc00b94882131f1e436
BLAKE2b-256 bcb002ad4e910e804840e5212125df06bda2acd091e12e5c4c02474d75edc401

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.8 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2614f413db8329a1ad486bf3f07d048c3a897da258103230b3db7d012b10776f
MD5 d5d54e8e7a1b7e1a6a10e6acbc1cb8d0
BLAKE2b-256 f72d83d8ec2e0f9f3c167631a700e2d11c50bb2cbd860af26fa7c68bdd972280

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.9 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2eb8914b1c2f5d6d80c218949488bbdb65f324ab1fe6b15c13e6e8c6d16a3c8d
MD5 a6810cfbae88c02ef832a3e2eb12f3db
BLAKE2b-256 22b4b072d5e319cce233234842ecd04607622fa269dc6f8d6659210bf3ec0ec0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 2.8 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 10223614db636050c887d6b99877d150989c22f8280b2b36594f3342e1a51d52
MD5 795e775258e2432928ed1b8c10a3cc60
BLAKE2b-256 31af579e08b1e46a64b95fe541f1758a0ef916cfd17361bc048d541a8b711aa9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 565.4 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 683b9f845d9483dac0ddc0b6e79d8a56906c3b477c04130289b4bfe3eac3c510
MD5 b08e3e5a0f99a9a29928a162cab650b6
BLAKE2b-256 533aa54bb41903f6e4f76d6755ac8f9b450a36e16fb6819b36ed8f2838b69645

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 379.2 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 851876a08488addcbdf198882a32d4a4ebb78ee18641445172b088dfaf04561d
MD5 547b2dc8ee40125e34f93beb4cd19ed6
BLAKE2b-256 72063862b21ac2ea3535d0f18c8136b3455c6d3ec3f0e51ee6b80872d7bef538

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 303.9 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e946c3e68021f9ec2ed52b649e8a9c93228378c3aa3d3698f72d7b4b74e935fd
MD5 f41bf50f12da17489ad6d2998f423483
BLAKE2b-256 cf3c8dcf8546c5a9789f75a7715132beffaf96b461488a8d81aed38deae6bcf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.11.3-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33803ccb16aaec2b8f21acd0b946b379142404d3ff2e3646d8fa1b875bc4e2ec
MD5 1e536b29de80a942ebba8456893ea15f
BLAKE2b-256 b2427c213f55fe7606866fe68c68a8d8869def1732ccd14d5d75230b9dd569e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.3 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 aa5dd96a317c4067eceec51dbaefb8d501d98abe11be4c353015f4b75e4d7208
MD5 ece7bf24212f6a50d19c71bdcf620176
BLAKE2b-256 0a98c1daab64da5ad9eb4e18c477e089a44ed65f29acb0ca08b4e14a31b8302b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.1 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3cc0675db951407dc45e769114a74d82a4fcf35c8301eb45c6222b4ec591d489
MD5 4673030ec6dececa2b1c282783caa0e1
BLAKE2b-256 cc6acf83ef5b8c441ce0e209cc1ef4c63a2228534abace1c1846e81a9d982220

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.3 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7cd1356618e35a35023a49f4ff459db163726afdd2a233b1b8a7ee7d4b1d1ee2
MD5 b84c7161bdf5095ecb35c42786ea8263
BLAKE2b-256 62fcbfaa3ff9876a6ac7d75875c8e82a20fe930c6d5dfb215d71e0bf314cfa79

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 3.1 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 25b7c6926e9393d86a55ca69b2991d0e25b9dfeb82f27363d1a86f8503209871
MD5 af0c308c980fe62ac169d4f9193ba8d6
BLAKE2b-256 32165bc75f8f371e44c069ed7dc6c6543e31b4ce7b26bf81db9147461689d1f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 565.1 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c148866551dfa3807b7bcd36aaf3fb32e6e738b861ab4ecd64857a28a157e697
MD5 4cdaaec033ace4d74c5bae1fe617d4fc
BLAKE2b-256 740600ecc2b30d7589cd995773aac706481379604decfca7100d5beb5b3177a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 354.9 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6ded939c6586dfab6c51e4a3cf23b7eaeb10ea59f48b6c028a9f528600499a1c
MD5 af0c56998746262d951f393a4358c253
BLAKE2b-256 39a5c123a173b07583cf3355de3bd6b1fab67a35ceaedd3de60372844bcd624c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 294.9 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 0d46676229ce652d069fcfd64c3bd5a007b514d5642e32ef6f4268da5a35f222
MD5 9715caa6faa88d2aaf2754952a482252
BLAKE2b-256 aa3cea38135d94f9d76b336947165c74987eaf6b73decb7f5d4ad8a200887bed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.11.3-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb1ef1a44e08786dc5cb0f7619b1556cb7fc322e67629996aeda9626e614221e
MD5 99a2aa614e660cd383edbb629fb1729d
BLAKE2b-256 aa426646cfbe4394f2b0e2ebd9032c9dfc59bd2f07b748986169c6d7c9be29ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 98c01c17b365e97d9525da86440615c9573a8c82609b82211cb2ce2f98a99e57
MD5 12f16c239e7d3c6eab5b599f53a7c396
BLAKE2b-256 2274b955feb28429a3822e3663f40d73e82dc24b951c76ab04a8a544c7a06d1c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.4 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4c41e60e9004b58c80230442a62a00a15ffa8895f41135a0ec3026b3fc37b364
MD5 091c09687e102f263d0efbdbd4ce29cb
BLAKE2b-256 daefef394c65c4b95b79512aa3ab109a463adc3693b747ad754da6b73170f224

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.5 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c67aa66174abc83bee6cbaedf9c051fe59aed3fa6f1d2555b56394ce893b9ef1
MD5 56c05adcfe496719164b5e5cd933dc87
BLAKE2b-256 520ce5e3d0bfcdf0a81f30d750d1ef0e5c4809dbca9b8483bda21dbdcd7f8b09

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.4 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e172a9613c611b6b50888d892f3ca77aed6d9642ca92b6c75557ae442fe0f4bd
MD5 609b87ada34c538aa665855e39615c24
BLAKE2b-256 6f26d66349ee51f1c173eddaa82b0237fea1684a45a6bdbb05dcd63136c28d81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 543.4 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 55deba68cdd8ecb61e1c339c6ce1242132c74dac02c663b1a4ceb43eb2e454cd
MD5 d273085fd4af075542f93ffdd5bfc892
BLAKE2b-256 f970055d43dd9a0da5871624f75e68372488204974c84939a6382074378a8ecd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 353.1 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 70177b454ac1c82db06d0280f44cfd111f26008e4e4dec5ffecb222aa08183e8
MD5 85e341b8e857a41884f884fd2d692e59
BLAKE2b-256 87b659bd8a8e8bc54e839bb7fd2203e5d470db9fc57f655b143621bf858a8d1a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 295.2 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0c59bb03a17f9346d7463a69988c9efa5978b7e1b854f9513bfcc1214b65c92a
MD5 6c06560da02b90b01b18816bc00d0402
BLAKE2b-256 46300537cd3743ff4a5a8524e55ff07f01353138da861221f98106e3a3bc18b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.11.3-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6503b88cfa54f270797b576820aebe43ba0d66ae1a4206ba4e3d00dd3fd0600b
MD5 133653c30213b45223df6ee7c46f1969
BLAKE2b-256 d25406085ffb22daa2438e6f523f0ce01093ad8880562623b4bf373d8e4a7035

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.6 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 867bdce825ce28d3c149a6c2f49c383b34c085394015b89c3a0da294ee36b3d7
MD5 876e52cf3fca30e92307a0d16cf65273
BLAKE2b-256 a22a548a5595e0e1c4b5ecc316710d98bc8562042adde770b36eed890b618a75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.4 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d5f78b1e90aec9d056856ce7176d34c1e9873ad13e06302fdf7ce929dd66af3c
MD5 ee27f8297edee70263d5a2ddeb3ce433
BLAKE2b-256 62c1590a48deeafee0578538f650ab7ef55320400c171eb06640c28bd8c86d4c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.6 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 537a138dd237053d23c5cefe58966a432cbbec722fe569f5f48b07fb109518f5
MD5 34464a43fe6b901e38260df96abe7d0f
BLAKE2b-256 876bc6a365efcf59cc03bc296d752f9a5074e7cafb8d24e329293cb7e91a3c22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.4 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 99c8b1e135e4fd40ab2083655d2e3f189539504a03cda1f2be402a694b17d4f2
MD5 73ed1cc90ee95827c9a071ced9535303
BLAKE2b-256 60a994ec25fe7d6f3a112efbe4a38df0c80a27daf0dbfaeca92d28b05f1a9cad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 591.0 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 45e6e9ed6da96028c49525e2887799f2d574df4d08595c2f9e045780d0bcab49
MD5 afab287211afc72c08989ed2049727a2
BLAKE2b-256 f48d49c44096faa34374c8642a3bf4c42e27856b088f33e3d6abdc06d6302a03

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 328.9 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 b2b5b553991026b60a9c359d7dfaacf85639a35bbe6d7b966f9d77e5cb1b44d4
MD5 1af0566d74bc883ac73837249d03c7e0
BLAKE2b-256 15e074d7daa6c2db235ae14558326b39e02c7b94efc020e49707d9610cc4a643

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 271.9 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 dcfeb3f25962cfedec03dde42fdae12e6c9c0b584b5a81b617d988c3667aaf81
MD5 87df9ac3b58525b00e1dd57fb6fbf0ac
BLAKE2b-256 ecb3b85419ef0f8df613b488721865554c198b9c3473adcf484935ceca31df67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.11.3-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3e75215dca77728bd798b07de06a401f2702b4af9f19c720eb9237b2e0b76c2
MD5 2ca7fb088c4340f336154d8f6731c78d
BLAKE2b-256 b133c37aef64cd46cfbc5694d14f1c893e6eb6ac066d4e0f224035a832da8ddd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.5 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 990b9c8a1af126e8bb5833b223fae40b0cd658429094f8a57075cb2f972727f3
MD5 ab75cad3a34e89904c2ee915e8472e46
BLAKE2b-256 9ee70b220fcd6b15122c66a4a43d0bf1a76524f5f6f150fa7b08a219cfc6db26

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.3 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a86200369d3d2e7df66499215f129a9d63c2e92ef870fb7c81bc225bce6344b3
MD5 2c86d31b2d0c453dd9c25e7c6acda1f1
BLAKE2b-256 0fdfd394c523b65ed04f2d4e45bf7790b8580de00cd17f5f249c64e8213a41ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.5 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 254d6850b1ca737f7fd59812c64ba39354010a06fd87ccb3abfd12dfe4d5afd3
MD5 cc298452753e363e9744f33da0535f02
BLAKE2b-256 5ab3b8c7b32471c7c7a2c3091f03a946464e557ca9f64afd29c784ea7decc5be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 50f20e4b91b2064dc2bd2e6077344a3100ff6dffbd8e8eca69d0fec5796a37cd
MD5 8f267ee12484fe11d20f543a7e0371ab
BLAKE2b-256 a9cdca933a8a47d0aa276fcbb4fb244d590d310ff5486c5b28a3216c7ad9f26e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 540.2 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c307291feb8fab607b72cd3e0c7347b4f9062e3c7f5e8fa5b61921d653b918a8
MD5 701441eb1d48596e554a79efcedf310a
BLAKE2b-256 a0ff1dcd3baded3af43ea89f02473f5b846617734118c6351531116371f90359

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.0 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 08c0246cbf642765f3854116d2baac4fdd986243a33f89be0dacfad9661b62a6
MD5 6165ae1d1b81474b86b2581f0ab7914e
BLAKE2b-256 bc635c8d6185a9eee12e20981ad657e807b443a2db229e2b8db1513256eabf97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.9 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9433d051e8849ed96720764acf8c02c76eac0838b4c0ebda054878e2557ba2a1
MD5 eda9544a4ab48a8b4491a3b55007e9d7
BLAKE2b-256 6eda2aa57c8cea605d3e3a178ce712b94bb4206906419ce0ee021cb9c0f9b942

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.11.3-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4188dd087f93841e347c46b69eb0c2b30f249b0e7e541f253f34e52029351e4d
MD5 320ebf94c61c1c0b89b58e012e0dd2f7
BLAKE2b-256 4891206a32cc8de155631b01df400c59d3f708855e9fa8e01c6391c0363a4b58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 1.9 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 13d708976c8e4756fbcec88867c3f2bf943642450032c96b13cc0bc2d36dd9dc
MD5 0a0467e51046f896e07b5ffdf57dbc74
BLAKE2b-256 c531a0fcf59d060a36a808097cc2c9f38fbddf6acb687795bb51b8e3a663dcb8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 370.8 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 d29ebe1b85cc0d05a3b732a033d49a19c39dd66aeb858fd34ba43b3801b90360
MD5 f4a9028e789b0a5628ceb0735099c226
BLAKE2b-256 12377c52927968cc3f496fe59f39474b42bcba17b087ee8c4a31631f214acb5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 304.2 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 864bc6944a59142463c0cff227cfe2ce954d8e811cbbcaa7818e2cd1cb5a89c1
MD5 9fc6fb7b86cb2e148561d30e1db97643
BLAKE2b-256 316276bc305f2de473ebe6a35544ebe79e62618809870f66c7b9a0d6e885ccee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.0 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 201ee0e23b509f93546322c74e4de979cc3a66919e04960b0ce209f9a3f9ef70
MD5 59e8955099425ad576bb35e9af4f089f
BLAKE2b-256 0499645f73f883fd7c2f80002f46a5714f375420fdc3176d5b34c9050c0d584e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.9 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ccc63d08648252517a360e281517b58f6b1e5754aef042e29c3ad299bbce4343
MD5 e3dba3124a89751ad84cb64bc18063c8
BLAKE2b-256 49861206274d41855b1633e6868e3172235d8deac90cc8fca4643b213ac6c376

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.0 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3da2e606127ca0979ce52d2288c8bf188b1c47d76378f9d6f8a4ad72b78fcb10
MD5 118335f4a60a52520d7233b559119d62
BLAKE2b-256 90e5271cb4851de3d815cd8c8fe4945fe14131b4eeb11b22a7aa39ade37c6dd0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.9 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d6dde120b9cfab88dfa6c21bae89c21a73f8000bb26e95164bc7a7315702067e
MD5 f47750c2feeac10b815096c0fe20a788
BLAKE2b-256 c1fc86d32a4dd419fa5931e3684996d4368da50ce11f500ba6eab0c3ff0bd065

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.11.3-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 522.2 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/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.11.3-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 523dd4b2872fb94b141db13dc7215427f7477249311c3fe8d647306d29e93dd6
MD5 7512623aadd5943b50c09414a0101240
BLAKE2b-256 49f9583a2d2d59dcf3093a1111b505c91e4a112f697191db3d910e7766e2a423

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