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.28.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.28.0-pp36-pypy36_pp73-win32.whl (191.3 kB view details)

Uploaded PyPyWindows x86

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

Uploaded PyPymanylinux: glibc 2.12+ x86-64

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-3.28.0-pp27-pypy_73-macosx_10_9_x86_64.whl (269.8 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

dependency_injector-3.28.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.28.0-cp37-cp37m-win_amd64.whl (244.0 kB view details)

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

dependency_injector-3.28.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.28.0-cp36-cp36m-win_amd64.whl (243.2 kB view details)

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

dependency_injector-3.28.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.28.0-cp35-cp35m-win_amd64.whl (228.9 kB view details)

Uploaded CPython 3.5mWindows x86-64

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

Uploaded CPython 3.5mWindows x86

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

dependency_injector-3.28.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.28.0-cp27-cp27mu-manylinux2010_x86_64.whl (1.4 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

dependency_injector-3.28.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.28.0.tar.gz.

File metadata

  • Download URL: dependency-injector-3.28.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.28.0.tar.gz
Algorithm Hash digest
SHA256 27615586fb0ac83eb43403dd69a132f4a58d67c2e940d86e64d316381b1a864e
MD5 795319aa673e4926888b21d7ca0b1c98
BLAKE2b-256 3230d764afb44657b52c00e1af799a7e344eb330d410dd0fd20635294071da3f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 7656c513d34728d9adb08818f678a59363a4d0fd0bce5bfed82c6dd35504b2e3
MD5 28f9d9b1a2edcad8caf5a2bdc0d0c838
BLAKE2b-256 823f95c444724902c7c3d298d0c42f67b9d64eedc2683dd6b3327ca208f3fe0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.28.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5b2e0c82774617eaa01b8522881a8b2ce75b8c6f73380b322e5bf1125ab4d262
MD5 f274db16f0e59bfc936657f06a4fd9ec
BLAKE2b-256 787349d78a53229657000f3169ecd2f41a88ee5e7e5b0fccdd752bc7af81e464

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.28.0-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2eee14a7400e1f8e8c080f594c969ec9e1b88d6d9c1a43bb17e7e137ffb209fd
MD5 92357e4f0976036e5bc47dcbfbf3d4c1
BLAKE2b-256 b455275b873896bbfca93e92b9c79ac7512672372030af915768447ff29560c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.28.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b3fb5ac8a7a088d52fcefb61dc1c00b8cb2319533647ab67a28aae4629ca65f3
MD5 6964f00bb0ebc0495b35e754017851f2
BLAKE2b-256 a2f0d3db5aee9f48b86276fbfed1e4b62f1d8862cf5546be40cbe4f53deff221

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fce1deffb41f85673fcdf4e2301bad44157136d376c9146d533452f633d7a1dc
MD5 88b992553bbce9dc82cc67cce1e2ea48
BLAKE2b-256 e0ad646fa270591348101c245acfe1fae9f5d70793fae3a206d45dfc702a665b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.28.0-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bba0fb49a72f6ecffa186fbd711eb516d752ffae0352e6ab95dc654233ba93dc
MD5 8f76c70b4c639836c27d9d9be2503a10
BLAKE2b-256 edd5ef2db45b6ed2106abccd9ff54a048804ae9d02b6022537214bad9bbb9f94

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.0-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 269.8 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.28.0-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fdcb55ffb82ef26ebdc7f712ef692ee7f00ab14322b7de634dccdb827e935f41
MD5 45a7a80c1dd95ea7d2efa9363f48428e
BLAKE2b-256 1a9f02203e0b04ad2028d2e3e076d58f0984f99d848d6ffa920fdc9cf96e982a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c82206f36b99c84b9a550f6f28392696296a52546372e51e2033af3df72133ce
MD5 b64d972a4eb0c92a6be7e97a320cfcb1
BLAKE2b-256 5a597d04b03ac79d5f0dc6c4ea598ad66f06b6d7b994cac4dcbd83d2e61d32a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c0f7f904b9e7c60bcefc42face8f1f320d897346692445a73d9decfc93003e42
MD5 6a6930ca87bc3041668d315e1c275b6b
BLAKE2b-256 737394b9bada65519ea205fccdac1a43a6bd9ab0c44bea517ea29a3ed6b0e98c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f3f9cb365cd1d99f08781b1e3d2131f0b14b62940aa6265c41fb59a25fec809a
MD5 ab64cb038afb8ed9df936c971d4bda41
BLAKE2b-256 85e696fa653770dca2d0a362740c6bdf27aee627fa932d98e0d1855caf7b347d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a769aa78a2e3a5d36a0d1f9990c01b4dfd708019824525416bb2f233f3336431
MD5 f129017120ee74e387eee04e64d8bec9
BLAKE2b-256 36e03ffc7c55578575500ac8e5a2cbb8fb9c3115367960888ff09433277cfec9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5f0a33da26b9081ea6cae2cab143d18e800c2f67992670dbdb3a3d2da5db10b7
MD5 58f5d57f524b394658dbfd0ee779dbf3
BLAKE2b-256 ab70e0cc3da6b35a735742265740bfa3e8ca3251827dc87973d5b2056e66092d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 46ad3cbd9f5d1e64a6a237bfe055e00a58076e1cdcdc524f9dd8d4b2b15355fc
MD5 661afe75cddcb67932caea550945f757
BLAKE2b-256 13a154e26f75bccca10b19ea7966b620d06a3be3384ac711bc548d3c4cb218fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 006e9d8739ac0b710bbf7253645e70d5a9364864acddb2fb8ea5b2ebedeff5e8
MD5 7dcbd4c17ca5fe56f84885a09402419f
BLAKE2b-256 0577a7cfa6cac4591bea4ef7d509bd237162f7650509f7b311d3c3225801dce8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 244.0 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.28.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b326cc36674aa0a99f1adbd980e2d850b08ba0451c04e36e672b18ba847f2826
MD5 17e0dea2dda0cc584271b92b9dda4bc6
BLAKE2b-256 d212f9bff9ba7d551b351f6c6d58a4e9ef9dfe65ec38d7746bc91cbf6f1f99f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 9e27e842546aed5977cb6af4354575b6f12a990159cadd0f544111c508ee319f
MD5 5cded31bd9a413797d88023f6a6d53a4
BLAKE2b-256 21da4fd371c222a03b0aa70c77d42bd0dfcf93424f95cb48e6a6c1e6e945c1d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4637b45e2a2bd84eab38b40f59f0ad65a33eb6514dd58c382d1fb8de1fc871c3
MD5 748f45d97d60ae704b4d2bd686f59ddc
BLAKE2b-256 d1935a110cdaad25513885793fc4746b9f829121d3491846b331b05505166852

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 055f18235a96562e09f602fde010a347b0a903d835e51de7626ac21e953f0218
MD5 ed7c89e67eda8a15cabd34546b4706b8
BLAKE2b-256 1ce5fa97854ad36b276cf68833fbed2beb99aafdd8a18d41e6c94029fe31aff0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a3221213cd467d87080e0e8da8f84594df27105cfd9cf8bd7730965b8894a550
MD5 f3c55d999daafc450ce05c10bff9fde4
BLAKE2b-256 268b585a6b65d4d49ebaa3d4c98d5096bc083bd1e83dc6bf2deb2f5673455c0c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 980d21da72ea78de669b530aac492020d28e8288ab651932c5d870c79d14ddb6
MD5 867be4ac5672a387e2279f1abd9cc4a3
BLAKE2b-256 1fd7a5ba54d5b9b32b0cea703f627dc268dc9850daba6777a6a2d60bad4fa97d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8df3b614041dbd3f6df973c12e2933ebd24c06201fc470261638730abf8a8dbb
MD5 e3640f95fca8a26dd35329c9b40cc5a3
BLAKE2b-256 7ac9da3ae92900f43f5d5cba3094904923b15bc96476e800d7495822b08db78d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 d01f755969f0a3c62df425bab53202ebe510ac6bc1c0745824fd11c1b67d1112
MD5 ec94f8e4e2cdfa22de7833f6bf09f010
BLAKE2b-256 219667ba84b447a76f48c85d85b09dc67c67aad5ac6ede0a4fcbdd06ad7a38ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 3bfa053d22cbb3994c29ff5255e598f13d8fa16f70ef877ffbcb5429fda5dd59
MD5 043f76434859803cadb7e807ef322092
BLAKE2b-256 13f0867596549db790a85ec81e0a7c8e3ec995db884f8250720739e59a4f27b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4358d0037963f37a5a04f6e7dfaa6b0c383c9088f240aed2712ef9e5e1b9a3d5
MD5 7c3f8a2f6a605fc2caa6d27a1ebc7302
BLAKE2b-256 543182a3b1b5f8932595426bdfe69e4a002749360205730112d39a0b4a8717da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 40190454b3616b2b9a76fc7f37982af5e8a98ae96308ca09e2d8f35baed1df00
MD5 44bfdc47258216001d2f70c24009a9d6
BLAKE2b-256 d19aaf5bab2fb8dbeacf92c0625d815b62db40dbb93b7869c6ef2acbc364aa6f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 580e64e5d57e7955d7bc2b90fa23d742e3eb4aecd9016ea92a5eec6e8031f7c5
MD5 e98a1f4a474f507490086342af948e4b
BLAKE2b-256 a1dfa7634328381963d9046c0965da1efc131bf70ad4066b979b00de66766261

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ac090b12e79b13acf947d27ad94273861decffed035a36d73ef846ab5e29e5cf
MD5 f5c947bff5d2629062accbdf9ce9c88a
BLAKE2b-256 761716cedcca0e7bf10dbb6d97ee32a3aac7920d8194bddb664e3e567cb8a8e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0f6d5485c66794a8b60505f05cb3f7fce6390871d0bcceba9192d63f1df1cb2a
MD5 f0684258e6d3ba6d8fb620f537f53038
BLAKE2b-256 1cfef25e9362d8667847d22dac770d7ed8fe535bb8da8e6ae8e4c6cb3d2f5983

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.28.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 5c8dce2bc2d997328df0f5f14463c0a029bae721012cd7553e91abc6665bde74
MD5 db44e978e258acfd175f5b494e8e6d32
BLAKE2b-256 3502cf5f3293f21d7e48538ca1749fa449f653684d2c6554599a43190397c3cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 8476a1bba5bf886694ebd079a6ec667c993b4304a73bbb2a0247c60b0f64dc59
MD5 d61b07230a5a17839b0eaa0a3603bb0d
BLAKE2b-256 7b5bbe8f1e2cfa2e42d30d2b05df93fc5b140d31198533403d399b359b07a642

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f1bcf9b3ddb27f8e16a7b695bb0b6d789873fd0c40f00aba6edc3d910a1f2c95
MD5 6293ac56c360b1b50180a61a390fb085
BLAKE2b-256 2a87facfc7696a01c970fe7c12ab6263b494d90e754a5ca12c9c31f6bf7b028e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c17541246b08362be476b0a831f454af2f8ee47d8cb7fc3e43ba836e5ddcb175
MD5 868f3528274a7cf0018bed2853c27235
BLAKE2b-256 60d859ce7308a41ced6a11df16d0a23d78fd9015397b1f0e03674ec816a95423

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 65ce1e584ad3cc531cf705cd1d3a72afe87832445b4afba48708f7e823c0d0c8
MD5 af405c171cd3ffa2346c253b2653e736
BLAKE2b-256 e6f741db31618a093e69355772b0ce9ee15b43da407b1788e98e66ad05f032e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3d95888943818f97343965050a60030554bff6e70819126d3e49da92ae0a98ec
MD5 8d81695803528b6cdcb6e25692909b1e
BLAKE2b-256 c3176326044cc7a9308804728ca6479858a579a2c81da2e0c42ccdb5906e8f76

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ba2e7df5f3db93e80440a21315225ed61330e66427fb4e386bde2e6c94b1c86
MD5 9e607e1fdcead23b672549c33869bf27
BLAKE2b-256 65c9b3ab324657c1aa466bf7a617f928aae468fb25b11e78cb95da168d6a966d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 26dd0686c82df7a6b62358505fd34215d190f5b1829361497fd466a7452a0068
MD5 7be3f08c053ea8113adba7616ef6e62c
BLAKE2b-256 407a3fc8005885d813ef60ef460a0990c7b523bdb0d2f934d0f55593f7297721

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0d8ff5c2ef3cd10a23e4b174ff304e44d438bc92e8f4925a3261734886e46fef
MD5 575bc6f1f6d3c05812c3102bf83c7048
BLAKE2b-256 b960c0058130e118b35e5652e0332fba7dcf725273fad3415de0556ace4b80b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.28.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e812ae75da50f201ec1a48db33f26edd2fe8e6aa88434cc053820ed2184c16c2
MD5 3d5616e6b4b3f85bb102ccfd3384c335
BLAKE2b-256 887e082c5e0b86f55ea703037f56aaabd24618b6d9c5c16ee905abc3171fc368

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e647c5ecc89611d8034252e1f67c60c270d3c429b085ea6209cf414fd9a23f25
MD5 bec99dd9420b8d5eea6ce1be9bb0142e
BLAKE2b-256 7b0b23824524ee5ca0d33b20465bc7cfb63f7b979f084faf0bc9f54b96f9bb2a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 397549e38a69620651bcac8a29e64cfa954214170ff7aede6f8b198ed9bea246
MD5 86c55fa280432fa8979fbf201b6c0ab5
BLAKE2b-256 e0227482b66e434fc25f013cca1288ce19618f42f1acb0ec19c4eb6709965096

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5f63727384382fe29c9cf43115f67d6dbf97443386904289063af54922e26467
MD5 2b1c8db48ca5f913312179cb29b326ea
BLAKE2b-256 cc4851060510775286e08af0874627c11f43d809c7766e28b5dc50e0df5b7ba4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 de7e30b141bca54fba3fd5c997dba7c4814b85927a52725066967fe1d7c0f17f
MD5 34a250e925fec76250a2d9a4ed3e525a
BLAKE2b-256 d887780262dc29441a92d19061957d1c2992033997206d2a91e73310a1968f9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 85dd26c478d0ca02f181bde56fb84d61a9f20a26fd7817c57d2efb323f14f81d
MD5 6059b689d68aeb04245bb617c651fdb6
BLAKE2b-256 889701929d8046150542ae05ed8248e1d037805e360217182c5bc904325288b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.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.28.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 21b23e82f5ece63b330f5fb974791ce29141736a6a84ff70f9d094f482c85685
MD5 e34c8ec33f828d7f6da3d93f005ae0a4
BLAKE2b-256 767ad3d7b9b3892000b41f24c645a6a599ae810d062c41ba2becb43705dcdec5

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