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.23.1.tar.gz (393.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.23.1-pp36-pypy36_pp73-win32.whl (180.3 kB view details)

Uploaded PyPyWindows x86

dependency_injector-3.23.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl (281.0 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-3.23.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (254.1 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-3.23.1-pp27-pypy_73-manylinux2010_x86_64.whl (280.8 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-3.23.1-pp27-pypy_73-macosx_10_9_x86_64.whl (256.5 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-3.23.1-cp38-cp38-win_amd64.whl (246.2 kB view details)

Uploaded CPython 3.8Windows x86-64

dependency_injector-3.23.1-cp38-cp38-win32.whl (198.6 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

dependency_injector-3.23.1-cp38-cp38-macosx_10_9_x86_64.whl (361.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

dependency_injector-3.23.1-cp37-cp37m-win_amd64.whl (231.1 kB view details)

Uploaded CPython 3.7mWindows x86-64

dependency_injector-3.23.1-cp37-cp37m-win32.whl (189.3 kB view details)

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

dependency_injector-3.23.1-cp37-cp37m-macosx_10_9_x86_64.whl (346.6 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

dependency_injector-3.23.1-cp36-cp36m-win_amd64.whl (230.5 kB view details)

Uploaded CPython 3.6mWindows x86-64

dependency_injector-3.23.1-cp36-cp36m-win32.whl (189.6 kB view details)

Uploaded CPython 3.6mWindows x86

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

dependency_injector-3.23.1-cp36-cp36m-macosx_10_9_x86_64.whl (376.6 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

dependency_injector-3.23.1-cp35-cp35m-win_amd64.whl (217.4 kB view details)

Uploaded CPython 3.5mWindows x86-64

dependency_injector-3.23.1-cp35-cp35m-win32.whl (176.9 kB view details)

Uploaded CPython 3.5mWindows x86

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

dependency_injector-3.23.1-cp35-cp35m-macosx_10_9_x86_64.whl (344.8 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

dependency_injector-3.23.1-cp27-cp27m-macosx_10_9_x86_64.whl (341.0 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for dependency-injector-3.23.1.tar.gz
Algorithm Hash digest
SHA256 c9c2be9fa5de749b9ece4592a75fcb793b2673dd1232054016e4f051e7860ec8
MD5 475655ac4a7b419b8000c20df6d6386b
BLAKE2b-256 d9884dc6bf25964068e6cc551378ab8f6de4c9ee36da19c84c7d3269fef58ba2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.23.1-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 394b122565ee35066ebc237054e9f439a02e8c3fa7d28316240f260da8996965
MD5 c78b5c3c29186652b4cd0ffedee1335a
BLAKE2b-256 5dd420aa1fb4947f3eaf74b61f95fe3d374132c18ae2c23f55f688704c6d3c64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.23.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 95083bae800ab9e039fc8beca37cef4dd4195e81da2a84a6f59dfbfc7b5c54a6
MD5 cd633b6766d762a70daa8718a3b7899f
BLAKE2b-256 579d3b64f68d9990bba6c82d23082735559072e075fa25d3f8e5158e4d5d5ada

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.23.1-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a0809a2bfcf3d9e485d5c6ab8cfd95c50e1c2fa7c4858125df545f16d51ec57e
MD5 92f285b78b76ffd20250398265323e3e
BLAKE2b-256 5a2d58b8b968625f7493c038b637f62aca1dce9ace1263e43dd5f89e7dda009e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.23.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3be6289671913b3f0411a91aa58b77f3480130bd5dea5c922658ba62d54e995e
MD5 70daf48b4f15fdd03d13cc98e527f547
BLAKE2b-256 3fe8e5035e7181c2c504b1547323549b37db2563f8bca38b364b102615172bb1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.23.1-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 57d2d921b5dadac3355109d7430e0ee313f7f040bb25ab5252d839fb51fab389
MD5 bddddfcacf65700163bd1a2d3bf6499f
BLAKE2b-256 5387563ef85466202d12f5fe982f307c318422545b494afe20f9324d6d2140e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.23.1-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 af38fb06a8bd8ce2699d22efe281942577572071412eea596f65b4bf13ad4ec3
MD5 289253dd5b32ba8b41af893fabb084cc
BLAKE2b-256 abd2d2f7332363ed8e1c3230d2acf6946f6fbbab732564e00007854ec999b537

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.1-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 256.5 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.23.1-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 995829426c02b55eb77c7bf0f691ea30c029e1f1168652689617e2dfce5424f3
MD5 4a6bd19bbee9096a3135e2f9a66e8c3e
BLAKE2b-256 5e8c0d49f756baff27db035557ae9ba5555dcfd6d907fc9d8ddb9fe48a2c6062

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 246.2 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.23.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cd9f2a8b4b280aca32e64d37bd8db4a26097e1184440a30368791efe2446df35
MD5 164cb3339431cc93cbeef82f3119993a
BLAKE2b-256 627e0f796f9ba4940deddb8be95e4319a88241f40c7ef9222995f7219c3ddaf7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 198.6 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.23.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 acbf0447d862fde5cef72dc4bf5b5995d40cab64cda434875c839fa6a39d1664
MD5 dd909845a4184827f8ad809593887397
BLAKE2b-256 32decf0a28d97c4a7196efdfe7ecaea777d91bf98bc7739417acbfb3f55ebd6f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.23.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 de270a719e1361f83fe4f197328611d1350c6c0119d668a4507d1a1a0595720e
MD5 92a5bedf55cc278c2ee7ba95046ca592
BLAKE2b-256 b64ff7f242581f0206426f4ce71ff0807273addd38232ff4ab621756dbe6c945

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.23.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 900124f41598993a5dfc956a288728cb5cee7ab2357bedb6c31ed90e7c6eecdd
MD5 77ca0ee59e4b80073b5b4f38b85f656b
BLAKE2b-256 b7123b94f30231f512c54e40b61e0b16d2b8946fa649f3ddf59343dfee121467

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.23.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 23f6835174df49ff62f1173884e9015646113e240f087ec2f06708f428125d42
MD5 f682c26846a427d06974bfc13c79e988
BLAKE2b-256 33463a3c6304f64acf70a34c488ea7edc4c7fd5d7e2348bbd12c67a4aa1f451c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.23.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 870c4a53c584105b12e7299c663e93884c654c7a33f3a4587d784b28e70a0b87
MD5 b12fe6ce970ed8e519be1e1590b4ef4f
BLAKE2b-256 3dfc540fc2f74b8d756d71482b8fe0441666b8d28e58eef720aba8b3a7099a16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 361.5 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.23.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1b0ce2f1bd5f8ff3f9e9b11e1ff5c86fb7595184199d302073cc169ae37145b6
MD5 af6bf13565f071cdaf911b8363921887
BLAKE2b-256 3511f69dade667cec9c99ceab970c92b8a2e8fe0b3e6d74001907f3987271379

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 231.1 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.23.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5ae6142d24b558ebed3891e97424ff8204e683cb437e22e3e804953843e044d2
MD5 b4cf6c38feb5332c5ccee3b6929bc6e8
BLAKE2b-256 2b627f4882806553da0e5a28b33433c066c96eb9104bab77d90798b04b9972ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 189.3 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.23.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 7ca151cf5b62a86133aaa6980be5ba858bea4560ad4a5360d76098993e4358f1
MD5 77b2c9187efc41424127e5cc5a49d640
BLAKE2b-256 642b27f5f8534b225b14993cb40136b5611521cc6cc766d620d8cb5149b71eae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.23.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 973590198545896559b676173b021f3efd514bcd56cf37b5ebc4235d36a4bc51
MD5 58cf184d4ba6d3f2dc71efcfa3ae8089
BLAKE2b-256 c9ac9dc6e41a11efafb414e4a57f5b4d204868de4a987dc529157e2f0e333202

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.23.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e81fcdbe38940bb107b799765f1f6a7a64349137194dfbe2ab05aa17a1ec54a3
MD5 75ba1160a392d0842f3047593f1a0b1d
BLAKE2b-256 eac67366f6f0bdc491aca8ba6670e7432b32a50e0b93acd9cf7624c1c644bc73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.23.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 24834110093c97f4503978a2bd2eb0658f9c47a706fee84958077e13de14f07a
MD5 3e8ae7996a8bc04132bc1fa47b465a31
BLAKE2b-256 ad844f3ae8d25c5773727ba748280864ca44a3e86422705a55499f3fc39d6995

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.23.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8a3d4531027dc52814eec37e05ec91ff27a94e44e0d394b52bca5898d4648f2e
MD5 2d8ee9bfb196ced6f72c24dc468cf779
BLAKE2b-256 cf70d9b10fb58562b3a6d246a6ab23cf6909ad01095d97970190c0585d95679b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 346.6 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.23.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8869fc7bf9be80c08503aa4d284470ac8bb5d32777b2f9baddb0ee4c5c77b536
MD5 844490f595f32d52626c404433988b99
BLAKE2b-256 b608778e176d09951b72d8fdf7d0858cbaf465f7756a85da3a5716d62d5ec02d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 230.5 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.23.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 588654491b7e917dd004852910b6efbec302d26eb52b796c803deb3b5f5ecf44
MD5 cfad5525210a0b393a888b9f8d093a21
BLAKE2b-256 959a45306d96d7e9930291a2cec1989b01896a64060b16e7655f9b52ddd92c90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 189.6 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.23.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 afb8310c74bd0ec14dc2616b5769d2764f864d0577db10213c60ce81904632cc
MD5 7fdc6152d75e819bbf1a7216327db94f
BLAKE2b-256 c0ed72571cf4642b202baac2d9582fa02f349ea07a11540fc968692843f10619

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.23.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d2f4be413037899d168740c5b38c89d44d320ffce88c8fbce79d0c19c866752c
MD5 ac04c779b755259cb0d34f990498b8c3
BLAKE2b-256 9b6da05ef468d9afcff646567e2bcfa0b346b0ddec873d95d0e854016562f4e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.23.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f4f8a0fdd7468a7d401505466c29c014a4fbf8722203431bd68c077a076a5e5c
MD5 4e5c498738a4b64a3a824e25ecf7c063
BLAKE2b-256 eff04b70ebd19b04732090dc0a425d58da57f6e56f7cd48f42f1f63834e84ddb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.23.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9454e32c4b4e6cc05074b6404fec07891bdd591ae5ed69c5537e14cfb59eb557
MD5 a6dd0817cb49bd9db121e34e08e5e676
BLAKE2b-256 d378e7c4758187a2c2dd62cb5ce59ef6c5ce93c659963eb977e885ff80d9f989

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.23.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b9d22d0c30efbd3fa44871b294e53261063fdc1f0bbca12ecf9b84c5e717688d
MD5 4a8fd1a909a6a56fd667e101fe5382c2
BLAKE2b-256 3247678fe7ef315436e562d615cc088a263515a01c8b89451bcb31f598365652

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 376.6 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.23.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 46a857592bb1274d15d9f49ad10fa694dacfef6b502884c8baaf6f40668ae59b
MD5 377f1dfd973147f583e4473c9b2b515d
BLAKE2b-256 be35e902af985617448dfdca6c0328ff318823c3475831d6c002ffc48be038cd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.23.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 b5d4992d95c5567602c2aaa9d6960bcf7c986e70d88d0828e20700cf5413c303
MD5 c7d6cbf9d680863df399241e7b85d31e
BLAKE2b-256 d7645d167e38d1228659e7c848186ae69d1a6204e1ef4ce0332122a6c4f115f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 176.9 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.23.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 08fd69fe5805b849cfeb9d3298a1db1a32097130adcde3e052b5ace1ef80104b
MD5 0b210ab88f4fd903d02464f06dd7a0a2
BLAKE2b-256 219ccc752b6f59af6e87e3d5c7b6b652548405041bb9603e2b9e8d349cabaade

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.23.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1f7429003df7abf7cf8fc7b0b6b99f07c38c908efb20c690cf5758cd23525147
MD5 3e8561157401ccc76e7bd5506b04dc5a
BLAKE2b-256 ad5103b3ac54dd113be76b52cc6fb106167d5738f7b69f5e9dbe3b79b0e28163

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.23.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 807768a40068929d30ce99d041001fc5b837efa7deddbda0e6fb19b2de0b6dc3
MD5 dac978b0a131bacded0a827c81f04d23
BLAKE2b-256 8f895f0828c0edacaf18e1ca09eb37a85c94a6ef8eb8240f6e09b6d00b5281a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.23.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bb3dc2a41d227f29d65d48a0b55bbb0a96741dd56157c17103cc04709d81a345
MD5 1928c8b27351c140362363cd0ce1aea8
BLAKE2b-256 11f76a125eb2dd758097b1485dbdd4c1aad3d878d313920d992e3256bc787d79

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.23.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c605d610d26c5f0b5d6c1862685dd0ad5a7d734148d26a2ed036d59db2c97a93
MD5 5217993f4b93ecf27f64bc2413f1309e
BLAKE2b-256 ca2ebd2a17aab961f4642456f3229c95fd1abda364f53df045bdc2398cc4bdc6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.1-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 344.8 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.23.1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 77eacc160aaafe0b2a9c34a83604c5f94bd8502491212e7fa2246a37929c671a
MD5 c50a7137e44e96e7431d0112fa19dc73
BLAKE2b-256 03eb31069cd87c318281a69fa7dac365ee79c3b04d05fccead7c1ebc4983d8f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.23.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 57276e8733b33f78c499612179037ce360b88a4a4bd759b74ec7849e0896daaa
MD5 69a77bb5c9329afa2d43de7b3486c128
BLAKE2b-256 7bc300c35869326a4f53d3c434e5b379418bed470b1580145477977e5664c930

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.23.1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5d27bd7b7b7fdfa64377b897e08d324b154eb982de2dc6af74975a06f37e7d39
MD5 2a075db2b5c721c77dd8f6b8d6b959c9
BLAKE2b-256 44abbe5508dff9f9a48686f00d4e2e14590f0f0ca531b586df067b0b1b8e8748

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.23.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f2f2ecfd54f6c68c04c695b5223d1ffa202aac14f0d920031c356197392f834c
MD5 d2206213c07cd6a4eea35774cccfc5f8
BLAKE2b-256 d56c4296538c52ea3b0fa8584178b2af4d11868beb15f584cda87a4cb9cd92d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.23.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b06276e98d4b279d27103ff1c45c0c1d5b6fd77a170f01ecb2a9fbf48fe7055f
MD5 6d57c38bc0fddb85f3dcfab6bdbac9ec
BLAKE2b-256 3fbaeb7ef89e4522f175b58f75b03929425e62caf4a8e37237dd4f77b93fb01f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.23.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ca153acfdaa622c3cd3a81cccbc7ed9bdded8feabac50941e849b5099f4d1cb0
MD5 58dceebe2c131a2de59409cc3fcd9d96
BLAKE2b-256 4fa61f3f5bb3202af926fb70ebef66a1ad6651394fa9b3313503a3233d19e34e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.23.1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0044956113b5bcb63ba72053597debaa1e14cb01a7dab3b562c05aea3c145cad
MD5 5611e1d05f0d34313d909bd3c5c86726
BLAKE2b-256 06f141ef9f32d7c7f7a26770643165643c91fad588cb9b30174d30bd077654f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.23.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8e3308e87480eb5377f1e410f2c5d566f4f1628e06234fb37bba7e554b26c612
MD5 2c3e74360239fee1d83e27e422dbc755
BLAKE2b-256 57ae73d698e82074de0f97380d0a46d7e26c74a2c77e3855aeabe0448a0baf8e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.23.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 36f23c4e13f5a53136db33ca3e10683291873204eb9a9a5c70b4cc34527c653b
MD5 0c9d1e76028ba77be29614ee2893359e
BLAKE2b-256 41a22b494ce1aaea0e5ef22f2e6c049a53c8399d7230cf42cac3bbd93267d09b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.23.1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 341.0 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.23.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 39e3cc272d4fb4a8e5a867a21a6973cdaf4f3d2257f8678a2b3c61f80ad0f5b0
MD5 39576fc9f258d50ef549e20c4a6f4fd4
BLAKE2b-256 5c7c22aa7d791ec34b4e877ed0ddcbd48df2d653f8625286e13e55c028cdad2c

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