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 provides you with the container and the providers that help you build your application objects:

from dependency_injector import containers, providers


class ApiClient:

    def __init__(self, api_key: str, timeout: int):
        self.api_key = api_key
        self.timeout = timeout


class Service:

    def __init__(self, api_client: ApiClient):
        self.api_client = api_client


class Container(containers.DeclarativeContainer):

    config = providers.Configuration()

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

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


if __name__ == '__main__':
    container = Container()
    container.config.from_yaml('config.yml')

    service = container.service()

    assert isinstance(service.api_client, ApiClient)

More examples

Installation

The package is available on the PyPi:

pip install dependency-injector

Documentation

The documentation is available on the Read The Docs

Tutorials

Choose one of the following:

Concept

Dependency Injector stands on two principles:

  • Explicit is better than implicit (PEP20).

  • Do no magic to your code.

How does it different from the other frameworks?

  • No autowiring. The framework does NOT do any autowiring / autoresolving of the dependencies. You need to specify everything explicitly. Because “Explicit is better than implicit” (PEP20).

  • Does not pollute your code. Your application does NOT know and does NOT depend on the framework. No @inject decorators, annotations, patching or any other magic tricks.

Dependency Injector makes a simple contract with you:

  • You tell the framework how to build you code

  • The framework does it for you

The power of the Dependency Injector is in its simplicity and straightforwardness. It 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

  • you have no problems when you need to understand how it works or change it 😎

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 get it from the container

Why do I need a framework for this?
  • you need the framework for this to not create it by your own

  • this framework gives you the container and the providers

  • the container is like a dictionary with the batteries 🔋

  • the providers manage the lifetime of your components, you will need factories, singletons, smart config object etc

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

  • it will be extra work in the beginning

  • it will payoff when project grows or in two weeks 😊 (when you forget what project was about)

What features does the framework have?
  • building objects graph

  • smart configuration object

  • providers: factory, singleton, thread locals registers, etc

  • positional and keyword context injections

  • overriding of the objects in any part of the graph

What features the framework does NOT have?
  • autowiring / autoresolving of the dependencies

  • the annotations and @inject-like decorators

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

Uploaded Source

Built Distributions

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

dependency_injector-3.30.1-pp36-pypy36_pp73-win32.whl (191.7 kB view details)

Uploaded PyPyWindows x86

dependency_injector-3.30.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl (297.6 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-3.30.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (268.8 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-3.30.1-pp27-pypy_73-manylinux2010_x86_64.whl (295.3 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-3.30.1-pp27-pypy_73-macosx_10_9_x86_64.whl (270.2 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-3.30.1-cp38-cp38-win_amd64.whl (261.5 kB view details)

Uploaded CPython 3.8Windows x86-64

dependency_injector-3.30.1-cp38-cp38-win32.whl (208.5 kB view details)

Uploaded CPython 3.8Windows x86

dependency_injector-3.30.1-cp38-cp38-manylinux2010_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

dependency_injector-3.30.1-cp38-cp38-manylinux2010_i686.whl (2.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

dependency_injector-3.30.1-cp38-cp38-manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 3.8

dependency_injector-3.30.1-cp38-cp38-macosx_10_9_x86_64.whl (386.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

dependency_injector-3.30.1-cp37-cp37m-win_amd64.whl (244.4 kB view details)

Uploaded CPython 3.7mWindows x86-64

dependency_injector-3.30.1-cp37-cp37m-win32.whl (199.7 kB view details)

Uploaded CPython 3.7mWindows x86

dependency_injector-3.30.1-cp37-cp37m-manylinux2010_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

dependency_injector-3.30.1-cp37-cp37m-manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

dependency_injector-3.30.1-cp37-cp37m-manylinux1_i686.whl (1.6 MB view details)

Uploaded CPython 3.7m

dependency_injector-3.30.1-cp37-cp37m-macosx_10_9_x86_64.whl (371.3 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

dependency_injector-3.30.1-cp36-cp36m-win_amd64.whl (243.6 kB view details)

Uploaded CPython 3.6mWindows x86-64

dependency_injector-3.30.1-cp36-cp36m-win32.whl (200.0 kB view details)

Uploaded CPython 3.6mWindows x86

dependency_injector-3.30.1-cp36-cp36m-manylinux2010_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

dependency_injector-3.30.1-cp36-cp36m-manylinux2010_i686.whl (1.7 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

dependency_injector-3.30.1-cp36-cp36m-manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.6m

dependency_injector-3.30.1-cp36-cp36m-macosx_10_9_x86_64.whl (403.8 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

dependency_injector-3.30.1-cp35-cp35m-win_amd64.whl (229.4 kB view details)

Uploaded CPython 3.5mWindows x86-64

dependency_injector-3.30.1-cp35-cp35m-win32.whl (187.1 kB view details)

Uploaded CPython 3.5mWindows x86

dependency_injector-3.30.1-cp35-cp35m-manylinux2010_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

dependency_injector-3.30.1-cp35-cp35m-manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

dependency_injector-3.30.1-cp35-cp35m-manylinux1_i686.whl (1.6 MB view details)

Uploaded CPython 3.5m

dependency_injector-3.30.1-cp35-cp35m-macosx_10_9_x86_64.whl (370.3 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

dependency_injector-3.30.1-cp27-cp27mu-manylinux2010_x86_64.whl (1.4 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

dependency_injector-3.30.1-cp27-cp27mu-manylinux2010_i686.whl (1.3 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

dependency_injector-3.30.1-cp27-cp27mu-manylinux1_x86_64.whl (1.4 MB view details)

Uploaded CPython 2.7mu

dependency_injector-3.30.1-cp27-cp27mu-manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 2.7mu

dependency_injector-3.30.1-cp27-cp27m-manylinux2010_x86_64.whl (1.4 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

dependency_injector-3.30.1-cp27-cp27m-manylinux2010_i686.whl (1.3 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

dependency_injector-3.30.1-cp27-cp27m-manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 2.7m

dependency_injector-3.30.1-cp27-cp27m-macosx_10_9_x86_64.whl (362.5 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: dependency-injector-3.30.1.tar.gz
  • Upload date:
  • Size: 419.5 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.48.2 CPython/3.8.0

File hashes

Hashes for dependency-injector-3.30.1.tar.gz
Algorithm Hash digest
SHA256 937f7ef640b2d838e0675a18de1585e136f07f1c41f6c6646bd5c1318b3ed772
MD5 d8bd48d32e1c7f12850f671818e0c08b
BLAKE2b-256 b3cdef7afef9fb2e8952b0bb2ff1373faa32517c1085812f5088e4352f261d6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 191.7 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.48.2 CPython/3.8.0

File hashes

Hashes for dependency_injector-3.30.1-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 08fa8edd63b892d7c11edd4fa20f0acc29c686c2128b2d409f1bc111712d6305
MD5 9a0a162b0adc93e54a3b317f3c7976c9
BLAKE2b-256 16d9bf76074ee260ac4c0814b1bebda92b7b0faea1dade0cd759d351cc4d205a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.30.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 93b80a1fffcd3920f7390cf0af0557374d4921df7707117f773ceedacdaf0a08
MD5 945567f894f92ac024aab461a5384e2a
BLAKE2b-256 2d4e8c6e5bf057b465119acb7e208564333d0554fba57867eaa035c417945110

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.30.1-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bdd1c5c3ad70154c78a5ff0375a456d0018edcce65f02f3332ce4dec45912d18
MD5 fa308c5387fc5bf563b2ee8af162cd34
BLAKE2b-256 a2a839f54e7b47c10c7064f88b1e5ef85caf689642eaddb44773ae5b980d9496

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.30.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f1916c145e89afcd2da400233b8d642a535e2dbb40634744239a44c8247ad551
MD5 bcec04ef22171fabd4994885e94af4d8
BLAKE2b-256 2c7f7480ea452b2e71f65663b2e93649cb6561bcb9fb9de2cc92dbc0977b9c27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 295.3 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.48.2 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.30.1-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fb9c5a1f4d5bf7557e0d5c7604b4d4182ce398af8239686c82171910b96b2b1b
MD5 a0211fcd4289646517caabc4c5bad144
BLAKE2b-256 8a5d0907692ebe2aa8d09b6f597d0433d00dd509d797953f052c7ec05c7248f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.30.1-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c0d8270db2c4e16f57a424aa114cdd37d55d0e492dff52c68bf033f35ec1f59f
MD5 b9cf818a63030625c8509ddbd60f249e
BLAKE2b-256 e42f36b47d515c327552aeac025875172b69c1432aedaa0f086fd72a39fd32ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 270.2 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.48.2 CPython/3.8.3

File hashes

Hashes for dependency_injector-3.30.1-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 30afd2e6d662ac862557197f8f04410c5c8fdcc79573c0332eb1bc1e987fa8a2
MD5 32cee2b0b7e03c26d0ca60bf5570a6a3
BLAKE2b-256 0596484ddd6bd61aea8bc38a6e43e78e81b08693db58713d4a12e39ababaa8f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 261.5 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.48.2 CPython/3.8.0

File hashes

Hashes for dependency_injector-3.30.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 37b18acd07bf025ba1dd7f65dc04def92638683e2c4a193a29643cfc95f16d57
MD5 a907a49469c3c2c216746d0cba6a0729
BLAKE2b-256 186fc948ea313b70597861e98e4e1b526d9c2ca3006d511c60b32c424b2e0136

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 208.5 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.48.2 CPython/3.8.0

File hashes

Hashes for dependency_injector-3.30.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 57cadce7dd1c6be59df6338ca5fa56b1f55f9fac89ade081749c95d069d08cbf
MD5 a82ebbc5d9f4805de7cfde95e3553510
BLAKE2b-256 626a1c22091f1e7646105c8f73bc5442235e03a61f0a6903491be04851153173

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.3 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.48.2 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.30.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f6422db365405546cb3c99f84a38b558ba9a6bc10b2120381a3af40fe2d0ac41
MD5 0bbec86dd96ed5e8a1e7d3a3700fb5e8
BLAKE2b-256 52ceba3c2ea6502c61e794e9b13d846cc87db497dce9aa4bfb639a709b443557

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.1 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.48.2 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.30.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7bf92cec427ef7dfa8df2c8402840f74a816b1b798387f2fc34ee202df38fe93
MD5 1411f32b1f5b515b4f8b0c34e81b056d
BLAKE2b-256 12c8d237fb51cfab067b7b713820ace2e6ee34bce7c6224455dbfbb475f9811e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.3 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.48.2 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.30.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 01b8b61938779fa14cf55fcdf9e0b9d82115bc9f86fbd61477e9305cb2be99a3
MD5 10b37e345de4697c88e4a2ba933b516f
BLAKE2b-256 ab6d021d43a6ab3c51a15adb664d110477adebbe3c1a5622c33749f1475784b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 2.1 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.48.2 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.30.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c1250d0cdcaa545e55ff01fd983a8d664fd299c3a51e0f82ddf5b476db870fb5
MD5 ec05a71b779dd17f3e2443e87e45fc45
BLAKE2b-256 b7d5b169646a297d97e67aa8908982a9926910a93e8bfa81ffbdad1b9e13a537

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 386.9 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.48.2 CPython/3.8.3

File hashes

Hashes for dependency_injector-3.30.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7282698a9c5c7a13a87cf84eef44587bd0aad7b40ba7abd828318de07857596c
MD5 673b59b29c6e3415fa47f8b48aa03b3d
BLAKE2b-256 99ee4038bad0af7d2c2332cc15bef0ab4311e5cfbafa34e1ff9550a99929af6b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 244.4 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.48.2 CPython/3.8.0

File hashes

Hashes for dependency_injector-3.30.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7845b676d04ddea32e96833f3ac854dcdbf2778499c2df257d63ce23ea17be7b
MD5 0ed2ce1035f4b811d98b2b7b050d3099
BLAKE2b-256 4f5d11f7c895c0ab74d7924e9fe264cc38f12795e0a038be57ffed7ee8761030

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 199.7 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.48.2 CPython/3.8.0

File hashes

Hashes for dependency_injector-3.30.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 989bd8af74d0a637421bbbd6bc9950d20c97560f1d777530f5291ab7d34e73a4
MD5 6a11aa6d8211a4fbdecbcb950a7126e3
BLAKE2b-256 fbcbb5ad26df75f16b2a3e87f2b2464e3cac6c828c8719cc70047e4b7569ad92

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.8 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.48.2 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.30.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a62e41bcd599b231e525d670ec94716b87ad68ff55eb783ef03e7a3af3ad89b4
MD5 34847558bab53d9cfb7a881818ce78e4
BLAKE2b-256 6e19cde66486c25814c77176599853e781be13b364cfc4a5f2abfe5a1bb6f28b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.6 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.48.2 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.30.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a3812fd046b2d8af8c7806ed051dc1ed37958112e3ce1338112067d42c3be870
MD5 a3fa77df67efd2fa6407f8eb7e7a3f0a
BLAKE2b-256 fdc6a31222c4b7a17795d5ce39c8bc28da043f9cd65c7ce44127d98793dc3c61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp37-cp37m-manylinux1_x86_64.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.48.2 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.30.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6788231f7b5124c37deccb99141c9325ae44cc20af1477c5b537197e13d3efb5
MD5 809b801f51f5ec2dc64c68723b152531
BLAKE2b-256 df0944d095d9d13e8ea3960a1779133a9325803cbb01a0527ffa25998bbd96c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.6 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.48.2 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.30.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 244316a702e3901d8c8ce89fd5224620eec1a3033a6caf286b43c4552b145fc8
MD5 29708486e0c3c27fea267483a51ae94f
BLAKE2b-256 8471f0d3acc00a2de08b439c56d6724e62d68e55bdc30c4bf71f840c7fa0a2cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 371.3 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.48.2 CPython/3.8.3

File hashes

Hashes for dependency_injector-3.30.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2481587813de7dda913406f9c12c5c563240f27ac5a4b0c9b871da229958d46c
MD5 24b011221bdd685c47272dd1ad2856a4
BLAKE2b-256 b62c41f71fb25ba370e6066b9e362de397cf92f390095ad460b04ed09b5087f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 243.6 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.48.2 CPython/3.8.0

File hashes

Hashes for dependency_injector-3.30.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c19a979a15be7360e9fb8f8221b829e8ab615bf707175e3a478a0f68bdd9053d
MD5 09c1994bbf8f4194413ecffd7e273654
BLAKE2b-256 5b1edceaebce6f6f91e2e60b1b131b3c76fe5f7999cc063cd7ddf3861ef1b8c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 200.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.48.2 CPython/3.8.0

File hashes

Hashes for dependency_injector-3.30.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 e2ac70e0b0d7de07cf62e7db99acd85fe6f95bb25f0a27f283d38440c88da7b6
MD5 67bb7ae907e9552d1b5c30d13665621c
BLAKE2b-256 b26508273921f05f1d40b07d3a891cb41609d75591ab520ed1d43b889cdd90cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.8 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.48.2 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.30.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d77af184207623ee265618461a9c4a4085bc41da5be538a264fdbcda2aa75c79
MD5 f7671d12a7c74e3c481591d732c9c285
BLAKE2b-256 c1feced81e234d91c66bb0ec276698e9f6b2e4405e2b6344ea872d58b2b15c2d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.7 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.48.2 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.30.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7d9bda74115ca51d37f59401659ebf6ef9b03ed8a80fe1c31840a281f33266b5
MD5 ce0d04a8768adf5e0c47330a8a4551b2
BLAKE2b-256 107e399bcc729a55efd68110546d95cfdc03fb3b53f808d2c50c989ce4103199

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.8 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.48.2 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.30.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0a76e0bd229b035b356bb315ff6ce7a2c93b972b5e5cced3b0c9c97e12aab3b6
MD5 db619f5db6dd84592b925f61822f893d
BLAKE2b-256 3f74adcec385025b91ea55c1a7774107b6496d200cbb27421905950a5aef820a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.7 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.48.2 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.30.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0e51413f7b3f264fb16952be1c9aad2812bad451e21ec3a8ebaa4d5ee22f0ca5
MD5 72fad251e191bac1b374c7a2fb871138
BLAKE2b-256 91359e999de93012fe7e73f710aa58194460686c4d270852ef4fa192a86c350a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 403.8 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.48.2 CPython/3.8.3

File hashes

Hashes for dependency_injector-3.30.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 07e07acd7deaf2278b66339915d9a5a1c69d597648313a4b5bc17b5c255b9be6
MD5 9ee7573672c934e67a78febb55a3561d
BLAKE2b-256 45752ce90787068d0ff89139a58cc17b675abd211fcd207c8a48dcf29ebc3125

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 229.4 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.48.2 CPython/3.8.0

File hashes

Hashes for dependency_injector-3.30.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 83ad877c7e330333bb941c205be62b5ef0fdfbdfcae0b2bdeb016b13a7840137
MD5 a086c1abe47bdc28ad54e96e5726c2d6
BLAKE2b-256 24e5c9ed92390069bc6f281dc0ac9681677e9965f1d670620387ac04483dbe5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 187.1 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.48.2 CPython/3.8.0

File hashes

Hashes for dependency_injector-3.30.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 dbf8ffa9e331a17640c87ea306c43b9b4b91aa96bac1af5ac31fd62a861a955d
MD5 03e9f9c7f859d87acc33276e6f0fd8f5
BLAKE2b-256 8fe1d080a09c17140a417009dbeda540faf65fed0393f853da558c61416c3fa0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.7 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.48.2 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.30.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 656093592bd9c38f096cf76a50a9bed43df72b3877c0ef4238c17869c75f64ac
MD5 a5921b1595ad9877198d3cc0a297e347
BLAKE2b-256 13c941cc90f90cd13c44bf384368ca35b9cfdc219c44a71ed77630e40d60ead0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.6 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.48.2 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.30.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ffceebc2309a5082f698e9980d4facbb50766735b3c656c5519263200d8caf33
MD5 dc766b21305069ea4aaed10fb00b1764
BLAKE2b-256 bb69f07e31160d89e76acf92cfb2200d300e6c54267b7ab13891bc240d9fe2dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.7 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.48.2 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.30.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 57150cc08615b2fe0ad7eba8d7493fd9210f058dd4a6b95a1cae17b74fbc37fd
MD5 d758970691aa21665c7d200623fa9873
BLAKE2b-256 bec74c18dee52166677796dd2cfb6b3c6feea2c90873946869831741d16881b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.6 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.48.2 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.30.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 290f7f5847724fe2ff19f2a1e2aa87d247a3483c9d48e2f5fcd2b06fa12447d5
MD5 226532dd5786964694186935fac65ae5
BLAKE2b-256 a98fdf36da575f936d008721f8e02d7af40b114fb15e24bf44ded0602a3d7fdd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 370.3 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.48.2 CPython/3.8.3

File hashes

Hashes for dependency_injector-3.30.1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f146175dfe259fadaf6e2596e701a47205076e0fbb07ce76da9f9b13f75c6cc0
MD5 1b006d03c5fa50f8d65f354c9f38588d
BLAKE2b-256 03e43431ed6c9813c2a3c110f562df43d46e2e82011709d97dd8b972aa9d4d2d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.4 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.48.2 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.30.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b02a821ee76b0b4937b292c076c403186b10e4a80200d60a82a66dd92ca8cbf6
MD5 70d1b28fd1a15f0d1cd4a88ae6d56d17
BLAKE2b-256 290f6f5747729b55a238623272676fed865c75b549ffcef06c3c019f93997226

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.3 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.48.2 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.30.1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 275a8e2cc799a6ccb3bf72c979c62a33dd42b646685362a7f8f2238c8cd4ff5b
MD5 f528bba482e80db0c110b79fb16d28a4
BLAKE2b-256 00ed5e55587131aa8ff96130f7bb63ae001031a72594bb091b1611d25c0eb06d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.30.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 644a7cb8a7bc70f2d885db18f20b437d1b2e1a649fb5c4c3b78cf07f80d8f219
MD5 16ec0b6c58876df1a73a8e1e3198215c
BLAKE2b-256 29f93281ea558fdaa7a6afd2f6abb86dab3c4f906986cd0bb15cc8f947c6974b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 1.3 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.48.2 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.30.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b17a128a36f75b613e9570308b8832ba7a96dbd14d185c9892d82bc998c43499
MD5 bc1d17195522e466c2f0396e5bcab66e
BLAKE2b-256 934d4185135c274285503f2a311901acaaa5a92ec2c9e759e2f0e8cd634d50d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.4 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.48.2 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.30.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 530ddfe0615f7657d8edeaf4782777f7b284c7f0c35d12bd75199f2f972949d4
MD5 81dbddfe13e5dfafd86098ee7c6c146b
BLAKE2b-256 474440200bc3da28f51a02fac8615f5e4d70dc545376d8d2300dbfca5233f955

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.3 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.48.2 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.30.1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 440ffeb06c24d00dc12aa6e405c8cd22c282daa7af82d75c9fbcbeb83cad6a53
MD5 38ea84bf575f8627dd4f443d511df447
BLAKE2b-256 f5fd3ee40274be4dea912b8dba2b85ff8b37d65ca0fa1190625ff87089e9ce5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.4 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.48.2 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.30.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 331208102355d54e839cdb405d8fc0dc1c5011a2979275c9d07a5c4531818c93
MD5 68d4fa74b32d69a64e5d2fc368c0c877
BLAKE2b-256 19f78319e280640b2355bfe42452ec4f51d788af2f1d0bb645eb83853f678104

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.3 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.48.2 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.30.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 44d1738a762c20a7088b8a26087356aa848a79dc646c9f076bf49bf132f62455
MD5 466488fac5812551ce8babd64a78835e
BLAKE2b-256 b26528ed941110dafd0d2b2dba79fdd766563eaef02548384f49fe76c6aa42cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 362.5 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.48.2 CPython/3.8.3

File hashes

Hashes for dependency_injector-3.30.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 718f33cfb4b551faca0ff76839390e7afd3b55a015a9b1520384c169f8a32a48
MD5 1770513ac28c42f5e3ed999edad30b7a
BLAKE2b-256 efbe384e34ef9097d7132232679f1ac690d9c467dbdac571b23f88ce382b1412

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