Skip to main content

Dependency injection microframework 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 Docs 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, Configuration, 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. Read configuration from yaml & ini files, environment variables and dictionaries. See Configuration provider.

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

  • 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 on the Read The Docs

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.0.4.tar.gz (474.9 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.0.4-pp36-pypy36_pp73-win32.whl (217.3 kB view details)

Uploaded PyPyWindows x86

dependency_injector-4.0.4-pp36-pypy36_pp73-manylinux2010_x86_64.whl (334.2 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-4.0.4-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (305.9 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-4.0.4-pp27-pypy_73-manylinux2010_x86_64.whl (332.8 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-4.0.4-pp27-pypy_73-macosx_10_9_x86_64.whl (307.7 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-4.0.4-cp38-cp38-win_amd64.whl (292.9 kB view details)

Uploaded CPython 3.8Windows x86-64

dependency_injector-4.0.4-cp38-cp38-win32.whl (234.1 kB view details)

Uploaded CPython 3.8Windows x86

dependency_injector-4.0.4-cp38-cp38-manylinux2010_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

dependency_injector-4.0.4-cp38-cp38-manylinux2010_i686.whl (2.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

dependency_injector-4.0.4-cp38-cp38-manylinux1_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.8

dependency_injector-4.0.4-cp38-cp38-manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 3.8

dependency_injector-4.0.4-cp38-cp38-macosx_10_9_x86_64.whl (437.7 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

dependency_injector-4.0.4-cp37-cp37m-win_amd64.whl (273.7 kB view details)

Uploaded CPython 3.7mWindows x86-64

dependency_injector-4.0.4-cp37-cp37m-win32.whl (223.5 kB view details)

Uploaded CPython 3.7mWindows x86

dependency_injector-4.0.4-cp37-cp37m-manylinux2010_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

dependency_injector-4.0.4-cp37-cp37m-manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

dependency_injector-4.0.4-cp37-cp37m-manylinux1_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.7m

dependency_injector-4.0.4-cp37-cp37m-manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.7m

dependency_injector-4.0.4-cp37-cp37m-macosx_10_9_x86_64.whl (421.4 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

dependency_injector-4.0.4-cp36-cp36m-win_amd64.whl (273.0 kB view details)

Uploaded CPython 3.6mWindows x86-64

dependency_injector-4.0.4-cp36-cp36m-win32.whl (224.0 kB view details)

Uploaded CPython 3.6mWindows x86

dependency_injector-4.0.4-cp36-cp36m-manylinux2010_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

dependency_injector-4.0.4-cp36-cp36m-manylinux1_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

dependency_injector-4.0.4-cp36-cp36m-macosx_10_9_x86_64.whl (455.9 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

dependency_injector-4.0.4-cp35-cp35m-win_amd64.whl (257.5 kB view details)

Uploaded CPython 3.5mWindows x86-64

dependency_injector-4.0.4-cp35-cp35m-win32.whl (210.8 kB view details)

Uploaded CPython 3.5mWindows x86

dependency_injector-4.0.4-cp35-cp35m-manylinux2010_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

dependency_injector-4.0.4-cp35-cp35m-manylinux2010_i686.whl (1.8 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

dependency_injector-4.0.4-cp35-cp35m-manylinux1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.5m

dependency_injector-4.0.4-cp35-cp35m-manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.5m

dependency_injector-4.0.4-cp35-cp35m-macosx_10_9_x86_64.whl (419.7 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

dependency_injector-4.0.4-cp27-cp27mu-manylinux2010_x86_64.whl (1.6 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

dependency_injector-4.0.4-cp27-cp27mu-manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

dependency_injector-4.0.4-cp27-cp27mu-manylinux1_x86_64.whl (1.6 MB view details)

Uploaded CPython 2.7mu

dependency_injector-4.0.4-cp27-cp27mu-manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 2.7mu

dependency_injector-4.0.4-cp27-cp27m-manylinux2010_x86_64.whl (1.6 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

dependency_injector-4.0.4-cp27-cp27m-manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

dependency_injector-4.0.4-cp27-cp27m-manylinux1_x86_64.whl (1.6 MB view details)

Uploaded CPython 2.7m

dependency_injector-4.0.4-cp27-cp27m-manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 2.7m

dependency_injector-4.0.4-cp27-cp27m-macosx_10_9_x86_64.whl (410.2 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for dependency-injector-4.0.4.tar.gz
Algorithm Hash digest
SHA256 442f73a22483580c653df4be13f8aa91100eccb29f1e7f976130f9b3cbaf806b
MD5 f7b560a61d2b2ad9b86dbd93dfdb6cfa
BLAKE2b-256 28ad33e3669fb2691a27c908ce67f76d01599358e6b89b0eec434050e2912d0b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.0.4-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 217.3 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.0

File hashes

Hashes for dependency_injector-4.0.4-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 efec7a8a55855fdc50fa4e3f3d59a3cbd18efa4183d3d176f9433fa125ce59eb
MD5 47d6619dda464a2ca52477ba0050a290
BLAKE2b-256 56098d03fefbd193a5616f0240ac16de3ebb5be09dc094c1ba72842f05320411

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.0.4-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c869e3364e249c5d51dc90160f0cdc571adf5a1bb621db32486a130efdc7a7b7
MD5 85f350540571f128de8a7d86514a6a8b
BLAKE2b-256 7dabfcac4522e468854123cd57c91d6ea101012b7b2c67f42944a8c27e5edc17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.0.4-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6cb32b7ede7607604e9bbeb3be50603f96097d540ffad87b6a7924ac924e0e41
MD5 a234c18d200e180c04fc79537fea00c0
BLAKE2b-256 205738c8b88ad661c1bb6bfb5a5833719162bcefa6b8973ba87f5bc3f7c008a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.0.4-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a95ccf2b7509793937d62efcc854a45cdf7bc923c68e07144c9989c7f8f3891e
MD5 746730dbdd6b8d7b1db894bf6ce5034a
BLAKE2b-256 9759eaf1116b4098008de66ff769b5295404bc06bc9a369d16cde51fd62fdc55

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.0.4-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fe67e1e8646b86d5400473605ff4f50352458633e949ec5bcab1cb2f938be80d
MD5 10037c7bcf0d495dd75e50602c856696
BLAKE2b-256 9e401ae12ae55f435b4d9f71058388610f12de91c8bdc37c6c1fbcbc3644397f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-4.0.4-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7eb6c57d28998aae7a2eaedc9a494e4614c4050baf73c31b54d462ceb76b14eb
MD5 4498826b493ccb7b3e204bee0c0ff9cf
BLAKE2b-256 f0901871fdaef4ce07a13a2f225fab3b8db15cd9c3ed1d4b8891464c12354bde

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.0.4-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 307.7 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.3

File hashes

Hashes for dependency_injector-4.0.4-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 800600afffb5652d2699df1258831b48a5469f4fb6e1a30a2ae412672afe634f
MD5 6e1d69d2f5fdb8c9e50adcf532414d0b
BLAKE2b-256 b1f344c225032b502ca22b5236031e244c975cea4bff60aca967870030cd5c78

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.0.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 292.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.0

File hashes

Hashes for dependency_injector-4.0.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 20cb41485ef9451002edc834b97353e62d98332a72161fcf3966779f9e38f673
MD5 4801639fbc88b9b6db3478ed1466b4d7
BLAKE2b-256 fa86303aa78764df2865c64e1b4c55e626fbb95ad15abd4fc8bbc72f665728fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.0.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 234.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.0

File hashes

Hashes for dependency_injector-4.0.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 86aa16724373f58464813d3571cc69c1d372d881e0130899f9014b61e229c647
MD5 13da03d1228ae1c413afb9b18307ed0a
BLAKE2b-256 c26af98a21a1eef7f41dc5d9b13d7bbefb8610439bcc89a815596becfaf8ea7c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.0.4-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fb71afcc010b3fa32acbfa533a137e1e5b00928e4e229452e86ee6dff5442721
MD5 ea379b7695869f61c19629249228119d
BLAKE2b-256 2bbf9bbb6b2aa1902053b6552c04fea11344d34bc0fe1bbf71d3ea098de810cb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.0.4-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5c42275a245ef791684f162998b411907814e30a4197b3daffdd6b731c604096
MD5 11f45f81da6f2ae18d92aa9c49088951
BLAKE2b-256 89a59385d27a04a00c51d81ee9a8bb8d7052f717138c47ae930edaea48a6ca1c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.0.4-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c4d7bef55ac27cdda0109c9867e3f4a541413f7fb495156cac3dc8170ab3c029
MD5 715e98eeeb1a1aa2c727b81e6f81587f
BLAKE2b-256 716920fe3e6c24d9eb53fdf546c9d084eb79a63eb781f3fbac9bc3bda48f3280

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.0.4-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 05a4f39a0ee318ea1a9f0e06db84138cf3c94c84961af97ae5f1f0650f2c33b7
MD5 3825c21dc0807c645fbc5ee092148cf1
BLAKE2b-256 9a4c408433eccc056ed5d87ba148881cfe7e9075fc09251bbc9754e3381d0a2b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.0.4-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 437.7 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.3

File hashes

Hashes for dependency_injector-4.0.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 25a46f2716a7175e203ec37577fc6f3e18d11972f5a999b379368ef06c3b5371
MD5 895b09c1512a97b6dedf56c25c5dd76c
BLAKE2b-256 cc11ad21dbb681d83147005bdf13c34fe3c3b98a0608104bb2858993770a5f7d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.0.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 273.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.0

File hashes

Hashes for dependency_injector-4.0.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8728d29529485d3ab8e8e54b2b7d758de39d472837ba8c822d67080d6b917e34
MD5 c95e9874758802b370e8d4375147de0d
BLAKE2b-256 bfa1cf0dc820bba59c0925200569ae4f9ad02a4b459c020dfe15bb7bc402ce1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.0.4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 223.5 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.0

File hashes

Hashes for dependency_injector-4.0.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 cbc25a33c0d3f26f69c7cbd0430244e951532b61455cb005f8f9b0391863817b
MD5 0d2bafd934d22a7e57844cfc3ca25bf4
BLAKE2b-256 0774c332c58ec9dc33c5daff76a303308958dd62db530b9c13d01c87cc1374cb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.0.4-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 db06576da9d538d1394b9275c7698affed981c57983de725cd50e1cbd685dffe
MD5 41d663fdd67f7d2816504ecdbae825fb
BLAKE2b-256 4882e0f086fe7947d8f1ec770cbe572ea2765552def11c43222aae8a51a3a44b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.0.4-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 158759f763ad4eb0aff45d84d763ac1548ff698e11f70c0acbf8495402b8de2a
MD5 b75cad93c58237cbe468b064654c3dad
BLAKE2b-256 3bf99080b757953b7809d2d5c6dfcf8d680d03f61af4be427b4d82796f64dade

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.0.4-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 587fde7fcb6bb4b60ab9976f2b4d30a305f69ede66685d5bc4773e90a055d96a
MD5 8785dbf5cd3286b56268d1b739564f71
BLAKE2b-256 f5680d04e4839f4ff5371c28ffc88965650cef85e2da29d04bf1ac5bbac8dcec

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.0.4-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 472a81f8f8dea40bedad6a0fcfddd53e7aa9611a8aa9319b4c82caafb1c9b4c3
MD5 a71a67adcd9117da411ca56c299ba847
BLAKE2b-256 69937eb0a340aa21d5e595d8415e8dc892de166c803af7767c2f0ac42bf5e333

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.0.4-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 421.4 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.3

File hashes

Hashes for dependency_injector-4.0.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 699049a3301fe789782d3b2fb711f04e4ab91a9d2769d6412918944a20f7a18f
MD5 91a47f30ac983d1f6e79b2aa9af58b08
BLAKE2b-256 37242b6ae9f804b3af0ee3e378c470e06d36c4932ca6641cf95f2837e2a73f1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.0.4-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 273.0 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.0

File hashes

Hashes for dependency_injector-4.0.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 31fb71433251c9bda9df0a1addc67f17d51864341030b00d087ea07452309713
MD5 310c726a8f9692fe7a213f5096447ed0
BLAKE2b-256 49f69877da17500b5120f07b9cd4004aebb0cefb34946a79d3fd9a4481037786

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.0.4-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 224.0 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.0

File hashes

Hashes for dependency_injector-4.0.4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 fb3752152a86ac57e10231ba0854f9dd93b849eb2c0d7f9fd9700a162ec2ca39
MD5 a765913f9f21ab963a42dd6117d0240e
BLAKE2b-256 c2570629572727efe8ec97a4a2309b6cc6dfbfc95c7dd1a52e0f2c11e4232406

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.0.4-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b7ef31a926f19a8c46e6a855981593798b75785439985f2e76641c2ce457ae57
MD5 d41ede3fc03355dc047a99c12b9b6614
BLAKE2b-256 094f6cbaeb73081916ff21c137a79490b8ee99f30aeee22ed0bffc83c562d27f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.0.4-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.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.0.4-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c741a3c869a2d69d24d65520285ef8479e0c248649414d41c42dae84aba47b43
MD5 c71a7582505dcdbfcb379f7f4e6cf13b
BLAKE2b-256 14441b4e5468ea40cfb87247f0408975dc63c680f2e38d36480c9eaa1587f4f0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.0.4-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4e8b9466455760131786ec448ec2141514b0344437d41752eb3c506c441185cb
MD5 f7b6306796a4428021c69fb737b776ed
BLAKE2b-256 7f9386e580f90eab7323e0e9b555c18ea857bb5ed89dcc0b5f5a934c6df082e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.0.4-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.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.7

File hashes

Hashes for dependency_injector-4.0.4-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 fc8f9b1486de8e2c00a7cce3c27d0f835deed8fe5cbff43091996bc5e0357e58
MD5 55953d5fda77ea50dac5242191bcca3c
BLAKE2b-256 91a1fa8f62b303b27c22a54a2e88dc71debae7a19a76f4385c5345c5d53f6f13

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.0.4-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 455.9 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.3

File hashes

Hashes for dependency_injector-4.0.4-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ede6293544b3da22341256000a752e3795bba25db4d6121a4678d436a1754c45
MD5 ac5a450a474dd163002c87461e700f36
BLAKE2b-256 7c48ecc61dc5964e1d8c8925612a1e52e66b024acecacb9dea70da84d23f597e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.0.4-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 257.5 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.0

File hashes

Hashes for dependency_injector-4.0.4-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 7b3d31aee4b3c50114cf9d10007df7b78a5778408ac95702cd260c68d6cf6667
MD5 1996c53869b75137dcd814973d8db7b1
BLAKE2b-256 d1f779f077417cf00dd329da4a1221a240dddc41e488333dd61380733cea2a71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.0.4-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 210.8 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.0

File hashes

Hashes for dependency_injector-4.0.4-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 263071336929f441ecff096346a02107ae4657ffcfcd5edbc70b604c92aad536
MD5 6bd34e28ab0d0e091bd3441fb0912010
BLAKE2b-256 4fd8b4d4172f00478dea9c036ebc0ff34e7fcef4414229800fee20348466fe18

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.0.4-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c60952381785d0a46a871a61820ea2a16df09f280231363068e9241a4a1aeae8
MD5 d8f55bb9fd9f4368dffb3479a8644d50
BLAKE2b-256 b0e5b1677f82ac2ab808187dd3adf049e9b82b27c724687ff44b088252323b9a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.0.4-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c4900a17ace0d89560d53fabe136990432991979795c2fbd72305055fcdcb2ae
MD5 d1c4e00e38f9e65ca312216cdc2d3635
BLAKE2b-256 a81fb01b75b1baa50015be59589f66b1deb070e7958c1fa9050f1d2c964f5b84

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.0.4-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ae6bbc51f03c4dd0f2d779123991b624d289145f533cf0a2b0bd432517ee9a71
MD5 280929f5e02ad7e3a0cafb4945beac19
BLAKE2b-256 89d18ee1d3a80222f7339c7b9d426f80673b2e264685c8531ef8c369d326d51b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.0.4-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1bfaf30929ee45d54962fd638d3959d33b0cd57cf294dbd3be7885aebf5e0893
MD5 42e5706306ebd5a2f762ac09a211c4ac
BLAKE2b-256 6b3f8b2b47d1ff57eb35ebcabc6c5c6c53522432da4e8d60e4507f4b0b191218

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.0.4-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 419.7 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.3

File hashes

Hashes for dependency_injector-4.0.4-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c16915991b6b791875e645113714e500aadf7a905d8faf0db5d8a8855b602d8b
MD5 d80f20d4e1e3ceb389d08b1cfdfaf461
BLAKE2b-256 e451fa66917e8d1317866caa11afa23ffb1e91ab49f5dc4dd9ab6a0992cdfc67

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.0.4-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 157cdbf4b6a9f18e0551dd36593519687628396f22e7286609be1c20641c2a20
MD5 84ec6425fba48ea04c726bf3fcc62f53
BLAKE2b-256 b610a1e20a6a817450e9d47c1d8dcd474e69d38d91606c642f39f525c98942d8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.0.4-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7a2a031fbc00fc042636efa72698c8e5f2dccd8980746337ef328f3332d5e6c2
MD5 5745337e7101dfd09304ad8d5e80d813
BLAKE2b-256 0d8aaee19854548b8738a1d29fae810c5ec9da67c66588d93a46aac2c4f0fdc8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.0.4-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 568c6c23a557f40e590306382ca1dcc056928fc9804fd0d18d8a4b372b4709ad
MD5 324dc6b85c26ad482a6544647d91bed6
BLAKE2b-256 f9e2c6877f1a3de1063f613e84ac505b2c57f3e10cb455928d174a9bf559e9f6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.0.4-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d5cf353bd4ccaea129b935a2d9afc59487bad4f6343f3a65b9fd0e303413b215
MD5 5673fd4864712ed453f09634e328e39a
BLAKE2b-256 2f3928665516b88eebf519e64b2b2936cea9151ef4d365f61b3d7edbaaddaeee

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.0.4-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5fbac11e818b872f4ba6c1ecac9b7a0c2c818ef80346610ff0dc335a97fb2bda
MD5 b6b9b4505b94a49875cc9a7cef0af4b7
BLAKE2b-256 aa6bc9eb9271cf8860946bc150864d6d1f6faf4881a6b84f43dfebde8aacad56

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.0.4-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9a4032ddb7cfd133e9631d0b6667b570d5996b331c6ab3fbca312c8356335fe5
MD5 84e34be81c7259850878ff93c68bea67
BLAKE2b-256 192e73f774dd7343425acdb8c47cb5659739d41291288bcb621798cf537dcdac

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.0.4-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5971d9cc158a1bacbdc916e61ee6793ee811e989a4c6eb069f3b649589114c5b
MD5 a6a7f27471f1702d5f00be47b7a6181e
BLAKE2b-256 d56ccf848dd1dc8bd4840a8d555c4e03aec334cef556285bb8da3edd9fec06ad

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-4.0.4-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d9b8ccdbb650d76817b3bf9cd1731f6f69fa623de9a6e172d722c671b5bdf57f
MD5 3160da8d5d21631af4d8fe48dbe351d4
BLAKE2b-256 0d8b95a37c86ca113d3097245775c0cda31551a9d8bec7c2fa5f71adddec6e03

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-4.0.4-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 410.2 kB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.3

File hashes

Hashes for dependency_injector-4.0.4-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bbf9d12225e9ca9362ca499812ee779c9ff5a4fef0614e7aef64c8e5d5341eed
MD5 0075237e7c56d17f1eebb190159d76c0
BLAKE2b-256 f65fcea0119051d96065ef6806f72e6eb1bc1139a152b14fa966ec501c251077

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