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.

Why do I need it?

Dependency Injector helps you understand and change the structure of the application.

With the Dependency Injector you keep application structure in one place. This place is called the container. You use the container to manage all the components of the application. All the component dependencies are defined explicitly. This provides the control on the application structure. It is easy to understand and change it.

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

The container is like a map of your application. You always know what depends on what.

Flask + Dependency Injector example application container:

from dependency_injector import containers, providers
from dependency_injector.ext import flask
from flask import Flask
from flask_bootstrap import Bootstrap
from github import Github

from . import views, services


class ApplicationContainer(containers.DeclarativeContainer):
    """Application container."""

    app = flask.Application(Flask, __name__)

    bootstrap = flask.Extension(Bootstrap)

    config = providers.Configuration()

    github_client = providers.Factory(
        Github,
        login_or_token=config.github.auth_token,
        timeout=config.github.request_timeout,
    )

    search_service = providers.Factory(
        services.SearchService,
        github_client=github_client,
    )

    index_view = flask.View(
        views.index,
        search_service=search_service,
        default_query=config.search.default_query,
        default_limit=config.search.default_limit,
    )

Running such container looks like this:

from .containers import ApplicationContainer


def create_app():
    """Create and return Flask application."""
    container = ApplicationContainer()
    container.config.from_yaml('config.yml')
    container.config.github.auth_token.from_env('GITHUB_TOKEN')

    app = container.app()
    app.container = container

    bootstrap = container.bootstrap()
    bootstrap.init_app(app)

    app.add_url_rule('/', view_func=container.index_view.as_view())

    return app

And testing looks like:

from unittest import mock

import pytest
from github import Github
from flask import url_for

from .application import create_app


@pytest.fixture
def app():
    return create_app()


def test_index(client, app):
    github_client_mock = mock.Mock(spec=Github)
    # Configure mock

    with app.container.github_client.override(github_client_mock):
        response = client.get(url_for('index'))

    assert response.status_code == 200
    # Do more asserts

See complete example here - Flask + Dependency Injector Example

How to install?

  • The package is available on the PyPi:

    pip install dependency-injector

Where is the docs?

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

Uploaded Source

Built Distributions

dependency_injector-3.24.1-pp36-pypy36_pp73-win32.whl (180.9 kB view details)

Uploaded PyPyWindows x86

dependency_injector-3.24.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl (281.5 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-3.24.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (254.6 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-3.24.1-pp27-pypy_73-manylinux2010_x86_64.whl (281.4 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-3.24.1-pp27-pypy_73-macosx_10_9_x86_64.whl (257.0 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-3.24.1-cp38-cp38-win_amd64.whl (246.8 kB view details)

Uploaded CPython 3.8Windows x86-64

dependency_injector-3.24.1-cp38-cp38-win32.whl (199.1 kB view details)

Uploaded CPython 3.8Windows x86

dependency_injector-3.24.1-cp38-cp38-manylinux2010_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

dependency_injector-3.24.1-cp38-cp38-manylinux2010_i686.whl (2.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

dependency_injector-3.24.1-cp38-cp38-manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.8

dependency_injector-3.24.1-cp38-cp38-macosx_10_9_x86_64.whl (362.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

dependency_injector-3.24.1-cp37-cp37m-win_amd64.whl (231.7 kB view details)

Uploaded CPython 3.7mWindows x86-64

dependency_injector-3.24.1-cp37-cp37m-win32.whl (189.8 kB view details)

Uploaded CPython 3.7mWindows x86

dependency_injector-3.24.1-cp37-cp37m-manylinux2010_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

dependency_injector-3.24.1-cp37-cp37m-manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

dependency_injector-3.24.1-cp37-cp37m-manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.7m

dependency_injector-3.24.1-cp37-cp37m-macosx_10_9_x86_64.whl (347.2 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

dependency_injector-3.24.1-cp36-cp36m-win_amd64.whl (231.0 kB view details)

Uploaded CPython 3.6mWindows x86-64

dependency_injector-3.24.1-cp36-cp36m-win32.whl (190.1 kB view details)

Uploaded CPython 3.6mWindows x86

dependency_injector-3.24.1-cp36-cp36m-manylinux2010_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

dependency_injector-3.24.1-cp36-cp36m-manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

dependency_injector-3.24.1-cp36-cp36m-manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.6m

dependency_injector-3.24.1-cp36-cp36m-macosx_10_9_x86_64.whl (377.2 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

dependency_injector-3.24.1-cp35-cp35m-win_amd64.whl (217.9 kB view details)

Uploaded CPython 3.5mWindows x86-64

dependency_injector-3.24.1-cp35-cp35m-win32.whl (177.5 kB view details)

Uploaded CPython 3.5mWindows x86

dependency_injector-3.24.1-cp35-cp35m-manylinux2010_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

dependency_injector-3.24.1-cp35-cp35m-manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

dependency_injector-3.24.1-cp35-cp35m-manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.5m

dependency_injector-3.24.1-cp35-cp35m-macosx_10_9_x86_64.whl (345.3 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

dependency_injector-3.24.1-cp27-cp27mu-manylinux2010_x86_64.whl (1.3 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

dependency_injector-3.24.1-cp27-cp27mu-manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

dependency_injector-3.24.1-cp27-cp27mu-manylinux1_x86_64.whl (1.3 MB view details)

Uploaded CPython 2.7mu

dependency_injector-3.24.1-cp27-cp27mu-manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 2.7mu

dependency_injector-3.24.1-cp27-cp27m-manylinux2010_x86_64.whl (1.3 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

dependency_injector-3.24.1-cp27-cp27m-manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

dependency_injector-3.24.1-cp27-cp27m-manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 2.7m

dependency_injector-3.24.1-cp27-cp27m-macosx_10_9_x86_64.whl (341.5 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: dependency-injector-3.24.1.tar.gz
  • Upload date:
  • Size: 394.7 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.0 CPython/3.8.0

File hashes

Hashes for dependency-injector-3.24.1.tar.gz
Algorithm Hash digest
SHA256 997a44fbbca715311d6300ad9522cc5fc05a6252c3c2c63a801e233c30e8e53f
MD5 b1910e8f0eafa420ad7f46f4a853cd7e
BLAKE2b-256 6c5fae36af6fb96a7a24c86dbf6406a2e09a1e14a1385cdb6d2fef03d806732f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 943323224fd05c6a5c11c648f612e03ae7d9ef22aa638ee15112deb203c8db0d
MD5 7c43e9f6b54aeb063f2570aefe8dc843
BLAKE2b-256 a8247e45d2f61cd7dd5a98c48415981ffd006ea97f2cb078dfc790e0ca98e08c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.24.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e919b0eb8c03a05228756441d7ae721530587e99e7e004e110fbd024e61bc746
MD5 a8fd5eebb948d1a5a48dd1eae8f3acb0
BLAKE2b-256 ea177d64568972e72e09c4a396d98a55f73ad3d7b8313168dec286d3d1731f6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.24.1-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d0e3080ce2c496b58792a6abf3343f93f197358921f868c4e2c47c96bb6b890b
MD5 483146fab73f10d4e78b32e1c1a3b7c4
BLAKE2b-256 3e005919879a0115a07d37daed46170bbeb3572a07685c7b7af23a220b6cb5b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.24.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 20968cf33b5f65ff889b96f688d4b4aa073ea764588da12be9641226db799719
MD5 29a858d058ad952e692d5a8502016e6f
BLAKE2b-256 9a3187d72661f724af969813d9c5ccf0af20d1a5ecdd062d61af4c4adcf2e79f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 dfc934aeeb478b61796ec37f706f0b329128824b153fa9c300e46ad39fdd1595
MD5 9825f12a023dd62ab56795b78a60f21a
BLAKE2b-256 6f4dca4443bb2fe649a166baebfd96563fefefc9691569ed2ac973474ec22924

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.24.1-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c3e5fcb1737dfb5b618bf736406c94ee27356106b7a79a6957384d995831cfa4
MD5 08a3f9a902a709b59ed58d5edd630981
BLAKE2b-256 db5aea4f4ce5f32f4edefc490635d37c8241c284f794f66e1ddbb9b1169f3a52

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 80163d4d9f1ebfe783a3256539924553392b040c256874996a81ed5741485775
MD5 39b6040d97971081b949af2caf1d51b2
BLAKE2b-256 314995757e79b135440427b670c3ebf15b7fd3b8cfc7134712c580056039d5e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.24.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 246.8 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.0 CPython/3.8.0

File hashes

Hashes for dependency_injector-3.24.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5b8220e2d32ae71d2189edd45b46b35a16b0a31786c20d59aa148407ef57b023
MD5 ddd764f7936d01b327b8fd537f941274
BLAKE2b-256 979d42d7c623676f46e75aeb41ee8310e25f9f6c5916b714a4160c4cf5a698b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.24.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 199.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.48.0 CPython/3.8.0

File hashes

Hashes for dependency_injector-3.24.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2bc51d658f27ddd584fe162ddb9beaf602b02ff7579b21d2aa493782b0595d45
MD5 12b17e0c3fe2341c3532d5ef982c8b8f
BLAKE2b-256 fdaba52618d35688cbe0605ae3f41df1b6aea0539d632ced166347e08cad3448

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.24.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.1 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.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.24.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d48583da9f7a8b231d41baf5bfa3bddbbdacdf66abba943f4130cb2296d53069
MD5 eeb49e04cb31730d2f07bd64a2a1ab16
BLAKE2b-256 a1d23fda0aac4f28cbe52abf81e41335b445fe2a5a00038f4a785e1b22fb4f35

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.24.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.0 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.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.24.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4a143546f064a5716085d22a4692be0ef2967d170276bc0044207447195dfe52
MD5 97f7b24138fa1e199188e6c24a207414
BLAKE2b-256 49bc274235c7be162d12827a073c689564a19bb156d106a1ea88a207e390af66

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.24.1-cp38-cp38-manylinux1_x86_64.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.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.24.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a3752d5f5d5e3df64d4d8ca8c0977ffe591802d4ea2f6011964adc393bc8fc0d
MD5 152d7854b044c76fa2049d1c79117da1
BLAKE2b-256 324dacf7f1c3e641da5c4c66c68616d9b0cb5ddddf1f6b7d9a0ce908f20d5901

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.24.1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 2.0 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.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.24.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 82ea5320fad95b6241f51e64325d8528a1ad3b9e65dd2cc3bcd78e2348f48697
MD5 f2c096bcff29fa75dcd9efca44a2efad
BLAKE2b-256 ac61098ce1c903a031c1a916b4d668f47ff862ebba652e4ce63b8ad1594690ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.24.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 362.1 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.0 CPython/3.8.3

File hashes

Hashes for dependency_injector-3.24.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3f9a086b3db7c1590e6d52cbba2e0d0d5fa5fc83ec83339f0cd3b4e047029c6b
MD5 ca2a97bb6331ed764e57fbad15cc6975
BLAKE2b-256 054cb890e186087d3dbab522fc33785a3824dd47bec0e5ab423af27d2f130c90

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6e282cbdf0cbb2d7c774ab590e89315e8a6960d14524b66ce4208c9aa56c44f5
MD5 67337c90e879bae2cf3c6d512b08db06
BLAKE2b-256 0e9527afa9f0600e6daad3198bed6b6d85044c2d21d39b4f00486d1b7a9a66d3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 9250d2055f9bf54d5bc4232c2c7e99d9a2fb2d40a78307953f7354a72896ea48
MD5 fce818ed5e95031852cfbaf56888b6eb
BLAKE2b-256 776137168d2f5eeea9035a2939c5abfa024b969bb324d480d71e9af81b34ca7c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7b31767719c4556c59a97cf3d07bb863f79af933a7262716352d68a5af721f77
MD5 ca010eb7ad6aa1afbbf8dc1e7175a8f5
BLAKE2b-256 d2095e56771148f203ec13f6fa9e237673041fb5fb57905c8a9714d544eadd8a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9580cee0f28003c468b9ef0444db6f000ea501efedf6be76846d183eb1d6330f
MD5 437e810d546679d99a6ed40ce0337e73
BLAKE2b-256 cb1840b5f829b0731e8783c54f6682f031a576a1d3a08f5947d84396a5397297

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7b6208fb381fcb3f27acb13b34293dcc2762d651506ccaea15f373b5416dcd1f
MD5 16c670ee1f84574981f83ebec219b61d
BLAKE2b-256 8b653e69c6b6a89f201e102bb1c95029cc5086b124c2e7cb1da89c6650713da7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c639c6ff5bbd11a1efa6424cc755c2e206d16939c977e0267c456c138788cbec
MD5 931539ed5ee846cc39a736a7334fd832
BLAKE2b-256 74b4e1ba9d95f258cbd8a773e9d55d2da031daa02bfc143bdbe259177544221e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 613dbfbd9871a5b426c9558725e571b0bd0e9c090b4e83b8a5c0517a7f78b08c
MD5 549123776cb546cf12f168411be2b872
BLAKE2b-256 c8cbd2842d9b83d384607a0ae7d0f47aff1a1cef3c781947569884fe26ac521d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 89a91cc733c7a32ae7d0ea8cca43ae119e0ae00c38d3e5ee7508f8b5538ba0f4
MD5 28434b647af8401395d070ec5e24671c
BLAKE2b-256 d2ce099dc4aa03f8e26e310d2f53639d92ae3f27ed59f204527bc0c419d0d281

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 7420d96d5674c0f68d8621c63b3a28f283e9678d387c350807197384c4ae1265
MD5 d0b48dbd2787ec6ce3668fa5086b5a08
BLAKE2b-256 02f0b122d66163fd6007b257eaf282e425f608105b4c6969f3e061d1f83b9320

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 99e269dcf450060a52cf7878225461e6f7142d6e7a7560e2562fcadf81af6e9c
MD5 55bf8140917ed4fd4b7554ce40edfaf8
BLAKE2b-256 4b1fccd752bbb723af7247db8d4d90711eb176acb866d3e9b9210aed05e91208

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 52147f6b5803f1ae4dc2e6e38434545ccf08589112b8c6080f22370be9d9793c
MD5 574d7cd4af3f9ee3b7625d67d817d760
BLAKE2b-256 af0ee55489df1b1927232093e15dd9deef73d11610e15251d146b5871402167f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.24.1-cp36-cp36m-manylinux1_x86_64.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.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.24.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 58d199a4deffddd267ad76be1ca1e7b452b0fb8bafc079e95a75c1c7ecbf83c1
MD5 9060c79c50bdf619d8c46a23097911fc
BLAKE2b-256 6eec9f46c0bfd3c95cecf2ec2b498339f21a289a291f0ecb7f173631b1a8e04e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 39d09d36c1bc195cbf0f75fc92d4043d3987f68140696bc574c03aba6ab745fc
MD5 12d9aa335ebfaa4e20c1f5b3e164f5aa
BLAKE2b-256 a3c6ee43e48246da711ad2d443fdbfa2b0378c9674ef0a8c501dd0b0ea88bc42

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bc89f2df9c2e6ad8730fe47c5b0b57c0fe367fd6f295e7da36a1ffc0f7a61c5b
MD5 545e7aa8eaba78d0e6d79c22c0e247eb
BLAKE2b-256 19e91184a5321abd76a081498796d8c25bc8a0f159d7762e74eb2673e6b78fa7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 dc5a5d74fe3299fb28bb1fa8ee85d802280fffa93536ba3ae00dc92dfd65506f
MD5 c2efae463f1daec9298ba23d6927efc9
BLAKE2b-256 c2c2ac94744692e69157118a3124dbf518bbc1a9e3f65f3f9dec4058852c8d29

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 846724f93dba35f8d8cb07a9c0908850659160514b4ba888ff33da34882539a6
MD5 7c4874ee26d6d301bcc0755d5e72b9f5
BLAKE2b-256 03173eee14ef977cc119cc26421c00a84559f5cf930984573febf96305e23887

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 15c0fda9ed94793af51384b32c485c24c33d3c53b05aa0d0f880f65914cc1f14
MD5 ee46a552743ee6f10b465232a272d52a
BLAKE2b-256 325aadb09fde14f139cc638701b94f98db44841345ee0ec280cc959c17370bfa

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b024b82db5db6e0035d6a8686e2dd6a304dd6a738257ddbbee7ccbfddfc1ad6d
MD5 118e0a1c2f3072a84328180e02096700
BLAKE2b-256 16b9fef1e0d44451091e13fcfa1dd370aa47f5e7e89934b5e886f9c77137d569

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.24.1-cp35-cp35m-manylinux1_x86_64.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.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.24.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 af569959cf24ae40b348eea91e25826dc7b509c94752feb3e95dae0d8ba11808
MD5 56f316e77ba71a05c14ac482dd5af7df
BLAKE2b-256 c4d22fa032489e063a8da5eca354f986373f8509c7a5d981c00b1342aba7aacc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 26e38038a48adffd68f09ac9c922adbe7b0ed10297198ca90b68d4b0cc2445d8
MD5 853e3cb23d7d5b63c90a1116bd7c076b
BLAKE2b-256 ed46e5be2545c80dfe1ffe8e4b8141c741ded8a4bde2a1ebf6739f8407b995b6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ac9fa6cd5577eeb68ba3b942e167410359ef62f3d60d2d1cf6599ec3890afe50
MD5 c403996b795d641814a44d5e57c4673e
BLAKE2b-256 22d5df5f5aa69ce73e1af5330e5a9bff87c15d67bf799e1adfe92e6d051a96c7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a7e63e13283f9345320284d7aa3af3690505996370c4d39422873445a56e5f76
MD5 9afedc1eaca5bc832ad4d25f81d42fbd
BLAKE2b-256 7feaac0e1ef830ee8852a243d7e45849e4d61c11fde401c4c0fc2a7a5cc95801

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a5c40c5ce48e777691a64b0b5f265e60dbe9a422ccef4b058738e0837877efc1
MD5 47db3351f0fc21484bcd0d8b5591b814
BLAKE2b-256 38ac2db72b362d076b8fbea4fdf9ea8bafe779f65b5b532cfd1463582aa96472

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.24.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c0d20f509b87ccfdce1d34b4a5d7c1d4c1878a15cfe6e51a3f87b625ca1bd810
MD5 95d3b0bfa18d5656475298ebefc0dba3
BLAKE2b-256 c7509f83afd9dcd8889b22e33378eabba2242cfc476060f56423577a96297088

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 45cc00a3a3cd39030ea89e3c32ee02ec5eaff040af0c9fb2a27ebcecf049d2e3
MD5 d963c5fb3731525b668cbf536aea63b5
BLAKE2b-256 c0ba18dc98f1c14da50d216a6b7e02824117c025dc6ae3a80e56b0b8d1d2bd9b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 02126c5ba55e8b5cd9273042f00e76cb7e8ab15961bf0c0a7064b741231f5ab2
MD5 44520e57a862b83d3e9ad203a3f310cc
BLAKE2b-256 a14f793622febe415831cccd89887db62c16f6a12eaa21b75af256f172e3be2a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b91af301db031fd13561995e69f1e8274ee9dae865c15fed88ed5eb46d825757
MD5 99937b2ef17c0c171496e54914947ff2
BLAKE2b-256 b4969356a8ce7352174dff8ec91eb4aaa46470598885c3c8b8c15da2deb0ebf3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.24.1-cp27-cp27m-manylinux1_x86_64.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.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.24.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 816a2fcc2a1d9b11062f10dc78a39bb13a28d55b8d1288e615ea6bfbfffe3e30
MD5 3814621a2abf8cc7ee47140d6853ef88
BLAKE2b-256 f4504250c7c476917ae3517bdeaa1e2e2eb328afa14aeed3dbcdbb9749cb6166

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5e639948784365a78c222bcfc476230a3308b39f2166d712f73b495a09eb75e3
MD5 fcf9c2569c4cfcd9d4e042797caf72bf
BLAKE2b-256 8aa9ed40ab23238b720804b15f478cd491217a11dfc3e18e0f610e121d9a6b90

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4dc5d7fe688748d0b5c48564a0b8853185f923d9412b8ef647858b29d65b406
MD5 045ff1c5953e6b5f8c0d785948074a75
BLAKE2b-256 faf0199c295fddf23898b0fe0578ef0784bc97f9d67364672ba8fdef0e93ff91

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page