Skip to main content

Dependency injection framework for Python

Project description

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

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

What is Dependency Injector?

Dependency Injector is a dependency injection framework for Python.

It helps implementing the dependency injection principle.

Key features of the Dependency Injector:

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

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

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

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

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

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

  • Asynchronous. Supports asynchronous injections. See Asynchronous injections.

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

  • Performance. Fast. Written in Cython.

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

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


class Container(containers.DeclarativeContainer):

    config = providers.Configuration()

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

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


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


if __name__ == '__main__':
    container = Container()
    container.config.api_key.from_env('API_KEY')
    container.config.timeout.from_env('TIMEOUT')
    container.wire(modules=[sys.modules[__name__]])

    main()  # <-- dependency is injected automatically

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

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

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

You can override any provider with another provider.

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

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

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

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

Installation

The package is available on the PyPi:

pip install dependency-injector

Documentation

The documentation is available here.

Examples

Choose one of the following:

Tutorials

Choose one of the following:

Concept

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

Explicit is better than implicit

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

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

Frequently asked questions

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

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

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

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

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

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

  • it will be extra work in the beginning

  • it will payoff as the project grows

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

  • 🆕 Start a new project with the Dependency Injector

  • 💬 Tell your friend about the Dependency Injector

Want to contribute?
  • 🔀 Fork the project

  • ⬅️ Open a pull request to the develop branch

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dependency-injector-4.24.0.tar.gz (690.5 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.24.0-pp37-pypy37_pp73-win32.whl (273.2 kB view details)

Uploaded PyPyWindows x86

dependency_injector-4.24.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl (491.9 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-4.24.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (450.1 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-4.24.0-pp36-pypy36_pp73-win32.whl (273.2 kB view details)

Uploaded PyPyWindows x86

dependency_injector-4.24.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (491.9 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-4.24.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (450.1 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-4.24.0-pp27-pypy_73-win32.whl (309.0 kB view details)

Uploaded PyPyWindows x86

dependency_injector-4.24.0-pp27-pypy_73-manylinux2010_x86_64.whl (491.7 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-4.24.0-pp27-pypy_73-macosx_10_9_x86_64.whl (453.6 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-4.24.0-cp39-cp39-win_amd64.whl (437.0 kB view details)

Uploaded CPython 3.9Windows x86-64

dependency_injector-4.24.0-cp39-cp39-win32.whl (358.9 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9

dependency_injector-4.24.0-cp39-cp39-macosx_10_9_x86_64.whl (668.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

dependency_injector-4.24.0-cp38-cp38-win_amd64.whl (437.6 kB view details)

Uploaded CPython 3.8Windows x86-64

dependency_injector-4.24.0-cp38-cp38-win32.whl (360.0 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

dependency_injector-4.24.0-cp38-cp38-macosx_10_9_x86_64.whl (664.6 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

dependency_injector-4.24.0-cp37-cp37m-win_amd64.whl (410.0 kB view details)

Uploaded CPython 3.7mWindows x86-64

dependency_injector-4.24.0-cp37-cp37m-win32.whl (344.9 kB view details)

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

dependency_injector-4.24.0-cp37-cp37m-macosx_10_9_x86_64.whl (639.8 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

dependency_injector-4.24.0-cp36-cp36m-win_amd64.whl (409.3 kB view details)

Uploaded CPython 3.6mWindows x86-64

dependency_injector-4.24.0-cp36-cp36m-win32.whl (347.6 kB view details)

Uploaded CPython 3.6mWindows x86

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

dependency_injector-4.24.0-cp36-cp36m-macosx_10_9_x86_64.whl (690.0 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

dependency_injector-4.24.0-cp35-cp35m-win_amd64.whl (379.8 kB view details)

Uploaded CPython 3.5mWindows x86-64

dependency_injector-4.24.0-cp35-cp35m-win32.whl (321.2 kB view details)

Uploaded CPython 3.5mWindows x86

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

dependency_injector-4.24.0-cp35-cp35m-macosx_10_9_x86_64.whl (632.5 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

dependency_injector-4.24.0-cp27-cp27m-win_amd64.whl (424.0 kB view details)

Uploaded CPython 2.7mWindows x86-64

dependency_injector-4.24.0-cp27-cp27m-win32.whl (352.6 kB view details)

Uploaded CPython 2.7mWindows x86

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

dependency_injector-4.24.0-cp27-cp27m-macosx_10_9_x86_64.whl (617.1 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for dependency-injector-4.24.0.tar.gz
Algorithm Hash digest
SHA256 a3e0d8d04bfa616c2f7eddb63763485c38472db791e49df9fd6dca8f48d17540
MD5 3589e624a05bcc40f423248b5f43a43a
BLAKE2b-256 835b9b6375b7911132392c7aeaf3fe6d7554815d3db2ed12def830e4e29cb35e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 bb6c17a558dc1cb815a750e342d3bfbffb0a5c2c47e78e00bad59e391c492345
MD5 6153db18c5ecd1a897f72ef83b307d09
BLAKE2b-256 7f6a0f230813d3b47d64a6621de262961df407c2a9593eba97db8c266f8b387b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.24.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 66d3b40ef4db4feaee0055d603a971220afd8335960466429287d1e82e04416f
MD5 6d936028fb2b957dea109192b668b752
BLAKE2b-256 5d4975d26f1112bade438ab50f1ef2aeb4f041af6c051b62d22135cd3569fb05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.24.0-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 825cd4d8e6e56cc8896d0a710a165999b3db62e1121dd24d322f46a451522727
MD5 bedd56cd847b6d5c8136811c5dbe2ebe
BLAKE2b-256 0dad5fe433816eb79665334ed792217a5301107b59d320fe160b7421e8aaa9a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.24.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e9fb6c4a196def6d5f7dfe94ddaeea6a08c05871e595cfd34ded4e897a19efdd
MD5 f56fb9a77c36a7a17999c0ab70f92d76
BLAKE2b-256 fe5a6f221566fcbbf0fedd8f48542dd6a744b7c85c31260cd71889ab291e8002

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 aab8465ad9bd5c2aa876c3fe2a163bd9f792c6e7818aef6e7ad1bedf17825c82
MD5 896939f6c5cf61188ec1f1a92aae751a
BLAKE2b-256 339de2cbc05cf3e4e5f1140ab9f72460c32ef944e220bbea1d572012cc3ee52c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.24.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0d21f27fe3787109c8cbea69155b46bd3a2742d59227a587d234a3f485383a45
MD5 e66b115ab66072b433ff278bd85ffcbb
BLAKE2b-256 0fd721d02a56ba5ce26ce5d520a4ca342fc77801c09990ab41ae50213bb7e957

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.24.0-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fcb32a7e09149907bb87ba2e6fce887ef702892274658af7183c3d2cef217f32
MD5 53c91fd1dbfdd2b889d763e3ebe1e17f
BLAKE2b-256 2ae8245dfb03397f801b4f2f67495d33fa255ab18b0a3b78caf7f31932ec6456

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.24.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5baa8265753149a5c10606267ad54015c767447476260dbb7810f7f391d8427f
MD5 c98b6046bb5c355c07544067a59b0f28
BLAKE2b-256 1978b8316af1393d7007f8564ade4bbe816dc80663d8b1572ecf59c6fa829673

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-pp27-pypy_73-win32.whl
Algorithm Hash digest
SHA256 d96919d4425c038c8bbef54ad9605597d7c9bed9e78e6a447c4b6baa1c030cf1
MD5 49680770211b251081a2dd10b06f4b12
BLAKE2b-256 e689d5bca04ddee6b3646606feab244bef65b87611fe5b25965a69a03b882a25

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 785cba3467f1062fa1ebba1479e2acfd09189ee6c0633432835aa5c47fc84600
MD5 0bce5b8d887ba7abeb36a15d1e208d29
BLAKE2b-256 7ff410fb50775e2f63b4b2b7666d056e319ce5d5301abd17ff8fa232e8195a05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.24.0-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7ee69872c929fb8bef38a0540078d1790e77a8f0766ec4562d18257b9d438e1e
MD5 657efab95752a4ccc29894f3c3767c01
BLAKE2b-256 122ef9d880c403aa0161df8b82ffe181bb18078adc34fe3546c4c1355ceafd37

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bf3e6b50713ed3d27e3142e0e2cd9358e45199420fab44c3e013ceb0deefe8fa
MD5 90b4bb424b893adfda4f297691d712e5
BLAKE2b-256 b6ba13edcfbdb7d39a211ec9cacaa46d53d97d81367f9fc43112a9816859ed2d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 144f2db5474e6940e1d714690f45bd06283e62941dffb8c04465e9a1ce150db9
MD5 214eacadb79b07b192895e7be83b8997
BLAKE2b-256 2e410c8f1f55eef07fa5b7fbe85ee5f6735327bb55f17dc3c151b2e7e10483fb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1fb0ca048404fbda3324a9f6391c76cc29f028ac32ed36efab96a40904fc4c59
MD5 cd58f6ea6402359a10ae636f1af45ba5
BLAKE2b-256 52ffbc09d8f38abc43ee0e6bb4a60d99deccfd1fed3290ca1093542e2efe455b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.24.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0a5679c9e55df574f14238c4819a94756659c959248436f364537e8b627f062
MD5 71b11c5a8d2f6d821a6375c0b214afd8
BLAKE2b-256 4190d40a639f3178dc395fe02bbe32bb1916902d0e873e8f64763b9ead766b87

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 048a91a31dc3700c4f25410d6a15b983d6509c195d56153597a3caf566c4a67e
MD5 bf73e32c076a9f671e7096024d70bc39
BLAKE2b-256 f39a63eddb3e8a4ef0092508c5782ce35f3d6d618f9aa6fb784bf210b59c8eaf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4024beab3facf25d35b9d558c920806db47ef983c0c75a3ea897d5833c3546a9
MD5 4f67a282dab37a343209d5a16c098967
BLAKE2b-256 e1d3ce2fd6a325d0f576fd9b76cc82a1a48d62148316983b91d15a1e95d505c0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cbce8c774eaed184ba5b71fe7a190e65d92b8a90e3b6794bb81e770b9ed0ab12
MD5 8596469123d0c1dbb4547e7d35e39e30
BLAKE2b-256 1cdf6b3647c90ab58e6fe6d85aa0a0c5fe3e6c1ffcf07c252349ac9751c823e8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3214732c7636e1ba45bc120dde415356913f707d394d2fec8c5a284d1ab56bbe
MD5 ab2b06f76d4a66bd81f5ec5afb51f99e
BLAKE2b-256 f4f83ee26961b4980db3ea51b650fc258a533aab4cf29aa59d5f06cdd30a50a8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cf0d4009de74ae959cb10abcd5b4f7d9e1f185ccd728cdbfce2ef67ffd2f3dc1
MD5 968e508756330b5c54331eceee266aea
BLAKE2b-256 fda6ca21e2873c590712af7e93b8b9ba87dd33b5dac586113b592d83eee05e6a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 99abcc87fce1db84d0dd4711071f7f46ba194f2491a85d7d21b8c97a46b7b534
MD5 6286b7bede5bb1a57b35379a85c6fe4d
BLAKE2b-256 c5acb4dcc60ccebd6c4a1f0c38c98685f9e36329cc9db5204291d1c935645b84

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b03cbf9f304b973169c9a78eff2b730c4a609b431bd4805bc95caae4ca9da3a7
MD5 c4ec8d15de428aa9b0b1b083bd0479d9
BLAKE2b-256 b32644de99e6c5ad3b0238631a44277c46ef162f462563c7eb5d418ef280cdf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.24.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91d536390b24893a4f414b40925800cb4ea94f7d64d160eeac33a1bca0510079
MD5 7729a7f956bbe872b31d175dc62d511c
BLAKE2b-256 f175d5e9e4c3301c8dd683b560252fb8f59d256c1472daed98a0f41be46fbbac

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 621470dd48cf61d33fa90d621a49722f1599db1c9c422af4ff768b7293d9689d
MD5 e480846da60d2e46f18f416e351c0b97
BLAKE2b-256 ba9f123c900ab12ed51bd2b263af01c380bdc5fe6d7629e307024a6ffa9334ad

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 86759157aba59dfe8bbb8341836886b9f105e8df1639e1c7952e10f2916b2dca
MD5 3df0843603ebd7715c802110ebcb1f4f
BLAKE2b-256 9652297be6705b2ef801a5bd2702ed26d133e22cf9236cbc80171afe8219ac94

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5c706fd2f76ff3f9203b6f6f6e0f2adf90ee98a961aa1f29a0416b89ca93cef1
MD5 3f9f6fdaae1370474482083211813534
BLAKE2b-256 8409714560ae1cd8ced85c42d3e8cef560ac82031a4ba47ead0e8765efa49cce

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b243201c489a6df2d6b7ba9f1f6395dfc289548c9fef309e92267c792e81e61a
MD5 e6f3e4b205cf281f4602a8d01d3d7783
BLAKE2b-256 ce54db92997e8517cdc90c1afd76242e470852fdf9e5c9630064fb19b36e16d9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b26cbca051c4f07fcbacce6705050a5e3b29babef0067ebd76b3334c4ca1d4c1
MD5 e2d1cc50609fa1afe0b678cdae8c2036
BLAKE2b-256 cc3dfa70cc9d1a6fdd1599a881d537a3d304809a1b4642660553e5cd1a33c21b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1af901c4bc20e35db0481abc03ffeb25f197635535f0ee85dad036136771dc68
MD5 863b464f4481d01e089afe493a313e41
BLAKE2b-256 b1d4bf6d4ce6348bf1872c306533603776f7da65ff891843eb1ded950f89661f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.24.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 344.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/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for dependency_injector-4.24.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 aac9a6642c54fb9558961f9023c6d3b3113e2fa1cb5a434e9593d678367467a6
MD5 98a2065dd67a9bae2e8fa5c06f94654f
BLAKE2b-256 017b52e03909d35c3757a07ae8f7f0ea1b89fa691dba37c910dd99c64b847ffc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.24.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70b2da6899d0620448e5e024a42070d18c86032f85a57a398e0354a859cd7494
MD5 9250d67f71c384d9b522befa08258a05
BLAKE2b-256 9fa1061f7690c08a8537d40bb1c83753be34e25f48bc7fae7cfa03a540ebeea6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 805266f5d96eb325773da19ba6b39ed8bc5638589660b717d30cd40782932e90
MD5 e422783824f2883d54d795acba2a21bf
BLAKE2b-256 967f43ec9972caba7d6bddd173baa259b7450da1ecd76987e758b682149b9912

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 84e09553fa5e60163a455628b7c4a2072918f7188f94217c3062eb55a6b364b9
MD5 d70bee4cc481f11d36d97601446ba1be
BLAKE2b-256 dd6c2e17943b85df4763a8d294db33e625989700339e1122e089f250c7bc6a31

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1fcd0632093f1b5bd7bc7060ce1e0b171cddc174e0eac73b5a44d2b1d828cce1
MD5 63914a4b8c4939a22fc2e47f459e2bc7
BLAKE2b-256 6ae80665f37533f182e5029b9576f64bfcbef1548082ebdb1436c32964a73e50

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 91d07bac8ff974a768d5bd9ba5226fa483302020f5054bf47cb935ce881259f0
MD5 f5c68c6e8fdbad4a7ea14155ff01f980
BLAKE2b-256 2f17e05720ae0b3044b1dab931b0270a99088c871c4e389b93f5ff3ff8f82688

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dfefb5cd2fcbc4d43ceb779bfd555ad8c65e83536f86b63e551fe5dae17c2259
MD5 d327d12e82cfa5100ee20a69c374bcb8
BLAKE2b-256 28c734601054bc81d435b4305d7a476289f37f9f6cb2d1ec763582620946c577

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.24.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 409.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/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for dependency_injector-4.24.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3e6cb728fe10c15121cfd3fde102cf53ed8f3fe0a838e78ecc6c556473e99307
MD5 0aabb7aabbdf7b658e563daffbe48520
BLAKE2b-256 469cd2dc91ba36cbfb5cc6df3ba5be49e3de0cd9b73218817df9ed139d79d4a0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 1f2e006836c603f0ae706a3cee8e4fde7c051f7f679e63fc707c0bb40b955c1e
MD5 699aeefd86445ae05d27f0759beb977d
BLAKE2b-256 e1399a11fd8283db31fb1193383e0c431730da48a722f5e31784fa789635704b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.24.0-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c35c7f8936c4d85f6953e9e511722a736975b11052d0b9800b31b1e53fbecc7
MD5 f301bb598c80a4dc04937bbf5bb4731a
BLAKE2b-256 af7e770a73d2f79d6d5fdd9aefd4e3e8cfbea676a7772ff1e2bd8dc64454718f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.24.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/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for dependency_injector-4.24.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 38ce59da353daedcac07964475a55180ac3cea32eba5b81509c2949c839ad588
MD5 c7375ca139dfab29000306548054923c
BLAKE2b-256 b6681f5e9243d203c33ca55bfc54ffa137959aa093e9529cbb1764a423a7548a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c4c98d65d12b4849408bb0db2158371e34bc12b62c8895032ec5899fb4e2aa3d
MD5 c62b2f91a6d2b1bcaee39c9cef4190ae
BLAKE2b-256 6ac2ddea59e5599c3ec91224d2e6f09682e5676b6e6388d79a8bf505b49bf967

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.24.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/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for dependency_injector-4.24.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fe685ac06a00438ab58f33e3f71821bba574e022681e5286bc63063217837d35
MD5 3c93763624bbb54035ecc671524c3543
BLAKE2b-256 603fc803d97bfa5e5335e6dd2e201dc0d889a1928468b087703edc15c3da95f5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 de181083a5049603ec3fcddf9abe278657ddeaf08dc2adba2936d4982234b8e4
MD5 2ecd20e6a08bf8c0e664b18b82754ed4
BLAKE2b-256 726aa9a9a1e32942384be0e051dcc8eeeb556254d38d8221f9536b8a04408787

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.24.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 690.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/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for dependency_injector-4.24.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3689271278f63aab407e32fdf0213084031bdebd634d58dfe273c1a79458bb60
MD5 da323d3d59d4f6be09d7a9fe64a109ff
BLAKE2b-256 1a7db43643956f4cb794ee8fd17a3558e676382cb0b3a2a02fc31509bc15edb3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 384558ea78c762e83e151db86bf8ae8c9030e4c63f4f59bb45cf1cd2e1c80080
MD5 3ec021520967ae770300e6d8a57f1a26
BLAKE2b-256 71500344d09a96018948d9fb3ffc05d0f6b7d2b88e0e12e66b1d3402a9f301d8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 9ee277cfa956748c22cef90d4f1026e8b699c4519989fb80a1e4959b5b9e665c
MD5 2ba496c09657a581e87fdb74f2438237
BLAKE2b-256 ff91e65f216e435c7ae35b72add3e78d3c9f5e31c3e7bc68655628f7c6719525

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.24.0-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe85629ab727d32c7d4e1524f95b3bae0e896181ad1e82f569a72df71716640f
MD5 589dd7368ac6e3b86ccce1ca067760cf
BLAKE2b-256 8e0e6dc087f161d7d4e6998c728cbc354d3e2c24ea54016d2816d02d8b08fb67

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4ba6e767f57c528e5bbc3a2e40c2a2d0b12f501bbecfa84564725685beb3e55c
MD5 1a139163ccb784bfb99d9bf61dcd7c02
BLAKE2b-256 8bbc293338980ede9d06b65869c108ef5dfcb366828b2d9aec1fd3ac4a1a0613

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0c169a690e9c678a651be36e788f61106ab5b4b3b1aade02a60ebb54c158d528
MD5 ee0820b755ee113c9a541568f59e0245
BLAKE2b-256 cd91b2cf5b8f88a899b29f1f4e8150c8e7ad72acb211679dc4d8bf76780dd816

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 53a29247afebffa91eb72d7256d5033593555d65270df0a48322336e72ac3983
MD5 2f1bab7819fbd9f71d40f77b095fb16f
BLAKE2b-256 1930b7d47c5b06819eeee8fd6f04ce8d0bfa7aa0e5a143f02a637b612e1600bb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f0ffef4e531c20590ed498e35808ffaffe7a3fd281e9085124ff0bbfdb750dd6
MD5 a534a12d130b89403d5372056442856f
BLAKE2b-256 b066ceee59cd146252a6d7dbb98bc4fc5cff975d9441e3acfde5b3c033e39c15

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9e2696d45c652a24385f7d56827f16d4da8e323d4af8ab6cc858ec45fef56276
MD5 7ef2408c121a521bc7d928a1988f51bf
BLAKE2b-256 8b3d464f9a61424b895926e435bd3df0e8df03e98b2c6d94c80d8428216ea951

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 81e71094d15713d9501c2853f0f2b2e716fa5292f25df7abcbfcf295f0b73668
MD5 5f00b7e6f39b855fa6fb0f708930c0e4
BLAKE2b-256 557209960c89d58f08baec5237aec232fd2eea0159b3f3e5c75a0424c29c22ba

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bff8e71a66ece886a76a9ffc308e03ba9498f6a6df0d28478f063c99dbb458fc
MD5 1ed39bc62d74dc2d9a00cafcfbbad0c3
BLAKE2b-256 c4415067fb925c0ac59f981e0add4fc86ee6dac9952979e31b4441af31949972

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.24.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 150f6e38421b9aeedb44be25542ffdef4b68de1e1133bacbcfb540f5d97ed93f
MD5 f32bc53cc65cd3b2626219c84ffe0cef
BLAKE2b-256 54b6f736bfe171bf9741cc466fe2038a395bf70d8a3300cb5e217cf890d7f5d6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0f68af91f57d3e3a4c11baf3064ee75c2294de084136263e88ae07ef5a7b1222
MD5 3c2f7af520665a444249f972eceb1692
BLAKE2b-256 a13cd690af2b2125ab5a9be81a66b629b2d72b82c81ccdf1e3461f2ebe97f661

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 666c1ce7fb0a999d85df3c475facda1739dcaba1cb269d739617c4313e9088ac
MD5 d0ea13027098e9e9d5f1770b2d3705eb
BLAKE2b-256 fd98ca0ba6a9d2144fdcb51b38158a08498d661f18970345dec26d606a6ac6b6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 9319636cdfba27d926f2734a7ad75df7b345736da1cd43a3b0e348a0746fd919
MD5 dbe259ebb4b6fb5d19d65f8e6e53eac9
BLAKE2b-256 2a22f22e7e4f49b1ee6c57644a0726812c4331b5ee8e151673369ee9047a24a6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 84073a3d61529e398d9cd9267bd822c8cd83d4ee035af9aac16387d96be75ff6
MD5 e8df2811d9d04f8bffb43ce74a864bbb
BLAKE2b-256 b3a059133c0b4a704abf70d9bf920b15b8db6cb59f4a617bcafa87287d60d0af

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 99bc09c217b2607369b645208c3f2ae223d674f99d20d3010e086af1f9c5ea49
MD5 9773ea8c1692b754593c785b40df2f3b
BLAKE2b-256 cdad5f227665b6c5bacba00851646f52893bd486e791b9ab7dffe430ade68dfc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 164562358499c4de49d7f067da66c5b8809fadd589b1a6b1fda024109472d047
MD5 fcab98e94f1c22f92cbe175b422bee65
BLAKE2b-256 390781b8022fb44bf4cb3913265a5d0713807ea2a64beaf5d156973e80c5137a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c6411eeb104fe000f32e9adb76250757e7b93b6ad85da327a92387fcd0e23911
MD5 3f2468ae1bd830773499ec3ba5e3f669
BLAKE2b-256 97bb8b39eea330b4ae3e29cee762bec72f5b9b9813510fd27f96c25a0d7c452d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.24.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 82ef56ea955d19536cc49f86617f47f97749529147707bd438f430e72c5b58b2
MD5 310599b732a82828b15339debaf37d58
BLAKE2b-256 00c435005c45a5a9d4fbadeae535da13e5aee561de4fae62f0efa72683b76535

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