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, etc. See Wiring.

  • 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 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,
    )


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.3.0.tar.gz (498.8 kB view details)

Uploaded Source

Built Distributions

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

dependency_injector-4.3.0-pp37-pypy37_pp73-win32.whl (197.2 kB view details)

Uploaded PyPyWindows x86

dependency_injector-4.3.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl (353.8 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-4.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (322.6 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-4.3.0-pp36-pypy36_pp73-win32.whl (197.2 kB view details)

Uploaded PyPyWindows x86

dependency_injector-4.3.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (353.8 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-4.3.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (322.6 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-4.3.0-pp27-pypy_73-manylinux2010_x86_64.whl (352.1 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-4.3.0-pp27-pypy_73-macosx_10_9_x86_64.whl (323.9 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-4.3.0-cp39-cp39-win_amd64.whl (307.3 kB view details)

Uploaded CPython 3.9Windows x86-64

dependency_injector-4.3.0-cp39-cp39-win32.whl (242.0 kB view details)

Uploaded CPython 3.9Windows x86

dependency_injector-4.3.0-cp39-cp39-manylinux2010_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

dependency_injector-4.3.0-cp39-cp39-manylinux2010_i686.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

dependency_injector-4.3.0-cp39-cp39-manylinux1_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9

dependency_injector-4.3.0-cp39-cp39-manylinux1_i686.whl (2.3 MB view details)

Uploaded CPython 3.9

dependency_injector-4.3.0-cp39-cp39-macosx_10_9_x86_64.whl (464.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

dependency_injector-4.3.0-cp38-cp38-win_amd64.whl (308.1 kB view details)

Uploaded CPython 3.8Windows x86-64

dependency_injector-4.3.0-cp38-cp38-win32.whl (245.7 kB view details)

Uploaded CPython 3.8Windows x86

dependency_injector-4.3.0-cp38-cp38-manylinux2010_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

dependency_injector-4.3.0-cp38-cp38-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

dependency_injector-4.3.0-cp38-cp38-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.8

dependency_injector-4.3.0-cp38-cp38-manylinux1_i686.whl (2.5 MB view details)

Uploaded CPython 3.8

dependency_injector-4.3.0-cp38-cp38-macosx_10_9_x86_64.whl (461.7 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

dependency_injector-4.3.0-cp37-cp37m-win_amd64.whl (287.3 kB view details)

Uploaded CPython 3.7mWindows x86-64

dependency_injector-4.3.0-cp37-cp37m-win32.whl (235.2 kB view details)

Uploaded CPython 3.7mWindows x86

dependency_injector-4.3.0-cp37-cp37m-manylinux2010_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

dependency_injector-4.3.0-cp37-cp37m-manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

dependency_injector-4.3.0-cp37-cp37m-manylinux1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.7m

dependency_injector-4.3.0-cp37-cp37m-manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.7m

dependency_injector-4.3.0-cp37-cp37m-macosx_10_9_x86_64.whl (445.1 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

dependency_injector-4.3.0-cp36-cp36m-win_amd64.whl (286.3 kB view details)

Uploaded CPython 3.6mWindows x86-64

dependency_injector-4.3.0-cp36-cp36m-win32.whl (235.3 kB view details)

Uploaded CPython 3.6mWindows x86

dependency_injector-4.3.0-cp36-cp36m-manylinux2010_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

dependency_injector-4.3.0-cp36-cp36m-manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

dependency_injector-4.3.0-cp36-cp36m-manylinux1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.6m

dependency_injector-4.3.0-cp36-cp36m-manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.6m

dependency_injector-4.3.0-cp36-cp36m-macosx_10_9_x86_64.whl (478.8 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

dependency_injector-4.3.0-cp35-cp35m-win_amd64.whl (270.9 kB view details)

Uploaded CPython 3.5mWindows x86-64

dependency_injector-4.3.0-cp35-cp35m-win32.whl (220.3 kB view details)

Uploaded CPython 3.5mWindows x86

dependency_injector-4.3.0-cp35-cp35m-manylinux2010_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

dependency_injector-4.3.0-cp35-cp35m-manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

dependency_injector-4.3.0-cp35-cp35m-manylinux1_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.5m

dependency_injector-4.3.0-cp35-cp35m-manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.5m

dependency_injector-4.3.0-cp35-cp35m-macosx_10_9_x86_64.whl (442.1 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

dependency_injector-4.3.0-cp27-cp27mu-manylinux2010_x86_64.whl (1.7 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

dependency_injector-4.3.0-cp27-cp27mu-manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

dependency_injector-4.3.0-cp27-cp27mu-manylinux1_x86_64.whl (1.7 MB view details)

Uploaded CPython 2.7mu

dependency_injector-4.3.0-cp27-cp27mu-manylinux1_i686.whl (1.6 MB view details)

Uploaded CPython 2.7mu

dependency_injector-4.3.0-cp27-cp27m-manylinux2010_x86_64.whl (1.7 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

dependency_injector-4.3.0-cp27-cp27m-manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

dependency_injector-4.3.0-cp27-cp27m-manylinux1_x86_64.whl (1.7 MB view details)

Uploaded CPython 2.7m

dependency_injector-4.3.0-cp27-cp27m-manylinux1_i686.whl (1.6 MB view details)

Uploaded CPython 2.7m

dependency_injector-4.3.0-cp27-cp27m-macosx_10_9_x86_64.whl (428.7 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: dependency-injector-4.3.0.tar.gz
  • Upload date:
  • Size: 498.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for dependency-injector-4.3.0.tar.gz
Algorithm Hash digest
SHA256 ad14010bad0a1d6bfdf1834293aa8ff75ee363a542b5377135bd74d59aecde8e
MD5 60c192f21261bbde8967f8e7875512cf
BLAKE2b-256 17e804ab477ba709241132f1098a3c9a6051cd343771b30a76c7fc44cb3e99dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 197.2 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for dependency_injector-4.3.0-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 8678bc96c5a7db06eeb7f6f8becda4a44e760ef32ae8629a8272a8fb75a2710e
MD5 7b32f1c3afcf7e879b4714b646645231
BLAKE2b-256 3bd03934ba04a0dd8ea1e73edd2f4af531a9c46d2bf54082ad159e943e8554bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.3.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6299ece24c552811f199221c23e7c1e7d50c38692eccc588302219cf2199a380
MD5 177a7a21e33c0dd9adf2430fc39115ce
BLAKE2b-256 00095aaf19a944590eaef3438da3a129151e5787fe17b024b6619427f2fb5b08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.3.0-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e0422c9b075865962bf2dc958128436eddf786db660e1e5600cf72093845ca2f
MD5 b4f88cf099956c5b67afc4d3ca926a5d
BLAKE2b-256 303d21821be4a8aaf77badd4f047c1b4de39e4b613ebd1eaf5698eeb2b045168

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4ab5abb5946b898d0e8a59b6db0784a1f0f4fcb41f1fa02972a1c18bc56093ac
MD5 c528fd2c06fb210f893c453179eaec24
BLAKE2b-256 d8dc567c8cc9e3c065b95cba94c62fbd15200307ee4daf5347f068318deb786d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 197.2 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for dependency_injector-4.3.0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 59618751badecb9a573ff5dd7760d4dd1bfc42e4b0ddc32718a3e519c76a9dd2
MD5 be3d6b8033bbb95858f9cc6f57f28a12
BLAKE2b-256 7a966bc854e0e9519af3fa50f9aa130cd0a3f852b3f5d2fccbb2edb0e48cb1af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.3.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 12e3abee4144d114fda9baa3dc4cc1dc1e8b613cd0eda437a66126ac81b95620
MD5 4ac1c1c9ac322377074567fb998352c6
BLAKE2b-256 25425c4d7ce2a0b582573df832f5865d8ade56e644c17c22f6f4dd6341f4e333

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.3.0-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 18dbb36f03e54eecd1b2888588d66085052ba1df2ddeebf01473c38fdc57f7ec
MD5 4ff2a51115f222c0bbdb4139f462bf96
BLAKE2b-256 18398961176fe567e9527a47b8b746e66ee5bd3cfb920ce2f7f28305909f20be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.3.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7ab8739cb1af699b75809410c67e2d3cbb6af5987a7ca3708aa5e895776a2334
MD5 6870850d00556ed1700a9ee6845d12cf
BLAKE2b-256 e555724bd26a95ddf6ec8a771cf1c3240ff2ef71a895c479878c9ee05186e1f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 352.1 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 513aafd3ccc24c0463ef76670cfbb6525e9dddec98080d9d05c626e6cb4fa2ed
MD5 724749e8a685f3d954a422ff09736146
BLAKE2b-256 be09d17ebce3398280a78d0d604fadbf0665cb30b98adad138770a632dd75828

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.3.0-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 60390aff9e4916c0f308703821d0c5d71dbd6611fc80d9e9c3288b3b5e4d9b6c
MD5 20f6d85660c25dd9412aa2a4c16e1ee4
BLAKE2b-256 0bb529eea99e5acf6f449d2bcee8e17be8a0b6cefdc5f618f6a7a950060a6945

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 323.9 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for dependency_injector-4.3.0-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0a2fd837659df40a49b67a2210d581ad3bd8c58cddae69b1ab5b763c0fd8c6f2
MD5 5e7cf8990fa1964f9625bf33072de55c
BLAKE2b-256 a0851ad0b48a8f27e719b15dd93e657d315e118eb49feb576b035ae2b437770c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 307.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for dependency_injector-4.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7ab79a89bdb6c94a071ef33ff50767a9e89713c2ca8e9b3c8c6ca5e576fc0fe4
MD5 f2db400d741142170b778421ea5024c6
BLAKE2b-256 da704d755d3e7b69ddf9118dbbca33f34660d190cb77a09251fb7ba6f16001b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 242.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for dependency_injector-4.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f535067bc3cd1c64d7889090ad3ada7abe46961c71acce22158048c1d8ac7537
MD5 f7c0d0828068d3f90ac4adf17683a8c4
BLAKE2b-256 e1e7089546e265f31e334f16b555f241a1b72d10342788dd13dd4cc36d689758

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e58769442bf1fabf140bc26482b47b4d2abad02d0d04ea2b16179aa5e4b9bf02
MD5 0e03c83fa34a1f9d82786030f2a1e62b
BLAKE2b-256 311dcf7b007e8b9e39db7abb041fb9f3e3f08c565dced4e728e2b5a79afa9144

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f799bc907fef6b1895cb62728e395a657ec8113522cefb7eeb8d9fa04d1ee0d0
MD5 ac84744959af50c38450970b472300ab
BLAKE2b-256 0762998dcd938248faf411cea933f4576448db6d00dcacf5ae65efa8fef5dac7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0de16891e6d4a6ca4007b361e6c0ee695c9fd732f504b93050ee38d1b075c1c2
MD5 7aac664e18a9177b5511eebee4bde4f9
BLAKE2b-256 7093e69c187bc34d8d53ebb9af99407fd274299b4cc8f6c4f1728726fd6b8789

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 42e7bd1bab87c2a4dc71362bdd7d1552918db4267e3a4b8179d780828053344a
MD5 73241f29f2c6cd082c68ffed94d72a45
BLAKE2b-256 34c41a8e3b9612682e8a027f2cab6243b5160cb21a308295e3041a5246e88110

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 464.3 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for dependency_injector-4.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1e83afd9fbd2d7405dd3df149bdd3b385bd1d788acc1ef1a93f21ebfb2bc6d72
MD5 20443654bd990ffb121436d6062f1911
BLAKE2b-256 ae5d510d3c06c9995cb6b2ec67ce89c5049c5c8c556c4d5bc2b0cadff740604d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 308.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for dependency_injector-4.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5e92332cf83aa4a59366d5192580eb45caade6b42d14205895e5efd1b06ab968
MD5 6f06720a00ec9ad52d6c465f2d81e587
BLAKE2b-256 26cf11142a6c915af336d2a6f9e7b8f4bc19cf7139126d518485a0f69e20b0d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 245.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for dependency_injector-4.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a99f23711ef1d794a7e0c1e731577a3df71ad65d6ae324d8e06a53d2733d67a7
MD5 482e4ce476c8ade87e06dcb7c05fad70
BLAKE2b-256 b8e4c48f816eb262ec1a848aacf0e1b8992c9a345b15cc01a689b02e0fca6d2d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2d93b3981d0d655d99e48f11e7a631fef864658bdf38604a4beb0bfa02572195
MD5 c76c3e26b5ab26e5d1c7f76f34ed3ebb
BLAKE2b-256 121fdc472c52840bd18293008f1193d75729ee64904aa16e40b7194b4656af32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 787455228b167dd52e8d84864be727221ff73e783d7d913484152d12f80f43b3
MD5 8384bf93c3855aeb01020888efced3ee
BLAKE2b-256 c16699862abe3b4b27fa0dc3599a98d01e8a47c6ee4f6b536077d39fed2686bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 58f31a158bc4125639f12bb4409fd643bdc07048c5448c0d54704f0b6223b4f3
MD5 46c259a5dcd59b50a41a70fab5a8f16e
BLAKE2b-256 0ba9b09fd6c0752537c5fa074efb8a10cf16fb447406886e93a3bfd41cb93019

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7740cb4e19d825363d0ce7a994b9ddb59d42a9b31ce7e2316b73514bc4bd04e5
MD5 e6af96963083523abf3f998e27074055
BLAKE2b-256 67a264316e6d490580b48a4baf61938f48460f068f357777307fd02eb7ae7007

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 461.7 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for dependency_injector-4.3.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 063b4edae9feb5b30eab8cfe15122ceab034081de5eb37780b37f579abab36d8
MD5 6b7724a586ac3b105bb0f6fc06a390af
BLAKE2b-256 7ab7efde7ecf13c79119072e1c1e502ec2e9ba7facd05b5c21cea7e72053a1eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 287.3 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for dependency_injector-4.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 12e42ed5be73c0a94a669f98aa4ab19a10d2057664c72bfbcd9e53761fe322e2
MD5 552776610c34f96457437134bd2b90d0
BLAKE2b-256 5edf58ce82a5f5f3eef9246123566bd010e28bc9993aac9204b8b54b9345b439

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 235.2 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for dependency_injector-4.3.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 65fcafce8b755d8b35d99e8631f5cd6fcaefbd746766b639f2f1588676d2f29c
MD5 6542867bec79172f5b1f062a50dace46
BLAKE2b-256 90b529d2ec67f0d259cb49a6a535a069859c6f70a2dbf68fea0ca9a341c8739d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 feeeabd85fdf1769f3bfbbf5ecbbe935bd637d5bbcca921c8d4df70e6dc2b834
MD5 d3431991364b882294bfcfce3995da66
BLAKE2b-256 b821c96e9cabe5f438a9d3c8dafe98d0e287b0e4b79d01a819b8562600abbc87

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b58499d9cd12c22b1621e594e5375ea46e74720ce2725dd882930e2ddd36bb41
MD5 7ef6bbae4ebe92141d8fdadf82050f53
BLAKE2b-256 d70b5a35c49be13b4ce459597f41532b42a9c7edafefb05e520e99c9b326ec03

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2e100d82a148d2da8c5aa67c31c1a5abd0b05525c1699a213f4bf15b85de83ab
MD5 7312e8285579adeedd65a6cf9a9d1525
BLAKE2b-256 9e821d13f05c0e2398dbbcc5ddd20ce1c0af733f207049b3e7d7dec7cc7e047f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 fa836422853fba4c7fb5ef589885047ef16b4fd1ca37678158e237834c8072fb
MD5 fcc4de91fda73b59689738be188401d2
BLAKE2b-256 aae3038eb57dcff4e9fb684d2196afb9d6332df1d58cb435aa7318836d0e0ac9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 445.1 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for dependency_injector-4.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9adacf7b46b1eb59766fd9e280a45076d03d36c6931114a4c52eee646f736be4
MD5 95f32d05f4b8cdb0b5309756b8e599cc
BLAKE2b-256 f34218ac2690b93e8d32698ce0c5d06575900c3f54942f4eef5b1cc7dde592b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 286.3 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for dependency_injector-4.3.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 dfd3bdf29082d129a423382579158bc68d16b70963f9f1ec3721b3edbb53f179
MD5 fde8b15f95ecfab2ae589eac929ae0ed
BLAKE2b-256 af5183bfd44a03d3db91a086cbbcd36a598806e9698c49d7c530fc797465690f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 235.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for dependency_injector-4.3.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 089b3c339b04e3ee6a94149289fa54e740f128e62b1e90791a97a91a6bed1f36
MD5 69121faacfb7b298f4af1054876e966d
BLAKE2b-256 6655100c201a9523f1a18e61794ac96bcafc3c5a627d8ce62fc1091d693eaed0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 89bb59d2d148830ddc3dab160ccef88eb0871accb32b3ada4a804592eadc65c8
MD5 80574b0ff90051a6e76553612d191f3d
BLAKE2b-256 bff1e8f4e340de226dd038ac91b68e099af3f9bf9d41fa1f445c9497fe6af865

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3586311eb5b5f38efb0793d820a72f3be6147471249f7c0766e83a5fea6b66c5
MD5 3fcf464e0909c6eb6cbfffc35fd0c28f
BLAKE2b-256 ecf4417834d3e3e0be7d0746c77b0a91b24aeabe24a44b5be1ea72dc8cbd37e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 25bf8533dc27541ab7c2d397f7504ff89ef424b407f9f1d1ec47e379fc239cb5
MD5 ffbdd1411cebcfcc29be9d86876f1da6
BLAKE2b-256 591e94273fa69d3113245974d9abfa12919523bb428b34c9902b7eb13f49236b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b5e2e2c0ec8b9b5eabd42c2737012c5ccf9d7e63d8fd2005784eadc06e94c784
MD5 b080b3cac11107c09cc47a880342ad32
BLAKE2b-256 8884ae1ea1d2204e8a0dcd1f0942bd205ce66ca3953ef81c76c7c78dfd9ae8a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 478.8 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for dependency_injector-4.3.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3a228c8c904f10b2ef79f2d190e5e69c65b8406bf1372bd2c7a3b2de827c4765
MD5 69de9bfc63ffddf386793c30716d919d
BLAKE2b-256 63d1a20eeb6f87271abaa351b68db07be447484f0e09a8d255343598b2a32d76

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 270.9 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for dependency_injector-4.3.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 86e87c33350ef77b31732218815f17d38bbe80a48f0a2871fe443c54041cab95
MD5 55261c186d467cfce52efc5085621a91
BLAKE2b-256 2445af7fed729fce270602897edb89c678ee497c5f8e58925b0680701ea64bfc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 220.3 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for dependency_injector-4.3.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 3388557b1dac30f134ac8ed76c03e3340cfe5b9b4e7ebbb243c53e2233d4171f
MD5 ddfea8636c305463a72e39a99be732d2
BLAKE2b-256 3998caf5851a716cfcebe3c32861527c70a3c6513014cae156549cd3db9b7a91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3bd0ced3f334f77295e1c7047539e6dcd4c1a553032deb54ada237c0304be9ea
MD5 087c40f0e0e77eec011e8b875522b040
BLAKE2b-256 379d8e59eccdd35a969d886ff67a6f89c9a7e3857fca1700d02aa15a9a0c9178

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1bf7576221e0bfa0d1d4cc180d804985a7460428520cc910ee0f9536432422a7
MD5 96808519329c8ad5a038aef78a196eec
BLAKE2b-256 94cd7eecd42607f824dacdf3ac6edd07bfb4822ebeb9ee9207334d4da6385e28

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ebab2ade580bc3dc147a962e85d6a8782094917b9180f422a55ec9186df2084a
MD5 a6f5dbcb8642019bb064fba96991a515
BLAKE2b-256 a2fbbd89400db4878419d158d2320da18e70efcf84d33ee4b69bfab098c740a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c7a380c922540441390e14ebe19a1f2c187cb3cd469222e5bb3185b5ca1f3753
MD5 c739c3c988968c1dbc97ad7198d8d4fd
BLAKE2b-256 f3fca2b0f34145619b917a8411d0df9c0196c087642b4d10f96058fc325ec5a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 442.1 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for dependency_injector-4.3.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c52b7ace07a619d092b138da11b6b94bd0aa63e401f30ac4c08bdc5a69b317db
MD5 eca8e441a9ab0d14cc299070fbf79353
BLAKE2b-256 25a6badb1aeb321a53a2086d89ceb318b5dd7df4e1a4563875273a72d523564d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c17998c5a5ca256ecb5906b7d3dfed331806d7dd619c1f511d7be5a4273e2f0c
MD5 cf01c994a2359aebd7cc024b6011050b
BLAKE2b-256 c1117eb83d07e0d3daff40a5520151c5e0c8119bafe452149874bc6a63f19ae3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5a21a408c2fe9ae3fc622894e54b387f6979859edf327a5ced34de793d93b798
MD5 66794ab4acc2a6a0325f99135ade27af
BLAKE2b-256 090abc1d9221c7c54fd3d043ab4a66aeec6e02b34c1eb8abecc7331c4df5bc57

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9b4c7453c7998a0453486276cb9a4728390d48341ca2d74e6898933ca9ae3744
MD5 99ba90fa43513073ec8f6a552ebca9bf
BLAKE2b-256 71a8acd59876427cffd86f6641b04541d31ab4b422e23b4b1ebb8ff262e1c559

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 20ed9e9103f5e5fb13db078f084c8db68821ffb19c03512e0948d2203edb2fd1
MD5 34605a86b7bf81dd2dd2d250b72c0400
BLAKE2b-256 3b8ecea877c5b3a28c5d6ee92b3668e8d85d8cd4329c5af738ac82fea9fb1afb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5217ffc031db7ee9a08065f2459d576bcbd957d6c80cd26fe87d6f42159f5aec
MD5 62f58a4c60794d3c40cc2ad7104e685b
BLAKE2b-256 f90af8c5c617be2631d66ada490e93aac5a4bb48b5940b078db7b13491b9b7cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2c2873d529f1dae901bae91c3fd2e29b8685bddfe28b3238272b62f2097f0b9c
MD5 f3b4b78b4d49804eb2c99c063db666aa
BLAKE2b-256 ab42c2e3e3fae9bf60e8046797efd26ebeddab9e0f00ebd35a4a3e933b7118f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 139c6bba33e673dad94f25b33997078e8d387df2a93592d8dd7edb50bd8d579f
MD5 4970613abe3afea00a311f8d09214581
BLAKE2b-256 2f177dde1c00d8f79b207ec8ae1ea2eb61e6658446410a026399df1b9b3a8add

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.3.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 90797354da7316395420f4aaf5a913fbecfd4cd97ff318d49845f1b2c70f37cb
MD5 4ce2dd0ce1826097e24939f4591dc570
BLAKE2b-256 86995a456eb19cb7a0eb6b7122be1e938d9e589f7eb353a694c4925a769c8009

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.3.0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 428.7 kB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for dependency_injector-4.3.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 95dc167cb887febcf54e0f2db059df3e97c8238801d57c82eacaed2af23e9810
MD5 421aadf712889f1268db4d828bb1a061
BLAKE2b-256 a63a4846e6d9ec3aa9b2451fd04f88202bfce62ee3b788f6c906fd53b3e9ecc9

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