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.25.0.tar.gz (691.1 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.25.0-pp37-pypy37_pp73-win32.whl (273.5 kB view details)

Uploaded PyPyWindows x86

dependency_injector-4.25.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl (492.8 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-4.25.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (450.7 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-4.25.0-pp36-pypy36_pp73-win32.whl (273.5 kB view details)

Uploaded PyPyWindows x86

dependency_injector-4.25.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (492.8 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-4.25.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (450.7 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded PyPyWindows x86

dependency_injector-4.25.0-pp27-pypy_73-manylinux2010_x86_64.whl (492.8 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-4.25.0-pp27-pypy_73-macosx_10_9_x86_64.whl (454.0 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-4.25.0-cp39-cp39-win_amd64.whl (437.5 kB view details)

Uploaded CPython 3.9Windows x86-64

dependency_injector-4.25.0-cp39-cp39-win32.whl (359.9 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9

dependency_injector-4.25.0-cp39-cp39-macosx_10_9_x86_64.whl (669.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

dependency_injector-4.25.0-cp38-cp38-win_amd64.whl (438.0 kB view details)

Uploaded CPython 3.8Windows x86-64

dependency_injector-4.25.0-cp38-cp38-win32.whl (360.1 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

dependency_injector-4.25.0-cp38-cp38-macosx_10_9_x86_64.whl (665.4 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

dependency_injector-4.25.0-cp37-cp37m-win_amd64.whl (410.5 kB view details)

Uploaded CPython 3.7mWindows x86-64

dependency_injector-4.25.0-cp37-cp37m-win32.whl (345.5 kB view details)

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

dependency_injector-4.25.0-cp37-cp37m-macosx_10_9_x86_64.whl (640.8 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

dependency_injector-4.25.0-cp36-cp36m-win_amd64.whl (409.7 kB view details)

Uploaded CPython 3.6mWindows x86-64

dependency_injector-4.25.0-cp36-cp36m-win32.whl (347.9 kB view details)

Uploaded CPython 3.6mWindows x86

dependency_injector-4.25.0-cp36-cp36m-manylinux2010_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

dependency_injector-4.25.0-cp36-cp36m-macosx_10_9_x86_64.whl (690.8 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

dependency_injector-4.25.0-cp35-cp35m-win_amd64.whl (380.3 kB view details)

Uploaded CPython 3.5mWindows x86-64

dependency_injector-4.25.0-cp35-cp35m-win32.whl (321.6 kB view details)

Uploaded CPython 3.5mWindows x86

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

dependency_injector-4.25.0-cp35-cp35m-macosx_10_9_x86_64.whl (633.1 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

dependency_injector-4.25.0-cp27-cp27m-win_amd64.whl (424.5 kB view details)

Uploaded CPython 2.7mWindows x86-64

dependency_injector-4.25.0-cp27-cp27m-win32.whl (352.7 kB view details)

Uploaded CPython 2.7mWindows x86

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

dependency_injector-4.25.0-cp27-cp27m-macosx_10_9_x86_64.whl (617.9 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: dependency-injector-4.25.0.tar.gz
  • Upload date:
  • Size: 691.1 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.25.0.tar.gz
Algorithm Hash digest
SHA256 9cde71e5be63399fdf629fcde9f35d9d7acaf231ec5d21e2c5c1171b9f1b224a
MD5 0624f3f36fa90b8cf4c04c9ffdbe0e64
BLAKE2b-256 130e8f748e2975b6abf3e9d7b14e6b2d1984a2ca9b946f96c6f67b8a3dc3a07e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.25.0-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 03db9fabdddfaf3dc9569f53e1174220f54385c1e151f58d78162d8613f3f775
MD5 df0e6207cb677bdf49a8c15aacbed759
BLAKE2b-256 660c8991e3600affd73b5232b06db72b7e41fd01832823d023e5fb6438462917

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.25.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 52d901bb0d814d00e9512e1d19086ad47fc8a7358f3e88c1216c4b2c0dde0bfb
MD5 10b69db23f46a6520c52ce0301da497d
BLAKE2b-256 1bbe0459d5ecdb3aec8a4aef09b9fd1cfc84c2d9819f5bfc59bb1115ef4d36c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.25.0-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 09ba6c335bf6519cecdf41522bd510887d7f20c41af58a4d1993e9013d4942d7
MD5 a1091114272af917c86a6f8695ea0cf0
BLAKE2b-256 f2f68d0f6a192d2d766b7ef01ec8dc92232dfc83beaca5bd349f787768e0bfcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.25.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5c5a87b0e30d292fd867aee4907751b59df2fd3b2161610fdeed687cfba9df79
MD5 20de6d1019ca5a912208d75dad4a3d4b
BLAKE2b-256 5cea8e069b80868075e9ce51722db0bcaa178655cbfc30d770365c063930e90a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.25.0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 21aa16b11b6e55b5e34e89183293e58258c709e9c48286539c82deec62c4fab7
MD5 3adcc0800edcd2b247238b2d25365ce0
BLAKE2b-256 8a877656d3fdb18a969dbfb760eb01558f066a5c5317e24410afd9e08ed47df4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.25.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 70dcdd6a9d7d27f4c23a3ebe68b724cc0726a63a07ecd9d0b553932f9bfcdd9b
MD5 8e311a742e56df2760eb32106706b0a0
BLAKE2b-256 ad9136a1c9eed1427540c38b022795231b87bcd225bcbf2282bd46f364ccbf2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.25.0-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 adeb3c97ba1eeeed96c2ee8d1acc6c7071c73a82aa2a7b8b7d254209672e4e0a
MD5 0789dd0d4d65407678aeb4bb5fbf5505
BLAKE2b-256 15b6a85e6ec27d0ceb3434e7c47bdefd0103ef12b1e1e4b80fa3bebb4e7c181c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.25.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 885cabc510d43c2e874af1968c4cc382c904069f36103500ae6fe5e5856db809
MD5 0279d9b5c8166e87f788073113330825
BLAKE2b-256 53b6bf6ec1fd2ee37eec43880ae8732eeece0644d359909b572e1c42c9f5c11e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.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.25.0-pp27-pypy_73-win32.whl
Algorithm Hash digest
SHA256 42ded12d01e6eccc41fb30b4a368ffbabaa4481945c1b1f74ab452691d6ca983
MD5 9a9c309e53c952547f7759ac92304f1b
BLAKE2b-256 858a18b8c13e7fe7a084cc46a1256ee187921a9f8c693d5eccfccf77ff7032a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.0-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 492.8 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.25.0-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8074f037d9ada86d1de4eb163bfac51a159bc173de887d1f44f3999c2da881bd
MD5 b44e2f552cbff7e24652e26b10420179
BLAKE2b-256 2109df5657bd8824d62123ec50abb0ed0d526125ba7e15f45e82ff1a3a5c996c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.25.0-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bca109f1f6ab310070fdb93eea0baedef2b88e5b207ac779dd7fabc9d7667309
MD5 a040f4f42ab10dd0c80433f19ac88722
BLAKE2b-256 c343cd9a474d03fc715f71ac71fe2b732dfb8c78091a99709f5d891b2c40234d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.0-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 454.0 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.25.0-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a814bdb6ac8e3b2aff9c3f2c03049bc90aee974162d6d6f3a097f8f0f5fb7df
MD5 7ce59fd8b89fa6895e4dbe6ec02d7bd5
BLAKE2b-256 a3b65ca1f9fd8f64921e666af9961f6c7e27e83200f0405a8fb0876922c4c1dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 437.5 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.25.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ec4f20cc2784b63c71df7cc12ca2f637d8486834119cc3c687229d01d424090e
MD5 f6990eb923bcc774087690809ba37857
BLAKE2b-256 93c0d6a4fcdc52a5ce6c24c74abe7949a025b6d1d28b4baa83808a1846cb8701

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 359.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.25.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 726abe3a6f856176bfa5d15c53fba20a4667688e593b047a8be9798d5d9209f4
MD5 a0697ffbe5f1db0ad3250d8703640c15
BLAKE2b-256 f12826fda02c6f56aa38fe6cb5c087e0016ebb31390d860d739decb4baefa74b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.25.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0370f06898153cd008447fd60d26c85dd42d6297ed090cdd6d56d8ee680fa20
MD5 235775f1f22cf3bc4473a55bc6b9c38d
BLAKE2b-256 33ad67fc364e5fed762b3bd3ef47f38692495627854856b762fcecb3ffd53d62

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.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.25.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 039b0882d4df372814264721eccf6354124f5ed892093a3ad4bc5fbc4a30e28a
MD5 5c36c0a0933e006646b821a5722f38dd
BLAKE2b-256 87f16d73affaf14b3d1a66697b6fa38c7353774770e6875c3581655d9ad21da9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.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.25.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 08f7f66ffeeb9195d0e44bf7eaca1ab5367e75e7efd746e0ff00e5a110dc408e
MD5 731374b627ad92628db2ad87de3549ae
BLAKE2b-256 50758d8a8abfceeb4f4574f32909c8e528c24331a3e85bd53ecd4421c9d91fcc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.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.25.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 33b3d23f3bffe745d8a84c39354c8cf71a7fca022ea240291f76ac4e2d3c0056
MD5 0ab07189dd40a7af75dbe170c3660249
BLAKE2b-256 25cbcb15c549e1f8736e48f6c3f0f36b09b7b40605d72fcd421f1ad07704f412

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.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.25.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b1e413e4f3756368d5f5861de1726f42b9451d3611198ccd22928f753edb5711
MD5 b86e47369292ab2ea611273529d5d8ef
BLAKE2b-256 8c67c19e6027011438f0b9ec6e79d78dfb133e0fdc0b10c0f78faf5b02ff0d43

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 669.0 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.25.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 65f286728ce8d65aef55a7ed3b0386b961fd58776ef6b388301ec97b5f1ae38d
MD5 d491e8b0152f8773d15873e5b401d8bc
BLAKE2b-256 a074495b0f983c76d43430ff0107488dc522e315681ddb0e3afccefcac00e2d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 438.0 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.25.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 743a96d482c5a632c502b864a5d8d958681bdaa7fdaffb2276ccf79a1e03db80
MD5 bdcb8d92ec7a89715e05092bffeec6f0
BLAKE2b-256 df4ee45e39d273e3db28659806b4560d8311dda31aa08104ed3af05863027627

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 360.1 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.25.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1e18ddcf7eb70d33e331bd9ef82a26521bba8119af44493ae4ccf7c40866d3c2
MD5 9b6330a41bcdae1d2c18406a5aa1e68b
BLAKE2b-256 a0db200086b1d8473569fd5c0e7cb73e8a46c02db2b7c4c9b157edd667cd8d82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.25.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9befdac60c4d48568e5a25fbbf6a610ab35f8df21c41723e77c342151989800e
MD5 c0a5ca7ccf8dc99cba8e563504681eae
BLAKE2b-256 0ea1cde2a1c17d18d4840be1a28faabfefbc8c060876b067cc721e786b2fa324

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.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.25.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2b20055721d8b53385c4b316408473c9aa37c29b3ae1b558e7ebc9adeade9bb7
MD5 de4ac5a8395c25f5ce1ed89ed8cdbe83
BLAKE2b-256 8e37d07d9c688de575907f2dd9acdce6cb5e8cbe6149e41ded3ca74cb13ee20a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.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.25.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 26ccbe572496368059304045ade5c4d6f43534d253512a12d25380f5f996409e
MD5 58b687a7f1cef706411215361b79b7c3
BLAKE2b-256 8260415635798e7751500eeaacb3db0364c1a1a359dadf5f8285111fd91077af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.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.25.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 76b8776384d098d65da4120313143994b3e5258ba18651a0afd45aedbff2ae56
MD5 a4aeffa84e3bb69e1b90cfb5702c72f2
BLAKE2b-256 e84137a017d6654233f3e92941b65daa46bbaa8ba4be15dee7453270c2abe986

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.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.25.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1817d5041a4b13b961baea7597e108d793cfcc84e2ab292139912118f1d2ba84
MD5 5861db62105f320a293c1816efa05cc6
BLAKE2b-256 e14f1a4309940c31322c3fd263bb25a08c7bb59d79ceb57243965c7b3eb7c095

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 665.4 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.25.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 afa16517a3dd4dfbf79181697f83be7ba6b2d6610332325f85e04a143aaf5ad8
MD5 d7e2f8fda26fcc1fc5386204e84f32e9
BLAKE2b-256 8d79e6b0fb39bcc3f5a75961768a58512262d79ba1dd0ff40a2e46d1ca1e315b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 410.5 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.25.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 927ed358f59753b2d069001ca39c6da45ad87423d616e10ab2f20225b303dc84
MD5 7087204dffb130efaa2d7823eb0688fd
BLAKE2b-256 0df4dc8b093db179c3c57cce34bfa8c8704f78f9ea404e60e34b251c6bb84890

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 345.5 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.25.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2f620e4d6d4aa3583456d7bb842572342ce777fda7c1fcf5dc51e6bcd10c77e7
MD5 c412fdd7064273bdde9de8ed1c820521
BLAKE2b-256 205255e3181540c751ee68d653f6262b1a8ced7f72c114df696bd1d274a35700

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.25.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a3781836a0ce48b4956792164ee14cf7012bca237ee59a2d960629c0aaaabad2
MD5 62bc9867592162932c9ed0054554c674
BLAKE2b-256 34f649ccb1a5168fe474c4e9ced7752a19b73047199cf3bba97e90b39b8e91cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.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.25.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 280221257fc88ed450f34653d8b31f482d007293fc93766140a53cc62d08d0ed
MD5 766f901dced7a694c37d13ed0d7aa4c7
BLAKE2b-256 6862aa4859607cd7c2d34f970b89aa78a7e57455f74bceb77b9f27e61dd1a713

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.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.25.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b9f55609e6ca098e92a319b7b12a7f6d3d4b5a5347d3185adbee5d77f53c5852
MD5 452fef4d35f92a01fc515f0b37b4ee31
BLAKE2b-256 17bbfa93b382dda8b70688c8249de0539da327f5ed66aacff83d7857b84d7b66

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.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.25.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 954e7c79655c5c57c9a3a0c31c1f2792513f0eced87146219786714dccf862e9
MD5 07723c45b5dd68ad0f456c0d297d6d77
BLAKE2b-256 dce352681cd4a16282b3a1454528ec7689133d785168490a43db593872ad493d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.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.25.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b98929816b02842c41cc6120002e1fb41d54c15bf92ddc20f34018f9d55ef2f3
MD5 0b586ea0b0c5bfd726c90914ed32a4cb
BLAKE2b-256 661c7167209421fd568a2d8acff5c1035b2b8a90882a8a1438d20600504d00aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 640.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.25.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e639110f698eb6d623d0c8d3451c9a6b1a67f7bcfb56bd4d9f15bc153e365f4f
MD5 f12b859c403971c010d8395697f1dbf6
BLAKE2b-256 51ae44c9c0356601882b4b0608f0f8468a47523ae390031a63aec19b642cce1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 409.7 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.25.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 27a2d48de9e7683aff66976f4fd4a05c7a72f91e452a8992bce8e92f3e7a912a
MD5 a995db6156e64565484f75d6453a07ee
BLAKE2b-256 307d826833394980e569ec0bc89ff9b823e9a62720cc34870d3be0ad87c88149

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 347.9 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.25.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 50c75b61debbe77d9eef532e293784f9453a201631ba318e08f8614000abbb00
MD5 922cbe90f56c8ca05229a5c21fc6e896
BLAKE2b-256 6ce85ffed18c8da7e27565c8938dda53f6fe4dbfa7aeed4310d82cae97be32ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.25.0-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e3b9761d0e52291ba557bd20b4a90b7e06a3eb3a70ff105b654c0f868184709
MD5 577b82f89e415801f6425435f48e2715
BLAKE2b-256 0dc073b7bdc9c8f00c3af77606982b5d085861e50d6fe86b21103437976f519a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.0 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.25.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d34772b24f1fd0fb186ed626bd402c3cd8b0cc8e9f9984f84de1e469cae07422
MD5 2d06cf9e4e743a3e18d01a0a322659db
BLAKE2b-256 c44ca65f78c0fba3edc7905e56b0c4a60bb720b65a16f4f82d83c0f443eff519

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.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.25.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 75173ed702041ff111f1d46e7257edbbdd841622cef3e34e0a3917b93bfec427
MD5 d9e7b491ca94c1fbeb397d356f030bb3
BLAKE2b-256 7701a6253aad5a48c13fb9e1cda83a079a9f7adfc9531170a0c210821b43273b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.0 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.25.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a96366f98c33d81d7592362ba8f35592fb8b8b231a963209e1fa85fbda2178bb
MD5 ede410babef2f415ba990bc74ca0cba6
BLAKE2b-256 2309fd29e62f0a9bebf0bc564625f07a8834e1014671d8b86dda3f34ea835e5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.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.25.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5a499700c6b37f0be1bd06fbf8033d2e9579fb046c4be79bfc36bf453f731f55
MD5 e2941468e1e06cdccd86f833fce36af0
BLAKE2b-256 3ece13975c6ce66e145a50976a404b34838f1d64c4300fb3d1fdb58e11ad1abd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 690.8 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.25.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bb1cec0300ed38d9b87a6433a9141d7292322bb174f755f8038855eead5461e3
MD5 2d53682f798e6d3362faaaf18f2840b1
BLAKE2b-256 b75ff5471bd230376d889645320fd1816177f9a33f06a49311606f39e7f0e914

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 380.3 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.25.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 ff744446054dd1df19a1fd2087ab4b6a10cc2be29a4404a49961e3cf5aa82fcd
MD5 96eb438e4bd22de066a372dcfe056c3a
BLAKE2b-256 5737e8472c33ab9d73184e3d14faaa47bb184061c87cc155bfdec70ad25d347e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 321.6 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.25.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 74fffd88323f1eaa56ab39b2e13535c4c1af6ce67d79acc13a52266d460a4e27
MD5 2a9dbc7f2c4a3500ef9a6ba03f7c6ae9
BLAKE2b-256 6e1d7c53dc940efe2d0e5683488b1df9e3e3dec4047d258f4f727772899ea611

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.25.0-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8548a92320e5666f05fac875c4efa97a4737afbf68c923da66ff537b5c696e7
MD5 3b18b4e40cd8829d2d7e82f618347792
BLAKE2b-256 3aea2e922bfd8fe57c1bf768ede30329e87348f17ccf02dca0d140f5ee690561

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.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.25.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 68bf9286899761422e67a88913d21ddbdf5ff1c0a5571ca820f8d1e94774791f
MD5 f8415b7b4793b4cded3d11a1708f2caf
BLAKE2b-256 4061d88f7e5b280e8eb7cc4b7a7e90d4352c0d90169f8d168886d1aafd0d7239

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.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.25.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 964b38122ad75f995c1916c50dd37e1361d7e985e7349a2cd3a768e583692028
MD5 2ccac7fb247f38e529fd5d4890c8bd4c
BLAKE2b-256 bef5c280c61a7ccecf8d3a2400f3225290b8188e6a6bbb16be598e88a2749f00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.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.25.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5fe2ed0bd63f297a0f4120c1b8fcf1495a9a07cb4c9403fb46ac8aab308ac248
MD5 b3fd40f92e1c83ed1ed073f759beab33
BLAKE2b-256 e9a713c30572b94e3165cce3298fa762a84694f4d9bed0fc46c7da90f5f8e020

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.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.25.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3f6d0b47e785437322fc0715b9cabde8454d7ede9eceaea0f723bf656da5d026
MD5 6773cedff25f3849c4bf82f602cc5b60
BLAKE2b-256 1290004c6fd8123fb6cd0855835517ff8736b282931d18a6b285ce438aa7218a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 633.1 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.25.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9e3ebfb8c01eb7b3e0a07f86a3022a64d13e8f37bbd3d691fb94e207c5683cf9
MD5 fcae3d4be1dcc8e36d97ce79d2f8c9b3
BLAKE2b-256 8809497ab614eaf8732f4cc9e17a0a62b0bdde5f8d084033e2f0ebe40ef6d99e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.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.25.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 99636f2b45a881b5d367114f49d93c0950e0b7fff0c38e37102d70c21c6394b6
MD5 fa201209b68568c6ffc948f95c31184e
BLAKE2b-256 4b60560ebf0cf6d685b5714e4bcdb7d2878df218e9a16accda2f4447d678662d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.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.25.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 262d0a5bf87d1152a9694b355f885196ab6f3d1bbe1a12c12fade548abeda91c
MD5 5b41bac6ae1d0865e3a83f1f0d64afc9
BLAKE2b-256 0100689d47701b728e633bb207de7dfbcc1e0e6fb823601e426f30aa77d07d87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.25.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 91afef5f53c3fecf4d397978821e76b7583c1d3a9f5ec00a0278b3301152703e
MD5 5e09bf54d2b87c8ba4bd6532fb254150
BLAKE2b-256 bb3e3225c257172e5916ab422a1a2dd80d6061cbc429a3e78f75c6066297d142

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.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.25.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f608235fa91312d2d6bd7fe48447df1d22cd9ed0783cd9293877714e6ee70afa
MD5 c4a9cff70a9f920e6baf51e3ca6818a6
BLAKE2b-256 46bc35046b3b6a717211a2c722e616492b59a8552fc8f363d1c91133ecfbf498

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.25.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 f58808fc041629d6bae3c12ebe96120a78e2c95b056bd4f7f04f294a64d9c204
MD5 9edcb295a0a6191bb8b38691ffc968c9
BLAKE2b-256 9874345a40f2100e97f84cc3572f934770e59a45e0c385c52c7aa974abae88e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 352.7 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.25.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 206cadc19fdab7bb31a4d57a79b8f8db2e0acce8f673073c55ff18b36c0df180
MD5 6c6ff9abdd2a31bdc891d2d0972b33a4
BLAKE2b-256 e99615303120c036f9b6c43b056bad1e701d0c7e1042b27cbc2dfb8d9112e342

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.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.25.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 93710d922d27b343d343d48a5a082e8af95b26761b81774a79ac224286084149
MD5 45190a6531aa2d113157e82c9a211784
BLAKE2b-256 0f52bc75a403038c4ea2e97fd229ee993245dfe8bc688cca343a64f12d998816

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.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.25.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 796e67120778ccd15b1d029dd0f7ef8afc860440f148df22671575049f0d12ba
MD5 b34069fd82cfd571289396c5e81f2f5d
BLAKE2b-256 b29dde9f0b2f8574070117ac02b30bb33aa51c2382850a595666c8d9b820a60c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.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.25.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 57d8226ddbe40612abdaeccc171fcbbb691968408739a63eda9d810a0b05a2e9
MD5 eb5cf5f0c3902602352cfe3b2e8a8722
BLAKE2b-256 012b729fd86721d6d808009980443e806a2ae486984f0edaf6b51057b6786c4d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.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.25.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 31d82296ecbda15a2ad7af5c15293032d8a192a9ed7f3ddd8b6c2b1949c2af30
MD5 ccabb2aa9dcb5a4c7c989489252c93ca
BLAKE2b-256 8b7e2b734c5e3110668afae8f968d12f1aaa625fd9b298daf2478fd7cbf22e58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.25.0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 617.9 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.25.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 323f0471ec98c775c7bf4feef6dff4e298097101c9359edee1dd208fd91d95f9
MD5 e54b9b57b746b7e78ac5701b8bde7865
BLAKE2b-256 be394b82d1a250fb1401501965675fbabfbc98f3bc9e319dbdb63d9a7bd9ceb7

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