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

Uploaded PyPyWindows x86

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

Uploaded PyPymanylinux: glibc 2.12+ x86-64

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded PyPymanylinux: glibc 2.12+ x86-64

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

dependency_injector-3.28.1-cp38-cp38-manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.5mWindows x86-64

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

Uploaded CPython 3.5mWindows x86

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

dependency_injector-3.28.1-cp27-cp27mu-manylinux1_x86_64.whl (1.4 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

dependency_injector-3.28.1-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.1.tar.gz.

File metadata

  • Download URL: dependency-injector-3.28.1.tar.gz
  • Upload date:
  • Size: 418.8 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.1.tar.gz
Algorithm Hash digest
SHA256 2d40239eb0f8c2125d3d0bb00fdd3bdf3a3cb2d71f5736f97da87353a48c271e
MD5 26c83487354e4b2b42a07c9655457c5b
BLAKE2b-256 b2d3210a8f633cb7a813c42b00a7f8723861e64c10b89d8beb2d914a170b191a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 018e1773e987ea270a2f1d82a281cd907b90f3e06241f5423ce4c1aae2941ee5
MD5 c5106fb142f562a49e50cade7319d5a8
BLAKE2b-256 f6aa24ac6b3223f4f65bab6cddff947572d8d7d547f63615d49b655845fff2e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.28.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9662ffcfcd26964988253ec74d2f7316b1fb8ac1537a551d25d7a91b4137a569
MD5 90b69aeb7f3f2e72abd0240c597fab29
BLAKE2b-256 3e0c97b65ad63ec9fe7e77cdc90571390126af73df2699a21ab3150fd72266b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.28.1-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 643ac1955b5211412f0f973941641b383fc63767aa30800d1f581e9662b7f1c1
MD5 cf4290669128643d481ab8bb995cb751
BLAKE2b-256 04e840fad9c715c6f4060cea88b02ac415ee7c85837e8868d0ec0b5701093fd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.28.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 304501d5c49ade65cab4dd22aa1d74c1f427c1415bb3f916a0330c7308e41a49
MD5 71122a24ccc7fec6103de08807938fa5
BLAKE2b-256 826460987ed0db3748a51d9fb54b207284de28cceed17dc773cfe3e4b311d4a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 dfad0363224f21b2c65710ce54c198fff474c09e568a0ecafe94187fbd718462
MD5 c2ac7ef076be3b13db096384a6d8cf10
BLAKE2b-256 ed7c3679663771263d9bd0df6a721637a1b249dfc58b72462ad80f88f1e655ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.28.1-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 325a919075d88d357319c76d3b9d104875876a07ab90da5a6ab6c3ceeae7d8ef
MD5 2d19219e3b852a277774828901cf4273
BLAKE2b-256 69a30a8c5292efe23491365a7b6e036685943b7ec80740f3f7e149996c79e2e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eeaeae10234e12963faae6fd640932e6a6b325ba577b9039efc3f91f280b298b
MD5 4834bdfe133810341a32bf5868716127
BLAKE2b-256 e2ac94e9e035df2ac516584da9ee3a5520a89053eb31f6e6953fabf4f48bf94a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 17219dcc8456607e30667baaecd168da56cb80b1be853f827bdd27fed649ec2e
MD5 f79363443165ea4ac59743332934ad88
BLAKE2b-256 4de755a1011cbb1dad58774b03f52c8068720289f061275c2ead1deb357e7da0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8a63760d9222756cd2dbcd4037bf9dd617128fd1b0a11b9ba0befe786343c695
MD5 4a04c6bca5fb2b19a321f61ec6713d03
BLAKE2b-256 1420b0e1ba70cccc78fb6cf97005b59779583a43e23bfdefec81903b7c436cad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5b7302d76cfb6c8d60b8edfdff87f675a98bcdd98edb95c0bbbce5bf3637b33f
MD5 4314bb92469f1c96b1ced93b014ad11e
BLAKE2b-256 aeebfaef6d9322248332ebc4bb40a8cd15c1badfdb3214ee3a9957ef43aa7384

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 55c2c8d93dbd59055341206eb32f9806ca98d0c279f90fbf4f89c7060b62fc50
MD5 ca23cde8bc308cdc2be2d3a361d7762e
BLAKE2b-256 99507bc84d7117bab7dcee440c53a7e1de7b44951ee9148946b54770fcfcb53f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 eb67b91a05a30bef4e847bcf09981ff8f87954ade3bce331a9edb82e70214b78
MD5 82c45e8baf53792361334c2a466b15fd
BLAKE2b-256 322f0505268e7730c159b118a89d7a44fdaac7d4a175748d9c8bc2d35182e648

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d980a78ef3f273584c6795db423f2cbb2668d9182c12970ae73d7d9ff072ea69
MD5 06eb7b0d7aa2135f950a7e3d4441965c
BLAKE2b-256 039c68a5be02e9ba5ae75f9bb408f6d3345c2225956cc0d48876f9bf959145d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b0f7792802fe4be50a569a337b11e5ac2ba492903aaefa35b010ea98cfc1ad4a
MD5 d7b1ba3c78170be2361e5444650855f7
BLAKE2b-256 17a6a68fbd4dcdeacc347637586ef3028446f14939acf923c521cb1476df233f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 164e17ffa4cbff9fc7e85395d1a09589dc278870276e987f43d4affcf5ba4e19
MD5 67d2e2a607ed35ad21570c986d7dae81
BLAKE2b-256 a2beecaea528cb55b2a8c2447eab84446e9778409fe58dc8a9aaf20341e04b97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 04ff43693797ced0aad61cbddc0ed85d8dce046b22b9fd81637475217fd4f718
MD5 d647a08cea899ae3aa33f2776beac804
BLAKE2b-256 dd6b43e53fd9b038aa9c11667ce150a94e21ab8f4df0e14ee310155007e5fb1c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e05ae9225098dbc45f66dd2b5ff185ebe2ed1299124fe79bff3a6e76bef95f0f
MD5 c093f08021f858b1ba8ae6b18d9d0163
BLAKE2b-256 0629dc0ac7b5d90f4d9a06b72bc58e2751b814763a5b648a43797504793e4afc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f5695a524fc25239673bd9fb03beae1b96778afdc38f449b3762a158e08a8edf
MD5 e93ddd6f5672c6b48faee9ea5b15bc38
BLAKE2b-256 206f2fd6c9091a0e0925442d59e7dc4619359ef7fe8fbe2f406e2a2fa9133f35

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 528d949916ce699b04c38a361b1796b12d393a1c54c84f530b6781292af1d192
MD5 de0b996f484dc2a5a39503c15a648214
BLAKE2b-256 386ffc86f436da17c4a7784e40b314d82e2f389d03c57b4ce8348e03b646d728

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 02a557de23277abdeb9ab4b56a344dc9503cef53600f7366f39b257ac97209c5
MD5 4a7369d69e3bcf740a72334a9afa5880
BLAKE2b-256 98f680c4f39ac8b455d61cf2a4bd7bd4d36f2ed39e58daf514ad90a984933fc4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 19d279f8a1e7984db9b9ac40b62704272e18bf0e1d5b4f714fd229e4f02fd7de
MD5 1e77f5c4fb37f4cfb7ecd93cee016c73
BLAKE2b-256 7976768fd162b2d7d84ee5b6ba40f70b0ac505ad241f027307026290c9353ae6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 594d4c9a645b28d46161fbf4aa82ebe422f7ff6e0293c1ef4830954fce469577
MD5 06eda112ed958095538cf521c9b8a808
BLAKE2b-256 1ea5fe383ed9298680683ed30ada318fc9785616f9f73a493bfccff57e817afb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 bbe8147543ae0a4ae1cc8a59dca34911c58f9f97f0e573b4b4ba897c63a95a0a
MD5 5b6f19c806650ce23d82dca3031825c9
BLAKE2b-256 96425715fa2f53bf376dfdc8f5f814ae2ce822bb9da6801460f97ba8657b9ca7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8d37e7f00cea700bea61702b52bfea187434ad08dcc589dd2b9018daa5fed6d5
MD5 0a0c0ffcfa18b2ede05d9c1f5474847b
BLAKE2b-256 83c975950a958d211665d8118df24e72388cb7f45a010a3287cb1921cc4b92e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3a498d946d11cb86e61662045e21abbbc119dfa391ab34e377f4fe1d58e5a79a
MD5 16b2c38613890e295455ac56dd083ca3
BLAKE2b-256 fda9dc33ad67dbcb5fa4e80f711e97c223f1edd99957b9a741abd704ebf12867

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 56d7a9c2e7054d66ad2f4e06c2c7a01b93f0777998a89f0b92223b4d871ff91b
MD5 6c008cfc563bd9ebfe07a919d4ce4b7d
BLAKE2b-256 02e42928ca6e6da8e55b5a7ca3d5515547e15b0a3bd69dd0177cd5731827656e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a28c8824a93c831571158592cbed5ee46e3fd3daa533d20fd2d37230f3db72c9
MD5 768942b67d1fd6668b13d3cc8c6c28ed
BLAKE2b-256 fb0e377088572a2652a66ec28135e4d8bfbcb86ee47337c997396f5042d7cebc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0e44ba32e4fc34e3e7fc65f1cc82d1aaa756734b8a4cadfedba3fe620c7072f1
MD5 a02487326172e3ad13bd0f0c836983fd
BLAKE2b-256 fe73163f97a55dfc6dc8013a8ad25f21914b41feee1bf4f8cc30c21fd3ec5356

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 66761f9517382df938e77de264eefe840db28948d0983bdd5d776e606e8b32f3
MD5 323359e893eb1ceffe5389c68ddfb34d
BLAKE2b-256 883a13eeba17ad5725bacb7cdad14c8db1df20928a1c72867b3bf30d7ad5cd39

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 035fe9cab9cf88c2fcc3958ca4812c2a4b5967d794abfd1fe54ac1221a167401
MD5 5a075dcf667e36f26218cf4ed25754dd
BLAKE2b-256 23883c2805612791d7cf450ddff3bf12fbce51c57855d7cde5f30fb1e2007452

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 514501254affb77690443fbe8edf95f2a01d35b664fbb9e002731ff6508c782f
MD5 3b11c000e4fda5fc080854ec4635a13d
BLAKE2b-256 7df417a3321a08dec9a833bc6faebcfc38793894e7666b90b5198cee1f1af52f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a5163acb4b8d494ae4d43b56f3a810dec5a2529f1388e8952ed38a07f0b3e859
MD5 a5dff30a585791ee5611287921667052
BLAKE2b-256 057bc1498609efec0d2b5c34888ae430918ce5591f0ccdd5a1b5dfa52df0e79f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 961c129e99a3d4696eec2fd51dc94de894b0e763699b1b60bf768e4495adfb1d
MD5 4562d698dee677dd8825d26813d60053
BLAKE2b-256 e72031bb009a26cb6af408a8e9193f8038f5389d3139ac04148c21152fa3ef78

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 bee18d8320bbdb3357a292c4ba325ead2685e1e759f2ed7fdf4f2bf3c37effd3
MD5 5aed7cc31e1181de31fefe1fff6362cd
BLAKE2b-256 3c463b087e75250e36e3171a2f5e75b22eed99b8ae4f3a92729df68ace1d661d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a50aaa80d07390bc8ce1a04caa7e3a3a979ad4f3ab0b46f74fb741fb866b010c
MD5 88cf850b043402e84c0d7d040a8452c8
BLAKE2b-256 7a148a8311581fba6e3b898f778dcb6afbc1a1523bf07680a34a5d79b0604e1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 588343ec0c76a3ed10c8e860b1f614595489d22659deb6a3ae718217d0d7f219
MD5 c6d88ffe70978e807b3577aed49d118c
BLAKE2b-256 e9e3d9bee4dcfa4fc80ddcb5e13cab26aee9579d69f10c6cb30628b941e755b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6235d015d471ce152418580863c0b52b8c11bb32ec646029e4c62c521c53fdcb
MD5 9ee33e860654e713f09a770e80f33052
BLAKE2b-256 a7c2774ee782046d688e44526acd873276f4613d2a8bc562d4bc754a41a8a2d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.28.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 71fbba2ce4691f54a92ca31607f5eae70f6190fba5f10b023e5fd61579d8f61b
MD5 08937c974a20e2d81f8d164c062dc42a
BLAKE2b-256 234ea52877b3cd95fb9e2cc5c3f0c231063af36a8e02a6c68409fe9fa97464d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2f4ecc2d92af93193c192b66ea57b48f039219807d268857270c21dc4f3aae03
MD5 480c3fba504b0939eada15702413dd89
BLAKE2b-256 240baaf55b21b1e73fb2384fbad5008d6aa3df2c3a1fa19d06a163e2295801aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c6efe4747e7a0c862f9e1e30c4040d09d12d7a756baabbf4db05155ede50b2f0
MD5 5c639313122295bbc08366321bf624db
BLAKE2b-256 b86f3501c89c73485c07e567645089f25d8c2f304b52f0dc5115313dd2052ecf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2a2448b20f41d7fe5bb66df4980e02c4e8eb8a5f1dde6e156b876c17e9158910
MD5 4e69c5f55b6b87b6d9320d94c673245c
BLAKE2b-256 ea50907381e160eb6804d9a68d0c3bfe6ef4d6d25dbb994f4400d71a71667f6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d9e537c01ec8d1080f889db62296dfb383f0d5d4dacc36fec24684479ab340d7
MD5 682665e439198552ce90298afdde522f
BLAKE2b-256 8ae96483e1d87c9f233454e55f61514bb828736c934daa92ae35df34b7ce4bb6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 eb3ab10bf92494dd124e06068c764380d344e020785ff0cdf5c93f56a74d026b
MD5 13ddea958562b456f571772abf1fe667
BLAKE2b-256 6f7ddf0b54b20b979c113b85a93edf61ddb26f220260a8b0488b20690166ade3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.28.1-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.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2a41264334f782183ace0095b61736372cb4bf6437c46759404aeabbcea2c25f
MD5 fb870ce1dfc20772189f8438044f63fc
BLAKE2b-256 0be5790ba9916f5013e8747ef585cd155e4b235d5e908e16302f677957689ad7

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