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.27.0.tar.gz (418.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.27.0-pp36-pypy36_pp73-win32.whl (191.3 kB view details)

Uploaded PyPyWindows x86

dependency_injector-3.27.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (297.2 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-3.27.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (268.4 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-3.27.0-pp27-pypy_73-manylinux2010_x86_64.whl (294.9 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-3.27.0-pp27-pypy_73-macosx_10_9_x86_64.whl (269.9 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-3.27.0-cp38-cp38-win_amd64.whl (261.1 kB view details)

Uploaded CPython 3.8Windows x86-64

dependency_injector-3.27.0-cp38-cp38-win32.whl (208.1 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

dependency_injector-3.27.0-cp38-cp38-macosx_10_9_x86_64.whl (386.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

dependency_injector-3.27.0-cp37-cp37m-win_amd64.whl (244.1 kB view details)

Uploaded CPython 3.7mWindows x86-64

dependency_injector-3.27.0-cp37-cp37m-win32.whl (199.3 kB view details)

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

dependency_injector-3.27.0-cp37-cp37m-macosx_10_9_x86_64.whl (370.9 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

dependency_injector-3.27.0-cp36-cp36m-win_amd64.whl (243.2 kB view details)

Uploaded CPython 3.6mWindows x86-64

dependency_injector-3.27.0-cp36-cp36m-win32.whl (199.6 kB view details)

Uploaded CPython 3.6mWindows x86

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

dependency_injector-3.27.0-cp36-cp36m-macosx_10_9_x86_64.whl (403.4 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

dependency_injector-3.27.0-cp35-cp35m-win_amd64.whl (229.0 kB view details)

Uploaded CPython 3.5mWindows x86-64

dependency_injector-3.27.0-cp35-cp35m-win32.whl (186.7 kB view details)

Uploaded CPython 3.5mWindows x86

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

dependency_injector-3.27.0-cp35-cp35m-macosx_10_9_x86_64.whl (369.9 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

dependency_injector-3.27.0-cp27-cp27m-macosx_10_9_x86_64.whl (362.1 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: dependency-injector-3.27.0.tar.gz
  • Upload date:
  • Size: 418.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.2 CPython/3.8.0

File hashes

Hashes for dependency-injector-3.27.0.tar.gz
Algorithm Hash digest
SHA256 eca4f5c2efe08e87c1b8cd8a8c34927b557199042323af0d5ca8f8d744285991
MD5 8d519b0577a94197c6d6d5cc2eb6b9ac
BLAKE2b-256 481289bb70a2b08ad8a5220b91671e61726f0eb8aeb91f5bb17c89126c7e96ef

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 d1874ee94410e0fbcd79c278361b43079d2694ecae08dcce70d6b70c48e2b516
MD5 9c9875eff028fd75300ae17e81bafb76
BLAKE2b-256 f62130dbf0ddf7b35aaed66de4066510fc4286fb2775ee97f450637aa2cc6e14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.27.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2cfdd140708f51821a4245d076dbea6311fea3df9759f115cf76821da649c642
MD5 5fd80bdef448c2ae84108a89d33afe3e
BLAKE2b-256 3bb4b40cf5399b7b6b0dab95fbfe4ae70c606417dc7add08ea20c42dc819b920

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.27.0-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fc0991b54f727adf7e62b080c58cc4f7f2d165760185d7763cf2ced9aa7d05f3
MD5 cad7c263d2851fe5147ef667d44c9657
BLAKE2b-256 da5e630b95a058ea595980edd7a62bcb02cc2058dcf41a69dea176a156606793

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.27.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 911bb20e84017d9dc09c1767ff509b8d34c69f6ebc3a3ee7f971d5d3351718a7
MD5 316b72926ddc5e2f47d951c7c43ee704
BLAKE2b-256 59aee39892e4bf2e053732c7660aaae420622024d2cd66d14977d9c9280a4abe

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 58fcb03942886c7bfb42d622255991dae0e0fac29ec2d48dc17860c3e914edb7
MD5 c3fb35ed5f3679045f34e7f69105872f
BLAKE2b-256 5a126186a775f282d290be639ab7cd979fb392b56f8f546751076a22c591e83b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.27.0-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c70a33c2b1321b5a2cf2c9110d8bd6ee2512498c95fc9a256ba2dc943cde9e0f
MD5 f2c07e27553ed7e152aec264f9d23c58
BLAKE2b-256 0a49b17e008fac45e64a4672966da07414868ad95912194ea1a4b1547745ed7f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fbc80084da9c8b0ed900081c791743d929957c92745884e9f85ecab0a0c40829
MD5 29bbcd0d34cbbacc8f01637371eefbdb
BLAKE2b-256 febb99e965df0b9576eb3920081941ed3f7eee682605053e094c091088bac857

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c65440cc9d50bc68aa4885b5ccfddf05a97ab0b7c3a08c981d0c4feac40f8f91
MD5 6743f31ae096558f3f4df9d5574bb33c
BLAKE2b-256 b5610058f81549d14b7d53708446b0fb4975c1d231a48b149224ac1f3e667ef9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.27.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 208.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.2 CPython/3.8.0

File hashes

Hashes for dependency_injector-3.27.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 76777c5f8e80dd1e84135fe9461e7b4dbb2d9e08013c2c0edb38eeb66bef699f
MD5 fbd663d0c528641b7afbb03960ebeacc
BLAKE2b-256 54e6a8a9b1c2157b411f727ae4161461498da9a9c1a92ae147d7ecf86b79b433

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5f024dc2b149df38e2c38d15e1a58f9dca1e6c52c2321bf4203b95bb0c9f9d7a
MD5 2486176fbe497f3544df185da4eb1b0e
BLAKE2b-256 c4e4694301a79efff8fe0bfe78e0236a41221da5ad6e7d33ef09f6077ff5d707

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9bf2925ecd1d2f3e04a12b5ea7f67831825830f8d3d838e64a58e7277ac9c1f7
MD5 48adc0cc2d90d9b0bc11bf85960438c3
BLAKE2b-256 8f4c870ccff4e9fd09da63d5ea4d12571aeb25d8e66be28dd99d7dfc77214b36

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0cded4958ab754d82a453ca893f3d1d92aabc3397e3c54423ba20c15ea507c67
MD5 ebc8e74be46904b47856e2a9390e1093
BLAKE2b-256 6a5dfd7791af0fbec195853821825b8f75204c505d68b1ee90ee01ed1309e0e3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 de98d3274fb56c475953ba63162c5cbf6b93ef83c4de4b2bbaf608ee2874cbf6
MD5 f1e909d916442cce3fb3ed1eafe842dd
BLAKE2b-256 8f5cd6edad05cfbc0b47b8d1082d1208ea5b45556fc08f4ffda29ad927a45ded

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.27.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 386.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.2 CPython/3.8.3

File hashes

Hashes for dependency_injector-3.27.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f1644fcf146ba240af0c6d3ffd010d838cb530764a288fa22c646206435863be
MD5 b22e848f238fe0841558b7a5e61cea6b
BLAKE2b-256 056ec32f26b77c9f7ea675ed5c951e68fd299bdffa7605fb3090969c21b36b11

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ebef2000c9d02a60e4f57b421d32424e2b051791fd185bfef867420daeaefa80
MD5 0287b1566431f515e71858a9293919aa
BLAKE2b-256 72a6681091e6def1aeacf61a2818e1b3dfa9a0509a0803ba25a55c86625cb0c5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d9dd1b7aeed60487195d380c387db2a77cf40a4a4e8c5b8890e40d362c40cc66
MD5 ac685ffb68ca5e0da53e15ce0247f7a1
BLAKE2b-256 0b9739b73d9e3052382b3d763acf47cddec82f19e947c12eb5d60d3c5cc9fbef

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cf14c9848b866ff1283530cf496221d45e6c02eba28a675168053c1ff3fbd15d
MD5 74cdc5eaf8378774332aaf5115f0c49b
BLAKE2b-256 06abc51d4a788fcc011e2f59704cc1263aaba0295b192d4d9dae782edce28129

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5520b18697fd3dba940408dca27d02c41d4069a464f4ddfc260ffe7c47bc215d
MD5 f16c82f64884a796518115cae600b146
BLAKE2b-256 51750f0e7932eb58bb1cc6ff065a87e81d68138d972ea455dfbd3b413828e23c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5e9d664d18931abf912896d3a9fd0562f5ca5cbee0f8981d8afea8c43741348f
MD5 127519b6c11e11317d350fc0952cec40
BLAKE2b-256 1b0f6d5b6afa4272e9952b42330037cf8aeddc979d558acc743e46ed601e9453

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d4807990113a4a6a19394d0ea0e1f1458d7d05748c31eaca664f6489d4f0a7d6
MD5 9c48690d79bcde7507ff9e99b6e2e820
BLAKE2b-256 581e065d3d3c3272df6020c9dc49f03b5f9cbbb921d82b04d8b02b53c5d47b91

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ada6fb152c326f32f79b2c3e79e75f8c7e37b4a6cc16216d13ce1dee0151dea5
MD5 4f9d444e0e48241cba67cde9727ba39c
BLAKE2b-256 5ce8648460f130a2980c2cde1209dca711402b5e7194f466f036cbbaaa8fba4e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 8a169d36a631565a51099179773bb4ff002b308df34243da3b25b4d5d4b4b441
MD5 7e17541272756953bc5d533ae07306d4
BLAKE2b-256 84159daa7a943e3ed8e553fbbf1435d743779d7e683d4923eb144c23fa5f3309

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 16a6be655b3b60068bce6c29797cc5af77c3ffde9400292d36118113a3a3d2cb
MD5 7988d71d7d5dda952a74206ca52cd139
BLAKE2b-256 cc0ec3c90934913297a32aad4ef6020dd26212566889f5073a0bd353606220e7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 52d3234b0be51cfc634c9ac71732e3e5a882cd32a0caf4cf45ab3dabf4a9017c
MD5 b8cadf01592c710d73c0d91156445131
BLAKE2b-256 4059368c45208e9589d5733130f5608ba5820f208c37539cba4a21b1db9aba82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.27.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.27.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 08a86f37e4a8d685145c7de98131345155a48226e32407d460ce3adc1e14eca0
MD5 9cb625eabb9e5128dfe5eea688fdc57c
BLAKE2b-256 4f099b488bf015267c2707ed1ed783ad37793cec5e6e6f21a146f3b6b560d989

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ec859bd9f24b070234c82e8499aba08f66b14ce387a28e31f1c9e8aba4f9c1a6
MD5 58dd13c046318923251a651e41fcc514
BLAKE2b-256 b8f919bc067e80ed84e962187b159b755bfc5217cf3568163d19e737d63b0632

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3b783476fc7e57954669a77eccb6d44264d6cfab3c0373260c306cc239863b79
MD5 6cb51e794b69603d14043be51cbb717c
BLAKE2b-256 5092999c0a901c1383d33c52ee33ce9cb94f6238b177069d1f99b8fed01d6e4a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5bc3dd5156a29893ab034e2d404fdce43b845ca7a204e4c73c5a9e89800408a6
MD5 9404fa65ff648e3592870d4c722526b4
BLAKE2b-256 48eec787fd3995a68b2399e16a0c0947970c46f556b7fd210868673391e85afe

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 6e8f675aeba31e7485a861e84472ae40dcd79f0795c009e4b1538cba0de1a4cf
MD5 b202e89985e7ee62e0292cb247d5f21a
BLAKE2b-256 d3dd79df10968928211199565efbd48935626eb684eeaac19e07af9c65003b4c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 1fd247640c6048ad00fc2256a7c7f50d854090a896a6fcdddd5d5ff184bae6bb
MD5 ddf5265e9419e442680d552a9e5a01d1
BLAKE2b-256 0896cd75a81e73823381ca149a462a74a844a79987feefafb0dad2315e48d642

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f717a1f3af444ce4f26d8a2de05a2eb9b66f7c2f59eaa65f1bd1045d760ee2d7
MD5 4c5757acc0ac42c7614af701eb90457a
BLAKE2b-256 5f52418958ffc039151b448328dda7999d01cae2db459c89b54dae32a5bd6042

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 968d59e2a0dbc7fe4e056eee0d7e061782cc9383e7f31cba9936fd8de780d30d
MD5 c09ce2dbb211fccb4c5729be8de1d955
BLAKE2b-256 4efd6404d88206f5f1ad6b2c7eff46ebd8c08e190e65cefb76cc50b45e6563cd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4831a5325087b73fe97ce02c2e6f41e3ed04ddb2e6204d2d160cdea99623c06e
MD5 950c52666702c10ecbd889065435e11a
BLAKE2b-256 96c9fab81acd99a1f439a54d313dc8d6ac2b7080c917bb5a0ccd975fd80d68e9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7008af20c1e0c9c5336e8355e3e57b83d74d946d2d75f3659e79dde172907e42
MD5 b540769f515f5ba83ee4d96d7ee5021c
BLAKE2b-256 489cb8f1021ed481bf8d9135ea99fef9696b405f1a7b7ef6df5dca7fa5e1e7ce

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e1fc4c13b4b132bf06db7daf592a8a1e0b4f3c7d3b7c71ae66d2ed58131f1f3c
MD5 4981849ab2564edd486ef1bc36900b67
BLAKE2b-256 20466c38cad4e19a38a6ee0d1e763d515ebdf1d71a42e51e9a21e6502afc914b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 af06f8b647195141382a7ce48eb7b46c5d37edb3a1892932a94bc74a2bfa6115
MD5 3283d47f260cabb43871370bf1db7c28
BLAKE2b-256 fa2c1f12505412c284b0db763883083998297e19bef6573874b23baca6c5343a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6bd4b88c4693a2e5598d51f01c70fc7d0fb4b0dfb857bfdf72b71ac5c6585746
MD5 ae16e00a45953505c7e308ba11ccaadf
BLAKE2b-256 cd6f97f00e0be7bd7709001c40508ffbdf028adcbac55356a5ae196c7a01d305

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.27.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dcc4b149387a5aa35a872b1296340a8afc6899de0d601174e72d4be0c0be16a1
MD5 391ed352139ea57c6811db4591ae6879
BLAKE2b-256 4fe83d238f81303bd016d5fea59935b8ec0440ab91e082727f443fcebb8e8c2b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 db68371a07d0b864aa4d316919730725b197a1c4a51e59fe040af83f1f4dc9bd
MD5 b96989e99e35a4d39779b866e3e74cdc
BLAKE2b-256 a43a616d3d3dc228a14cae0baea15dfde5fd7cc622c395dfdcac8971643cd6a8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 60653087d05ce591448e4854480da8e14d990f1ad9ac20d3f2f7ce86605c1969
MD5 531e6281ed027b10d1f1acea43c6c945
BLAKE2b-256 2c37e77f606b8a35ef41b5ba9765daed1e4c93497c8c088111cd77841a187cfb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c947239b15a382b14669ef7fdc6025e0652f6e495e341cc526df87b041c48187
MD5 6141d3b8535e01ff48fc35c21419a8bb
BLAKE2b-256 b9ed2d896ed037d2b953bebfa78cd6add5fa395dba351544a1c77580a5b7c346

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 42d1a0823e44d826ba3051c4fc8ba472980477688c541a6b1c361229295150f3
MD5 8e2f75264df2a87ca214d70066d4d5a5
BLAKE2b-256 2331e9be59769fe81e74d502abb64a6934b4ca574b46cf2cad481fbde80723cf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9607679cdd4f8331f400017252e664fd5d01d73ddf79cd2e0ce40209eb91986f
MD5 f14e428f91940117b6e0070ac56d4551
BLAKE2b-256 75084565f65dcc4b605126b14226930fb9d3a719b2a07243d0b398ee95cbbe5a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.27.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7eda55d4362e238139d9c1c6a8b776adb07267cf9bb8e776cbb56daab708d785
MD5 60b9ae1d20838ab8cce3c4b5911af996
BLAKE2b-256 dc5ce6a32165bb20def6149b5b2207e7db704a67d4ea758739c0aa12dd01018e

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