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.25.1.tar.gz (394.7 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.25.1-pp36-pypy36_pp73-win32.whl (180.9 kB view details)

Uploaded PyPyWindows x86

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

Uploaded PyPymanylinux: glibc 2.12+ x86-64

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded PyPymanylinux: glibc 2.12+ x86-64

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

dependency_injector-3.25.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.25.1-cp37-cp37m-win_amd64.whl (231.6 kB view details)

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

dependency_injector-3.25.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.25.1-cp36-cp36m-win_amd64.whl (231.0 kB view details)

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

dependency_injector-3.25.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.25.1-cp35-cp35m-win_amd64.whl (217.9 kB view details)

Uploaded CPython 3.5mWindows x86-64

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

Uploaded CPython 3.5mWindows x86

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

dependency_injector-3.25.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.25.1-cp27-cp27mu-manylinux2010_x86_64.whl (1.3 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

dependency_injector-3.25.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.25.1.tar.gz.

File metadata

  • Download URL: dependency-injector-3.25.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.25.1.tar.gz
Algorithm Hash digest
SHA256 f6ba6a4a237c0069ed5b4df795fa666e66d3f7be67c5222dfcc9aa3e67c567d1
MD5 3887ee3b1c59e2db5f4f2cd67bc5e6d2
BLAKE2b-256 c06a223624da162fa6db767615a27fac9f79d3aa33afd32c9d143522e0dd7265

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 7a7888db023c38582f26358f342957954696fa41f0649f10df91c856b3b6665c
MD5 33f510621cca3c49667c75fba3a02684
BLAKE2b-256 df222b02aef0a51cc3900f6768a8732a956879400338822c941d85ed76d58a3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.25.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 95af223b793dbe9d449bc659eda7e3867612ba15aa45585fb004959adc7210d6
MD5 87ef2ce2c068277a3352abc291e6c319
BLAKE2b-256 479db05a745d86aa82bb427452e77412de1f725e98473bcdcfc05527f0449347

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.25.1-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e41b7dbe3c84b18fd8ec495bef51610d40e2eda09b5746e163e88b61789bc52a
MD5 93b8d0dc813e5a65305c469d1f9e139b
BLAKE2b-256 d410ee7a34234d4213f110468388c622da8a9f029999114019eae84a72752b0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.25.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4c9315eae5c1c49f55d24897622d3eb14cd88f9b68978693589d7bb1a2589e7f
MD5 8c500ae32b3835f1a3485d10d498769a
BLAKE2b-256 1c255a7b21545ab5d5739f30f7a05b73340ee35f87c341130ff55c455c82b459

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9b40d2810f07231120ad4f4a595a818ffed16141246d47e43924d3a37eaf8b18
MD5 e9efb36f547a620a18839e3271db4bc3
BLAKE2b-256 4892c330b77261486793d05871a11b55b98b7115e86efe262316cf81a2c353c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.25.1-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 29dacc2983898f6548b1de96a75830085b21beceeaac7a306c01ce3dc487dee9
MD5 01d51e3916311b30e69c9b18f6c7f549
BLAKE2b-256 ca62a08b98dab6567d1b95e18abc0e40d963b0857a6138e7aeebf1e2d8d54cbd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 78f894e87fea199ef76c9285b48f54d53cf8bfc664309401cb9a4d6e01d259b0
MD5 315286df8d921c3341cc161eecee0b3e
BLAKE2b-256 950717b02603575a1cde5b49b630b08bb07297355491cc4073ff8f7d44192fbb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f576ea57cbc54b72bd0c9eb97aef42f24b377af8e745183a3a2644946f0a9737
MD5 65e24a248ad8a53d81a4c2f0d601b8e0
BLAKE2b-256 d0176b0894a6f99f1cff070dd2d1ecb1e0ae82e0d918cfb0ace833a93e9f4ad0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e7ffac87637895e34c98f86f96fe3aa31974b90db92a843b2830dd3402f72f03
MD5 eab1ecde0f3ec18a07494100e47036f2
BLAKE2b-256 f6aa454821675a49ef4dc05fb9af63702e73be49d672364b6ad6a1f75662d879

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3fb10a48b935b7c3d4e66d736eef4879c03507ef1b6953811eb3034e1c1730bf
MD5 8e033119e512a1919f825c5a298357e6
BLAKE2b-256 df21835734f55cad854a9dc2072b0721c3803f51c73847a0274753413d96d626

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c4e79f6151f909d29d621a5d3c6dcb4ae9a7850d63e4495ba421d5e785d4cc72
MD5 56a2d0619294fc9639b1b576ed58abec
BLAKE2b-256 9ba9abf09ae090a59c8da94e1b968457e067125928f0e39e2df9197c073709b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a8b51a5b721e0ed6006be8c2a6b03005bf5aeef9453d306e20d259c950c2cdde
MD5 e4a6ae9f62c69764556c726adf0956cf
BLAKE2b-256 2e0f8ec2e81f86fa36d02d1f592f79dc313c7e89e58bd2c9ae615f428493eaf6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 dcdd45893c4a14b0dcfc65544e0154b3f83202482fb99f955b424507be7aa1ab
MD5 8d095376e499fdebb58340d24fd72e1c
BLAKE2b-256 ce2fd3ae336b40c9b9837aefb400df8e424d935f4dcbcb9aae8eec6824fcad83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 17f5dd06300102073c11d6d285d17dde8ef404319d84fc1fc90e9decba519df7
MD5 f950b85bff17352fd49e5bcdd6478280
BLAKE2b-256 ac322134f0d16aeaa0bf899af6aaba65e627e99075bd689fe9a0fee9cd20a7db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 231.6 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.25.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f093084653b3e3932ed475be9b959312a96435a674431b86a953ab2978fc8083
MD5 0f3389cd7a007579b20085bf6d10bebf
BLAKE2b-256 2689a131675350bfae310f30d30f9b2b8ee2595fe1e4afa7de2ae1f958db4e64

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 71e9af626beede92c868cbb8f8da79a145ac0ca759500d371294214a5a253a10
MD5 2a81b9b4de4e51aaa0354dd61f669d4e
BLAKE2b-256 875cd55e1ed5b070e8047f88d560b2e451a55a0f416d58a697bac9d2e41767ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d535a1eeca24f91625b2385dd337048c7854b5772fe879adfd22b400819f8ddd
MD5 7a68c21dda83311d599b529d695ac7b3
BLAKE2b-256 f020c32748b1638eff0224e24c7b7e85fa51374ec51b3c0755509599b8e135dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d88c3197cc43a1348645198990686fb3d999050c5866493adcb55aaa31f9d5fc
MD5 bbe88420cfe4581b003c681ae2bbf274
BLAKE2b-256 d842b6e951fb270248cb36b9037e904c12b80f33a4be1bf135f68629c5e0e62e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a26e88e4f45b0c685c0ca1f0fe9e73262775ce83d6d381567c3d0cfe80fd78ac
MD5 650d1b841738773015feb2eeff14abc3
BLAKE2b-256 f20f723f3fec90fa13da50ab84cda068bc0ac8ac703be43bd26bcdc1025ee6bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 90b422b724abeaf4caa7ba5f80dc4aa480571c0e1bd1f031bd2def32cf8dfdf7
MD5 01c17535c11fe6ad1e4a077bb4c357ad
BLAKE2b-256 3eb777f0c3d222387388e56abd86906e4fadba42b4eaed5e2e309e4e6abb7b6e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 241137686bc782450ee9dbd7a65d66b7cc9e46e4b9c0a6cf9dbcb6ea2c0259bb
MD5 49681c1b51a3de61e05bf13b06d2a13f
BLAKE2b-256 6c858e8223fdc0b5ba2f589ff497ccfb3971e6660a7524d59b0f5abe24e51c56

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 d9292a0b0e4bd77ddd6cb6f5a0e0f1c201b1cc9c724593c5e65b6707acfc1a62
MD5 33b9d04500acbacb10566a2baaa4127e
BLAKE2b-256 2972b67e6c6cd4a65c5c07a56a73f4bc63dcc1af750c1d88fbba33c2681b511c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 33898e70838af6f1d45cf817acd82889aed173bce3e779708738680505293861
MD5 a1d0fc8f492102f30cab7b273e8fba16
BLAKE2b-256 b4b91bcc2fe8e9bec80e5c19c09d465bf43b55e6b13ea8e5b43fb5a677c57824

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4d54d9d720672b2ab17640b925de03adaab4044b1265035f5cf22723cc8f7fd7
MD5 d96543f81f39fff992b9d20e39339d35
BLAKE2b-256 cc3a2526753ee87af1aa4361cbbc6796de01b5b22aae5e568af52ada128b0fee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1666ed41fde340c5ca9548273baf993d7660904901893fd845e936c0ed0a1a3a
MD5 947a8a4e3b436ae048f5dd67a7228b64
BLAKE2b-256 b3e1578d3e830a8393d3971afe3f99f3a39ffccafd1c1ddc269e92e4858e4452

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d81507fff9d803ef126551ad066ffa0ee23f4e2e4c7e3af3b72b400dd49afb3d
MD5 912585192be0831ab6a50669a6a845be
BLAKE2b-256 dc97725fb5fa24980c0fd963a0ac7c51b973381be6b824adf8de6c2db1eb9840

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 73bd8455d24eebb832c73928de84c4a7e75c36f45b9ca425592ba4933785a8aa
MD5 9ac0ceb03a000d48499c64f543bf6787
BLAKE2b-256 9e954fbdbfeb56ff1b439a75a801bb4214e8928fa6e0756fee1c90e5c1812cd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5024998f9dc8a4d02da24b51e924a7f342e1aa5d2a6b8b1436c5bacdcc0e217f
MD5 f166000ce83267f1944625fc71e57b4f
BLAKE2b-256 d976202a789732548ef3fba2f61a8fcecd02f7c66ce5c0c2d00748a069f17d55

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 66415293de872c396341bee65fbdbf54db92ae88feab0e436d3e5f9d0875b48d
MD5 7bdb990801c8a7db0956573325951604
BLAKE2b-256 6a0bee1f02f4e5294df160b31be063a593775b5838ee251e26f7c4d735e23f68

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 9f7c81933bb27ab464ccf9b9ec4108b15729805c50a0056a1d19b4c7fde93312
MD5 d739563eaffc077e248fb961701a9422
BLAKE2b-256 4b4baf1226fce4744f836209a8c6c0a6c067d654641fc94e7e7003673364d731

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b07f5caf9aa03a4eb458d5d53837f83199ffc44a8a25bcd449da33d268c6a4da
MD5 7519dc717d7602ca37e77aa971f7c958
BLAKE2b-256 5b336f83e7e1eed6ba0563b0956ee846879bf5836daf3347e31a4538aa698754

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2ddb82d8e82c14bb34f74fed369886fc26ab1e11b530c594099ee6907df7fa2e
MD5 3636bd6cce7610b97adac92d8f47b0e5
BLAKE2b-256 bf6b300900c57a617fe327cc4f9efe07c23c92f52b8051951fd2e4475458f4b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4abb41ea8d1828a646164ac3e4ff6922be1d973b55c0259df45da457afa3fa5f
MD5 0bd34c1bc946fb7f807b967b2b8165fa
BLAKE2b-256 7a0250db223ba4ad3f243f190feff0fb1646a11161ea13f4f7eaf2d414147734

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a185cc50e75d2cb991a94ed5908725c567eee6fab69f00004b5708bbcc380896
MD5 03b03f1bead67d1d859e08bccbccc0ba
BLAKE2b-256 dbab9a368231a218197eb63e5c6ace582a8c41c5aa02fc6e8d40b783c7e394e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3de6ca8ed82a1f9547a30da35c37d7aa1ca49c98237f82b1df2ea5a1937bf984
MD5 a154efa70576f0c20cf9295c10465e52
BLAKE2b-256 4651f6d8d32cac0807c7fb2741c762ecdf16e6304cf3eb4f692d8fc4573ea46a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a7c7d6c582e19f2bfdbb12bd7a2ac53d2c713bd327c9c2de4cdd8ccb107c88b6
MD5 0699f4a0770957524a9d793f74ba6ad3
BLAKE2b-256 1b3ba18c6ffd19c46c710954b202844b75441c87fae21009bab9be1ed3a471db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e1da6fcb33c5db2578ed132bec36e2c486a2b2786c1af33104b355d8e8d60ab6
MD5 340cda155c69306f86818d363acb3711
BLAKE2b-256 66bf2caea0c058f8f9726d107c840bafbb1224c24ff4ed438222ee70a7f0ea77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.25.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 777169a9ebcfb8f25787223631947eaeacae280b6c0a9f96bc7574d50efcc85d
MD5 5017d274c92e88288c1db5eb735f74fb
BLAKE2b-256 5897ff920fcc34e394882dafe77f59085f85b4a7b7e68c27c471004fd7eb51cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ce1a2d454a301551344186713ca499366a3925b432fae2c4f030c29845d71ecb
MD5 481f13f2ed2a98a9974fb0f5d94ac5ed
BLAKE2b-256 054dc5ee3f1de83902b51c60d3b7feec8dc5c60e57af7da9a06112a5e0d5c020

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ee3fa8e2e70a98ea501371d58ed9640d4add573166fff092d8300e2453edd212
MD5 162f8c7cc95f54180c9ff5f450c3f913
BLAKE2b-256 c6dfc9ba24dc8dd0033671763a7f294f800da37b9832ae3f7cf2f1629f536eb0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e5502c34fc8e2e189a7dae1c52b53169434ae296cd26f4d3b879682695dc47ba
MD5 31f142811cd5a1fd59342c9794b268cd
BLAKE2b-256 a26f74f731501b80c71c50381cf67aeee21ebdacf1b147a613e67131010fd8ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 571715a7586a51891f9b12184e05785f33e83189e46eacb62b8b61a9a8dadeea
MD5 2d11216654d4bc756fe9d7fcb709dc88
BLAKE2b-256 a6b849fd476482417b7ec4dddfe1e271eac867e2348686826986513840b650fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a03522d944645e17e44ff0fe5ebd0cc2ea60a79b0310ea9a46d0dde98942860d
MD5 86d6d385c36f0e0b75b54a7ec7022c3b
BLAKE2b-256 3cadccf63eb617fbc9cf205594d1ef2112018eacdd2bba01f5a33ddf5552b18a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.25.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.25.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 350c036cb3ca2a9048c26f9e2f97d3e243bc764c3955d0b9283ec4d197e95d0f
MD5 02cbe48b52183db1009c20514b15ffe3
BLAKE2b-256 1b0a1c922a30d237b3c5d11468bb3f984e83347256e2e9aab686e0fb1ef81b02

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