Skip to main content

Dependency injection microframework for Python

Project description

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

Latest Version License Supported Python versions Supported Python implementations Downloads Downloads Downloads Wheel Build Status Docs Status Coverage Status

What is Dependency Injector?

Dependency Injector is a dependency injection framework for Python.

Why do I need it?

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

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

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

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

Flask + Dependency Injector example application container:

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

from . import views, services


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

    app = flask.Application(Flask, __name__)

    bootstrap = flask.Extension(Bootstrap)

    config = providers.Configuration()

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

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

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

Running such container looks like this:

from .containers import ApplicationContainer


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

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

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

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

    return app

And testing looks like:

from unittest import mock

import pytest
from github import Github
from flask import url_for

from .application import create_app


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


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

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

    assert response.status_code == 200
    # Do more asserts

See complete example here - Flask + Dependency Injector Example

How to install?

  • The package is available on the PyPi:

    pip install dependency-injector

Where is the docs?

Have a question?

Found a bug?

Want to help?

  • ⭐️ Star the Dependency Injector on the Github

  • 🆕 Start a new project with the Dependency Injector

  • 💬 Tell your friend about the Dependency Injector

Want to contribute?

  • 🔀 Fork the project

  • ⬅️ Open a pull request to the develop branch

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dependency-injector-3.24.0.tar.gz (394.7 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

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

Uploaded PyPyWindows x86

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

Uploaded PyPymanylinux: glibc 2.12+ x86-64

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded PyPymanylinux: glibc 2.12+ x86-64

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8macOS 10.9+ x86-64

dependency_injector-3.24.0-cp37-cp37m-win_amd64.whl (231.6 kB view details)

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6mmacOS 10.9+ x86-64

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

Uploaded CPython 3.5mWindows x86-64

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

Uploaded CPython 3.5mWindows x86

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5mmacOS 10.9+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: dependency-injector-3.24.0.tar.gz
  • Upload date:
  • Size: 394.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for dependency-injector-3.24.0.tar.gz
Algorithm Hash digest
SHA256 bfca3026418ab6bfa8c0cc1e0f5dea4c8814182b268b3a50c97442e18b5e8571
MD5 fef69debd54eca89ca9010a6706555ca
BLAKE2b-256 35bef57fa5c3fc0de5827a2fec5fa5d1f46695d632d81741c7c4117eb0f580fb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 7826dfdf9462172e41cbd3ba2f08e3ca22e880cf70acc478cc447dbbe6b0b590
MD5 05496f71c3544276c3b2c4212fa73789
BLAKE2b-256 a2d9c4e1fdc16de592d3d0b1b0547f084b2d49f67b595181a7dbf9d86d6a7a9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.24.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8217da574503e1386d51691e261cffe9a03e28253b8f2c297b078d5d12a03290
MD5 98eada97a5612d8f4c01cf20718cdfa3
BLAKE2b-256 bb7ff6c17da5a7385e5cca1b6f72db531b61565ebd086727643031dcf449ba66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.24.0-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3efb06e3ae92a666cb82f0fdc3cb6314422619eea78627944bffbf79e07300af
MD5 dedabf4d362c58dc77d73ca36251073e
BLAKE2b-256 596e2e2329fe398bbf32be168c5d403a3979e1a7542e95b12f6da61f978ab77d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.24.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9557c7a7dc2cb65d0db6e6b43536fea6cd8de8a33c335157dcfe935205e01c25
MD5 5d51996a949295a50e2696b5c3c4a04a
BLAKE2b-256 0b49d5ef195685d7e17213f7bd4af9ac5f9360870386247819f9bb0857f36102

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7bba37467e6c8ef48d41ea84a0cd63ea14aa56544613154a6abcbf4843ae1b1b
MD5 093eb193361533cfbcc8c54bd26e59a6
BLAKE2b-256 5ea2dac01797a89264cebb4e081e2c48fcdc7d2b79da6975ad06e9cc25eb9ecb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.24.0-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2b0aaf61ff455766d125494b6fb3896f4a4b1b48360dc94c25ee109989a065bb
MD5 27129779a129b5a818a56439368121f4
BLAKE2b-256 7eb33f0a0a9e28d8cdb783964b61ffc73568cb889276d3e5b5af09d0e56d313b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 713f6eca050c9ae6ced60c0cf45d5f6c680d7be9a800fc764293f7cc214db2ef
MD5 44a9876f6e9be61f7a6c7827d12ba36a
BLAKE2b-256 3d0176d6ce123a210ae9de9ed317da7fa1ec113ffd79d6cd0fcbafdba5930682

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c89f60932756127aa4771d061703cd0781567a1846bdccdaf1349b41ebe31277
MD5 9a92542c6260992e0765612d145f82e1
BLAKE2b-256 12a5e082625220dfb4cae97c63bdf381d654c0be316ea52c629ab8489c48799b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c6778a316fb6c3e4731e33f2df94d56900b6666f8272c7e9595e90e7492069c2
MD5 d2673a6131752de84f12284ed17aed01
BLAKE2b-256 399e54ad938a3fcedcb26d86b55ad7125bbcff1c4cfbb92f99f2afe34d4910c1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 09d96ad4a9479e9880af3bfdc5e183c15af20ea4f518b39e42294a17bf36423a
MD5 7da6cbd1db75c63ba88071f642d061c2
BLAKE2b-256 d47b1881facc200500514e98b9de1c4dbbe62ee2e5f19060583583ab9cb6724a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b6fc132f62cf71e211e6667b2e84f72e990ece2304f77f4734fb3649ca542e6b
MD5 c0aae3e63aa0189f9b5e8cf0eac4eda4
BLAKE2b-256 b95a062af94ac67e3ef46c2ab214a2bca1593710365675e162bb125dbd96d1e3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e2ee11f38e22e9109f2eb01acd9e197aac49c11b8f1a6fc23ad0fec4fc12a61d
MD5 40f19aa03c35f9fa720121e5284ebbd8
BLAKE2b-256 71ed4f9e5b389df505d388abadc4ff9c2644b6b163254ab3a74a413b823d5075

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b666f4d79bc8457a865271fab3454d68f62e2470cb0f0b3c48071efe6b51b30f
MD5 d757c14c62e14c23f7126357ccc96757
BLAKE2b-256 e902fdb7c3a01fad0f2c6aced7f3bef3d7d682a01606f67e5121a003f95ae787

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fbd10254360336f372a09a343f36d29e56a69819a25e8bf57a57da6ddb31550d
MD5 d2119025275b84e9f972b7c990f94fdf
BLAKE2b-256 425b7d43a746300fa8f4a6c8064f574da9fb010333bbd6c8b5c92ba0968b1aff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.24.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 231.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for dependency_injector-3.24.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a95132c92683338678c9b19ba08734910b34f6cbfff6049344310ca5ae875ad8
MD5 3ac230a2ed261d2d58103658b8119ea0
BLAKE2b-256 9a119c041845bdda991cf632aa536f50fda24db0f43360157fd91cf37c96eecc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.24.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 189.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.0

File hashes

Hashes for dependency_injector-3.24.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 8f30c5a9d6df30177893c3478ff9cba84b269de4dfb6b8cb0f481ca463f5363f
MD5 3405056ada2a8db69a35a3aa0a7f5ef6
BLAKE2b-256 6f1ff7bb8e377fcd0706e802ebbe168736485672fef40405c8e59528b29975e6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 aa9172e64d9fd8fad62df44f63f2e9c29d7275d8a0ac7b7b982c73fc937963c1
MD5 13be429eb292ebe0312da84a9ec8a1d9
BLAKE2b-256 d814cd51ed3cc5f335286b954b81a8b4b0b92eef9e68157fd6a7dfbcd98dbd15

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6b85b3a461b3fbdf0fb4af3e318a0994edb826164d41f685cdc1d72c9ed9c599
MD5 5acc5db4fdb798e10cf46ff7a61f8862
BLAKE2b-256 5ae0ee90458337427b6985e946b76aeee37fb67d87977fa1f113f323a537123e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e3f0396c363ec07ae85f2ca681a0d63599b76bba7adcef5ccfed9a602a5ffbda
MD5 58d0d249bf1ac6b8c80677ea593c85eb
BLAKE2b-256 fe53a2f59edeab676e732cf1248cf553183a9f22a57590b502bfec9d100515a1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 986da70f829929e51f1b691b8111b6296688da80b71c1a1b09a3c42d11344463
MD5 abc060a7ade57f2f29127b5a29da4f48
BLAKE2b-256 98752fb976d5a8bfd1cd6aa8dad5dde60fc71e003a9b2cc0d4248617beeb45fa

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 237ba5599cb8c3fc37bea54387191b38287688bb83efdb7da9cea3990d0e5675
MD5 6e32d9b442ea65aea933466c789c139d
BLAKE2b-256 f45f92278b6b8092d8016372e2fe259c31610c862426776c98df528870c3937c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e7b5d9e0d22f3344875d870211225fcbc20725ac88d48ac5e2b27972c7586958
MD5 638a6e8e208d9090e3508565c775bb73
BLAKE2b-256 3f5c73d7cea7d5366f1352cbc8327d189ae9c4e8c4d7117eb5e152483380be98

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 8b344f20687589339cd9ae82b4a4f37494d3446310cd87b6fef5dbc87e4119de
MD5 10260d04b1bb418a8c8586182514f93c
BLAKE2b-256 718ed5281e7308d7688a6e3f28728a5c44cd6fddc1f301ec56f52691a107d83f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5bb9b59b9ecce5b4b16530993d35460bf4bdbb244acf2b5d9920faa1847de434
MD5 62b70eef84d675d89298577397920609
BLAKE2b-256 309672c1de4e99c580180f18e48ac1ac981265d9083c8d286adb0e0be258caec

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5df488aac071bd89f95552f1798c824cbde823640d3711fb333235afefc10387
MD5 10b20ec5956181443b5363fbc405873b
BLAKE2b-256 e8ddf824899a26d67c8832640884f1f1f12dba6372dedef265bcdbe8aff61f14

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a875b71e156b94b340bea1109fa5eba78657e9f201ade766f9e532d2a632cfd2
MD5 c8306162a143f6d8ee65d10b30562286
BLAKE2b-256 c1866f641f440c148f9582f6bf4cf04de17ac8dfb0b2a99ba2ae91edf09faf90

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6f8331f04a61b76eaeef72ea01cb9017e58f5172c080f28cc07ff18297829a66
MD5 4ab57da78ed164f3cbf8590aef20bdd9
BLAKE2b-256 cec3a493d31e93254eedd8835bb5f4a6d0a27a457b865c0fda17cc41ce08ef5f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 559be22cfb71a805d377187285966e2466b70d51be2f69e1de129f5b56a9385b
MD5 32a6eb66d2b8986cee979f2eec8ad217
BLAKE2b-256 3ded356fbe8e5364750bb2ff9ce1ca6990bbcff4cacc81ed5413fb04c5b2a125

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 9a846d8c7adb49b31a34ed59dc89445e0c3c1003e664d9c312add9a479521fbb
MD5 ae7e146f20e5ef0a33c091d7fd44fa44
BLAKE2b-256 76ec2969f7da4e52f01dafd38c807bab720dde63a03ccc3a48b4e5a4823887be

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 61a98ed5f8bac233600e72c3390dcdf4a106663d3d64be1e452908a7bf4ca21d
MD5 c629daee3ebb2153a02a2e79fdb58245
BLAKE2b-256 ad0b89e6b429d4042724c51aa21cd86855bf58f9ad3a387cb49e6c9ad368585d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b58da2a369398e7567efb7454483954f35fd9c78bcfe278f9554fd28c27e2acc
MD5 46e421a734cfb2b8f2ba09c8e73397b9
BLAKE2b-256 e6053bbff27c4e32ec3e7662d5a1b004ae1e9e5af9558a6475b0a6326656469c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d0316b76e9521d00235ffcd5ea88b541f6357b9760f69076371670310c4714a8
MD5 1309ebbefde64111bdfac16c787999dc
BLAKE2b-256 92a1326cfe622c0bfb62f7b877e9186804f5fa1509222f27c79408982effcc26

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0f74cf75d3095e7c1343ed5c97d442c3054f1ef2fbabed5679361a6805005acc
MD5 03e2f585a18aa4ee489a78006fb57e55
BLAKE2b-256 535dc41b1336be1ac737520bab307bd1a33fce32a6671c32c3f377d21712f8bb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 da1a0d6ffac0ac7d15363c3e5619eb981c99c1f3e500062735f1e8f6d003a70e
MD5 edf9bfbd9923eab94fe3eaef1e6ac3f3
BLAKE2b-256 a40efa3fec365b7df8c87b5f524aabd11e10b25c8f47a4318f08f167f0e56724

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 983a6c8f5d51c4b99bb4313d846946294fee246c287f4363dabca77e09a97a09
MD5 ea67684fc4eb91b60325d6115dfbc064
BLAKE2b-256 40dcbf37086f231c8edbc540a1b1e9a1a2d81e140ce3fa277044385ac7a5bea1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bce7ab8a263641b642bf9373685e1fcc8dee519408e78da04f8db8bd3e998696
MD5 b7fb4594fed4d296de8f2bbcad1174bb
BLAKE2b-256 761b1b3fc8ecaa6a7f31013d7b48294b422becc8ebd2120283daa6cca12353ec

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c609124200a8be0120bbca45e88d363b022a21d5adcdb65c7e812a1cc67f2620
MD5 218d7364bc7a77e2f91dbea7e2a1edfd
BLAKE2b-256 c0091762724e6a431a2ffc9fa70b327e477837563164d556871f4ec10b9e43cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.24.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b0dc748cae7ec81d2ae9dd92ad8db7d72d44c27296c58e7eb403d42744a2bb77
MD5 feda432693486ee0c17ed8a828b39091
BLAKE2b-256 19747615e6bfafb09942325deb67617ed7ac668c98a55f433d6c1755daf8b429

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 04bb4684c992c870141e8889b13eb06c168d5fb9b02eac7e8917899c54e666f7
MD5 1a3bf729f393eaecbe044e285bfa4fa8
BLAKE2b-256 b4f30a8d7a09d4c61bfcd7502dd83383a9ae4fb943e0de008b00c726636e2de3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 eca004df232b5d1e5078ab4c4659889520f8c8dd7ccdf3f523df8b689fcce4ad
MD5 bba75e07f13fd69ce3d896da0fe454d4
BLAKE2b-256 38ce7b11527efb792b033f12fd15c9d2584e4a24e09a9a2b1f8b15a33a73cd84

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b42249aec0a197c97dff9a36d40f9a1fc33c88af41da18976514be41cd55092d
MD5 566317c43aa10887a1e98373358f9753
BLAKE2b-256 e50a6f975dbd519ed4c774c3fad160232a5ab2883afeaaaa43b7158cea4ef47e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8efa813e1654372514ee28ed457090c2e53ae9c380e493e66bac967412538706
MD5 a36c819f2572e1212d9f228e5af241fb
BLAKE2b-256 a35758d56a077a11007290aab4bc566167f95a03fdb0d85de4af26017c95091b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c0b67cd076cb8e84a1eb0c0f3cd498e6ebf0ff28f71019f04b192527d89928e3
MD5 cdf09de76d34be4e3090d73a7af23e73
BLAKE2b-256 0380bb27851c02d6f4dc0ba96693dc0c9517d76276954b3a6ddad055e27b2cc5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.24.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bd50174a3790bb58bbecd53ee9c7a9f5cfc34509f52942e1bf855a5a34d2b84c
MD5 777480c6d656a4e5c93e1f4cb7f70bbb
BLAKE2b-256 a8923dafee21750a9303623f907dfb27e8a7f390eed5b036c390d1ebb907203f

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