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

Uploaded PyPyWindows x86

dependency_injector-4.13.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl (430.3 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-4.13.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (388.9 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-4.13.0-pp36-pypy36_pp73-win32.whl (236.4 kB view details)

Uploaded PyPyWindows x86

dependency_injector-4.13.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (430.3 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-4.13.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (388.9 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-4.13.0-pp27-pypy_73-win32.whl (271.1 kB view details)

Uploaded PyPyWindows x86

dependency_injector-4.13.0-pp27-pypy_73-manylinux2010_x86_64.whl (430.5 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-4.13.0-pp27-pypy_73-macosx_10_9_x86_64.whl (390.7 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-4.13.0-cp39-cp39-win_amd64.whl (430.6 kB view details)

Uploaded CPython 3.9Windows x86-64

dependency_injector-4.13.0-cp39-cp39-win32.whl (334.8 kB view details)

Uploaded CPython 3.9Windows x86

dependency_injector-4.13.0-cp39-cp39-manylinux2010_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

dependency_injector-4.13.0-cp39-cp39-manylinux2010_i686.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

dependency_injector-4.13.0-cp39-cp39-manylinux1_i686.whl (3.1 MB view details)

Uploaded CPython 3.9

dependency_injector-4.13.0-cp39-cp39-macosx_10_9_x86_64.whl (630.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

dependency_injector-4.13.0-cp38-cp38-win_amd64.whl (430.9 kB view details)

Uploaded CPython 3.8Windows x86-64

dependency_injector-4.13.0-cp38-cp38-win32.whl (335.5 kB view details)

Uploaded CPython 3.8Windows x86

dependency_injector-4.13.0-cp38-cp38-manylinux2010_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

dependency_injector-4.13.0-cp38-cp38-manylinux2010_i686.whl (3.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

dependency_injector-4.13.0-cp38-cp38-manylinux1_i686.whl (3.4 MB view details)

Uploaded CPython 3.8

dependency_injector-4.13.0-cp38-cp38-macosx_10_9_x86_64.whl (626.2 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

dependency_injector-4.13.0-cp37-cp37m-win_amd64.whl (408.8 kB view details)

Uploaded CPython 3.7mWindows x86-64

dependency_injector-4.13.0-cp37-cp37m-win32.whl (325.9 kB view details)

Uploaded CPython 3.7mWindows x86

dependency_injector-4.13.0-cp37-cp37m-manylinux2010_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

dependency_injector-4.13.0-cp37-cp37m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

dependency_injector-4.13.0-cp37-cp37m-manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.7m

dependency_injector-4.13.0-cp37-cp37m-macosx_10_9_x86_64.whl (607.0 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

dependency_injector-4.13.0-cp36-cp36m-win_amd64.whl (406.3 kB view details)

Uploaded CPython 3.6mWindows x86-64

dependency_injector-4.13.0-cp36-cp36m-win32.whl (327.0 kB view details)

Uploaded CPython 3.6mWindows x86

dependency_injector-4.13.0-cp36-cp36m-manylinux2010_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

dependency_injector-4.13.0-cp36-cp36m-manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

dependency_injector-4.13.0-cp36-cp36m-manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.6m

dependency_injector-4.13.0-cp36-cp36m-macosx_10_9_x86_64.whl (656.0 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

dependency_injector-4.13.0-cp35-cp35m-win_amd64.whl (381.7 kB view details)

Uploaded CPython 3.5mWindows x86-64

dependency_injector-4.13.0-cp35-cp35m-win32.whl (299.1 kB view details)

Uploaded CPython 3.5mWindows x86

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

dependency_injector-4.13.0-cp35-cp35m-macosx_10_9_x86_64.whl (609.0 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

dependency_injector-4.13.0-cp27-cp27mu-manylinux2010_i686.whl (2.1 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

dependency_injector-4.13.0-cp27-cp27mu-manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 2.7mu

dependency_injector-4.13.0-cp27-cp27m-win_amd64.whl (420.5 kB view details)

Uploaded CPython 2.7mWindows x86-64

dependency_injector-4.13.0-cp27-cp27m-win32.whl (327.8 kB view details)

Uploaded CPython 2.7mWindows x86

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

dependency_injector-4.13.0-cp27-cp27m-manylinux2010_i686.whl (2.1 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

dependency_injector-4.13.0-cp27-cp27m-manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 2.7m

dependency_injector-4.13.0-cp27-cp27m-macosx_10_9_x86_64.whl (591.6 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: dependency-injector-4.13.0.tar.gz
  • Upload date:
  • Size: 637.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.13.0.tar.gz
Algorithm Hash digest
SHA256 619e19208fde82ae2c688a48a0750bf5f70e1dc97ce1958f28a48e924e2769cd
MD5 e204a9425a5b1865ddd1c1d6ab16bd70
BLAKE2b-256 90e42946c5fe9ee09ec56d79600ad2cdde88ec3ca9859f3049dd96be6d506b9c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-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.13.0-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 94d2987bc352ce56d991be9fe16805cec31e0e2cf4f1da5068dc4c03093ec5ce
MD5 4eb53bc960008c0b405672d32e701ad5
BLAKE2b-256 305442141c9dee71350455d2161b55f17fe9026ef0e35006c66811c14e737723

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.13.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ac157519485156fdd876e06b446b9bacc6203e4c884b2a8691253ed3bfadc87a
MD5 3f1d7954ba4104bbf0357c6130905f7f
BLAKE2b-256 66be458bc26551e1aaab67ae6626022b41632a4e9436adc7673d1df8aaf54806

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.13.0-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d2c5b62f8c28a6a6f9852e7df0c98b7fa77d0ab8b0d84b6438117187f27cf4eb
MD5 6209ddd1054c78da587f72cc2d7b9ce2
BLAKE2b-256 16cedf53a36fe3a0aeb1b93176336a73f2d313918b156e46cae0719fd781c3cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.13.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 da98a8d8103671e32a5df65c00834f18e7192b353ec7f83a3ca7893a6c317ff7
MD5 9629fd6714ecdba993844a60667e821f
BLAKE2b-256 df69221d2197be6c28859e73ecd33599b027e8d5cab358e45b6a96459ff36ad6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 236.4 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.13.0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 e3abf39efe6e56ba7f2956c004ff18f545292fc4df646cadfccaeae5140da2f3
MD5 3357691259dac864bfd155cd7d234f15
BLAKE2b-256 e061492c04da17f8ae6985a9d4631d2fa0647d6338972fbddb28252a394d3b28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.13.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e59d2913e86a7c298994c7bf894cb5f118ba70c2a7a140849f78979295eff088
MD5 7a0b4797602f5d1ba1861ee2ae750c59
BLAKE2b-256 e2746a6fa63cbc245d6d16eec0503f8fa6476e7ac47528d842144ecd739c707f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.13.0-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 18bb047b5a7824c6a497ea0010f051ecc4ecaafe5fbcaab32df75dd5fc568f11
MD5 843797fb9055cf76a931627d00d33367
BLAKE2b-256 0c5c9595dbdbf58861b07fd40708cd6078f701f9557995adfda3e3bced87d83d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.13.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 34f46ee89cbd2c6cd8d1cd34c2ffa2a2543426774bc472b2031121cfa3827d0d
MD5 c4c04edbbb9fcf20bc23118e87d33220
BLAKE2b-256 06b49e4c2ad5709f88abf43fd2378c1e39383f454cb696b513d73b79dfae181a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-pp27-pypy_73-win32.whl
  • Upload date:
  • Size: 271.1 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.13.0-pp27-pypy_73-win32.whl
Algorithm Hash digest
SHA256 9ef3d795b2d12fbe7f93bc056d64b6b5fe66b067b4cdf7fa15408fd9e01c49d4
MD5 728abf867b0baa185727e4c670ece202
BLAKE2b-256 50b45e08c53b2bcfa87bd8c740a48ec4a5ab5a4ab6585a23d720901a9b0232bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 430.5 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.13.0-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ca8722bb9105a23c73e1f2ec9dc31045ce61278289e03169f5a4bb229cb01032
MD5 6251f35bc0495e2ade20d3ee3ca8f825
BLAKE2b-256 5615d103011cb8d09ba7675c49e33273b64f4b16f366ba5caedeee811442bc1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.13.0-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a77e7f2c60cd299f033dcde3dc2a748d97390e19a33eaea9813925931e82fb27
MD5 ec32b29389157e2e5c5a7dbcec175d60
BLAKE2b-256 7ce70b5dd5a36f26ce8ed8113a09bd0ad0514538f466a3dc7cf2cbc7ccd9fce1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 390.7 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.13.0-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 56a9e34a19a8649b178662b0ddc997c211b3562b3389fd8409e8c2fc08113555
MD5 612d42ee52a7e1f1c4fe7a7572de262d
BLAKE2b-256 92a61c35f1a2db0931f4a2f3f729fbd9f1930b93581c9ca4a4a06be532f1446b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 430.6 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.13.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7a55b7c29dcc542ba4fac22af98b3cc7d432bbe0f118f3705782f93c72376882
MD5 b62850d35460bc0d384c322639609883
BLAKE2b-256 a5aab3d61fa0ece4dce7cc1799852eaaa7529150a8f3aff02605d1ab8d02e51c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 334.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.13.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0e0e31a83ba52196e195d27421468d5898c69f00ae72d9a0b99a1898216b34a5
MD5 2c15f6898461fad987592b6c411b6e14
BLAKE2b-256 947a0e4201e0c7280f62319cb69db01ec2dd515e653aa15e44caca2542b36767

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.13.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dba67af31030e8f51f379ca2ca3ddc6b7872727d16c5fe54a82a232e60acacb3
MD5 b46895107a84802c014ff2edd9be7025
BLAKE2b-256 2088bd3c638f16ebaba9ba0e81b99345a75e2782763a1f59fbbd45884370a7a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.3 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.13.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7645f114b1ccbef08e15f8a13c768f6ee197e612a12559d48eb587b785bd2dc9
MD5 c7b55c5a243141bde566ca306cbc4b59
BLAKE2b-256 8dbeb9b5efaac7661ce4a24de4a3f397fe72aeaaa36e5d10fb5ae41e06438759

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.1 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.13.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e498813a9df05fff248c56f940baba4faa3c038feef24f68b4386d148f420443
MD5 d8a656f3a11e3ffa5a44c116917a773e
BLAKE2b-256 75797925b41e7192eaf6cbcc51e192f99494f6d7534447b377f8524afa953d18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.3 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.13.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9a5bb2d367c200254bf599b9aaf6aff86bc19ba6fa45792adc994c0439f4047f
MD5 1ba460e1747b574ec3d609fa5b73a2e9
BLAKE2b-256 529d720a7d1dfe93e024f6aade758f4022d000b1dd61a3fe22e0ab863897afd3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 3.1 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.13.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 aa84722208c3a268eedb03c9ca93917a2ce9abe916639b01c9a90061e96c4f7b
MD5 969b9fa7460c9be5b125563a85b09893
BLAKE2b-256 797335c3beb93ece1d2d65b0adca39a804f6980baa4e7f104eed5a55b35a5761

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 630.9 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.13.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c2757be6f3b8a06d399277eb88d0bebdeceb4e59442b677b6e114ea0c22bc03
MD5 89deb4d358aa9d6f5cd5a938e31e6e0a
BLAKE2b-256 b233533d244504fbeef93854b179c1573aab02c279071c33c377de9fc9d05efd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 430.9 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.13.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7b5d9993d823c29f8d16833163063912a2d2fd2576d963eb26a382f63cc37fdb
MD5 bb1af1b508c31008848c41158b5a03b1
BLAKE2b-256 7f5102318d4ce47789bf963a00fe1964d406104aae149d64697ba263f2f21226

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 335.5 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.13.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 78206a8d62ab503151da95fa7f6156385c5300172fc905d381489a69f1ea93e1
MD5 92ae3a11473246a81b90cf0dce4213de
BLAKE2b-256 6124e679387a2c68d19ff5fbd91b097766556fcb43b1d803b391d204cb899c4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.13.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19e731aea05060333de9336491f403cae40d12d5d053550e32b80c12cf8c530c
MD5 3b77b9defb90b4d727e4b74665bdca11
BLAKE2b-256 082c0226c5f5f9b8acf36dc277ee6045da50a2096d82aaabab7584e48c85c72a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.6 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.13.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 10933b55970f1b83277803dde3fddbc13aff89faed37bf9bc3e1adbb3ad7306d
MD5 de8df48565d6ec4aee63bb626bdfc144
BLAKE2b-256 b1cf1d7c55a1ffbbc2d3b72731b3f9244ead09459b92f22df47e60c855b219a4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.4 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.13.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 45c5749e3ad566d71d918633e547edddea91492d37b265f10fcf2036cf6ef02d
MD5 39a67192ac452c94377f323342e21d7a
BLAKE2b-256 d5941a1038faf0e4455591af489f5a0f06b9fc6231080568126f5ffc940a3096

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for dependency_injector-4.13.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 af6aa5ab79e120f0a589aaa038e5e9f309714169185050a58f27e15f12613496
MD5 2afb701eeca8795e3ec90b98d9775df8
BLAKE2b-256 e1ccb8cfe230ee2f27dd4001ea9f59a7a43fb72a5a763f42d4157e4886632fd2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 3.4 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.13.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a7f2f13e1af2f4dd48001be83ae36ad7ac3a4131407c2ee2efe82e7a805507a9
MD5 7bb919255f31fffb0d1b686354ff2d5d
BLAKE2b-256 60fc77b2d6aea5e03a6c149609fea3c1272cdf0a4a11b298bba8ca007cd2052a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 626.2 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.13.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 75dca4476e4da82e41faec12acca9eb94b67f03d2ef4b11633a69492de45e236
MD5 64c69806e82d56df484e194d3a9655ff
BLAKE2b-256 d88f5d074543e634e8b01c96b9b382c42a5c229766017f215f15ff81aa57d2f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 408.8 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.13.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7a8801ddd6b9f1cebd8355e9ac997cf7c54f0d7158810a8767ed0accefc9ab48
MD5 60f733337a6bac0f7ac5115c386911df
BLAKE2b-256 1a58b2a811e7993263115605111d56b3cd05e033d0be19acd18d408b189b683b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 325.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.13.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ef3cbeebb44e860fa09a3f226e59a78c9f4999d8e972ea4903ac1559c020a4ac
MD5 c7638ade95ad15e5e1821f6a20e7050c
BLAKE2b-256 5bfdf0d860785c0cc5c9b641d01d30c9521e98b90c6fd5aa8c318608accf99d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.13.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9985eee3cdae5989b8bc5e1df59eb9efdca63bacb85f8089140db2b23ada8bf
MD5 50dc3171de1bbd5341958733e971bb86
BLAKE2b-256 b8ec42234fe629cc26cb245639c4a8e2059270e2e9303e21ff52098454aeae1c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.8 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.13.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 408dcb07fd07a32bc7c516f7eed507096562a3fbbedb7754e8a7f3b4ec6be85c
MD5 4d0f94eeeed96d869545fa0af680dab8
BLAKE2b-256 c0227fd743305d05b44db309175ee48dc63fc9867fa41c21d89c168a27fc366f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 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.13.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7045edb8a36a59bff6359b860d941dfccb67288d41ea834ab116c37071b4e500
MD5 c640da55c44d97de0435283051c05d06
BLAKE2b-256 09381e6fe69f9fffdfb41b106effb48045bc1c828ad585679593ec6d33540b48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.8 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.13.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6c5df5e0942d105a45f3b6c0d2e54df12420ad42c57066fa6fe08137806add72
MD5 8107a807d00327b4d4a5a4f97d303eb8
BLAKE2b-256 b9919d8b9ddc400c1d1b6e8229a92f731c9d831e7b7ea53c34210dc1ca83ecaa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 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.13.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 277442e7fd50f7aaa81f76729aafd01e976f7fb5d71e977cb5ed94b48878fb92
MD5 3f823f52906d273ee578815794b16014
BLAKE2b-256 b8658e068ee29067712595aacebc8bb5d7711528dd1d5e8e26e6e74182a6a8c2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 607.0 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.13.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9c2d01a573d1c5bea9968eff49e05741a7c12b99e5e5268ace16bbb8596bcfb1
MD5 2016d25d0ae0794822a4ee5bc2063e7e
BLAKE2b-256 c1727551b1344823cc7c5d372c2f6de028e642e4bd96f816aa6d0b0b03b32cc5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 406.3 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.13.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e3d45e8cc6da3724cca16dd43df1cca4286aa831309ab844e08e9ed3c5c29f6f
MD5 2ee347e8572e931b8b9b9913eb2a758a
BLAKE2b-256 151c3e33eb5c93cb02b83d7fe2c2828ca6527d6642cc31a6a092e1e3792e4c51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 327.0 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.13.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 5bb8223af4eff981bc597513b040e71590f7765454f1a967654f2c0095a96b6c
MD5 b7b808de763dd242c60b4bacd0b16ef7
BLAKE2b-256 850bc18407dbaa9476bd2c1d9596714f41f1efd9f979109c46e9088bc24ccd3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.13.0-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7379e94bd262e0419b88599a746590d0ba1df077408c13eec006dbe74ce8c25
MD5 310816e66b5335b804957774ed0a8361
BLAKE2b-256 65393b4579d680d88e7fcc57ff6ee719e2b5be3af2c1747f433f72a433beb83f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.9 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.13.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 798c1fc3a6de86534a436312966849440e8c3a3f1b046c105493340476dd6d31
MD5 a055b7b039ce23e1b7418a53745ff0df
BLAKE2b-256 2336c402787c7f8cfe7d978d1740e73897c886704c66d2bef8c0ff8a2b604ce2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.7 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.13.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c01124205f6051dc7b143b735eb98c2e8828b649ea88914a5136601223fe7cce
MD5 75bf518883cc8698c3288ed9de048f75
BLAKE2b-256 8057d2d121ed2159f76da8aed06d85675ac816619a9fd67476cc9167bfe47cea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.9 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.13.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 af05786bc10a5b46fb6afc03667baefa2276a14d334ffe3204c029cdc367e948
MD5 89b01fab5a8a7efdb045e98abcb50427
BLAKE2b-256 233ca85e9614c554ad0a751626ab63cccc584dfd1a3abbc12f8c81edcf7ac0d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.7 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.13.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8343adafa4fe1348e3cdd36dd317079eac97db24d95dc59daa5efa7df8e2193e
MD5 ccaf06d0d9e6d9c6e6fff63ca15b5a5f
BLAKE2b-256 6f08aa7c39afba73daaa5cc3e37b6fb51b25ad57c1489acd97749bc4126b6ae8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 656.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.13.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3eb4f6ce1a9ec79ebb02d53738c293a6d94338777a176914aa637b17832f537b
MD5 1ceca498d531bdd491746b56d0e99398
BLAKE2b-256 9484900bfdbcf5c3f7e991556b3bb8357030ef5cdf04616330075d54af6caa67

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 381.7 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.13.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 ebe68a9bec87f842299ed650addfa51465de7b8346bd25ac95c753537d8f82f2
MD5 2cf089d1978845192a8f4e079b59574c
BLAKE2b-256 d6cc197230f8460a4df29d9d82b1a0c342b4232d8487bbf5308fe7af61d50e9b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 299.1 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.13.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 6c45007f16b07a4a6c47ba9ed6398d4a17815b2864ba61c7d5e16fa3f4e3f026
MD5 8714a74cf3c780f7f79e1ab189db6742
BLAKE2b-256 da9d2cce890ad620b0471d5a0579af589584850a2fd9958fa3961c11ca371560

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.13.0-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a8c0f0ac4d7a09a23e9324a058e51aad034a486833df51c254390fb4c22cbf0
MD5 7a90bc0d32460896213fb77f8806bf5d
BLAKE2b-256 47620fec7e7254895c90051819c4f2d2f0a9419eb48eb50bb65d76caf047bb67

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.13.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e21056643b18759a0ff1931c765d27137357a6f50dfe97a50a92da57f0735194
MD5 ddb588f5b3d8a79dcc66fde961d55541
BLAKE2b-256 3f7a6221fee312e9840c6706f29d94e24fd910657114409bc07b45b9b0e04fb4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.13.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c6b677a66e2ecb681bf71b91bae1b96bc01f78a6fd787eb6a46d79d5bbfc03e2
MD5 4896347e0f26134cf2df927423d850e9
BLAKE2b-256 ae18a061c448cc2cab2c7e87d067fed8936b6a5122866002b2c1513e9d978e9a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.13.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 998ae58fa91247c218e4085494b2e7401f861fd2687229da7ababe6e1e6758fd
MD5 c24d60027ded6a64c4258220197a6d68
BLAKE2b-256 6d4b33ff1bf990e493f3a6444512a7afc27c13efe787ad004eb0c9f75157536e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.13.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b9e33ab26452d1d785abbf7e97afb832f197640d17c820f387c912686d17f8c4
MD5 e8247f8797bf816fd488c26626419910
BLAKE2b-256 f999b7357ac1db8254eddbe28dbb844d8af1e6376660b251542bc0ef8aabc207

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 609.0 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.13.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 771579e4a1b2da37c727442b5ce4a55e4f3c1e1ca9c2a095b2f82bf52d4229b1
MD5 3e8f752b0d6c5cc1e433928d53610b1c
BLAKE2b-256 9b2b1905bad7f59235492cb6034257ddd36a8177bf909214fa0c00960b0a6ec1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.13.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2aedde8277f4a794f5499c08b733641f423c441db8f443403b13da9a2ee34eca
MD5 8e5638a6992d3f05be5f0dcc36e6376b
BLAKE2b-256 6522cae1cc5cbf9830a226cc154a5169d4d436a71e966a47f81cc7e20d6efde4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.1 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.13.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8d27b481a80b6bab28c2b31d4cebfef6c5b47c50c116a3c5bb531d01f755693a
MD5 5186f9d37acf22be58fef9114d5d440c
BLAKE2b-256 c18301137b5eb2a012f844148f276ce14d53804e55143cde96bd8c0b558cabc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.13.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 038a930a34a41710e2fa19b2b5e3513a07d6d9bc03e4398ac76b713b40ff58d2
MD5 4ddb2f39a830d07f4f56ea7665f8b5c4
BLAKE2b-256 7a8df11b3f8694aacac441e66429e8f63eb73e8055c7de3dc6ea0990a7db1aba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 2.1 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.13.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 be988aa8234a84c0e2af25e37a2a9c22d0707e62c4da4853ff90d094d7634191
MD5 d78306d8167d2337c248ef01140e42e9
BLAKE2b-256 81db839f78785a8f9f4000b5225e7fbd300565049fb40b58ce7b51998d7fa1ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 420.5 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.13.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 c5d8012d396d781aa533ac8b5b2021601a6a82172f40235656b1e7c362331142
MD5 c784418326221dc09d4805e2ed937289
BLAKE2b-256 889276d3afefd31c07116bb7edad4e899ced2d97f6bde025dc632bd8bb863c67

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 327.8 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.13.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 dbb3f41835b87a5a28cbcf662ea3298abab925c3fa03df89f90a7f62b8ca71f4
MD5 6d8322a5bcbe3452f6d9f7a1c3497646
BLAKE2b-256 f0f34df75ea9b7e2c432c0779f4035c660e7a95327f5442a7ec084bde0f0d864

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.13.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e3f688073e6a71251ac3f1979103b8dc7d62c189255189184ff5159c1c80d055
MD5 a5e3dff4e2edfbdf98700f0c56310d7d
BLAKE2b-256 97594da83debabf0de50f7861b65cc5f9e62818b05043e27a3ff596be0621a75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.1 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.13.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 656c5ec8362ab17a0e8a90506f2450841357e8aebd0de0a29e11430029e5f948
MD5 1fa37dd22cb659f0860247acc1b6fcb9
BLAKE2b-256 537b96805dfcfd41a5e53d605e06c6124f7d8478ba2e2f8eebfc30971afb894d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.13.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8c021a1dd873a56b479c1fdc137572751bc457c89cdbe4aac8c9cde01fc50eb3
MD5 1aa8efe956d9db9efa76546bb0c5d194
BLAKE2b-256 7dcf9b61c82a578d7e8f3387c2243b5bc587d42aca7e1c079c1e50dca16ac910

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.1 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.13.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 89d6050a541bafe8aac5525432e8b55c3a3e77d3b84a52422d5209f956fe6a36
MD5 2841571e09d311cf4492ccff8af870ef
BLAKE2b-256 355d48cb0830cf5b52871219d0b42f9cde8b38e05f1b3a561d09f4d4e1644513

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.13.0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 591.6 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.13.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e91a1a58dbaa15ffb58c0e7b12f064f0b4c73033e6ab7b1b0e8cb832f2d1a8dc
MD5 ffb714f95ab9f9a7d5ea413b8b8d568f
BLAKE2b-256 2f756ee942088bff3fc994f83a12242daf5df3eb22358618ddf3aaef26c5b74f

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