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 improve application structure.

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:

from dependency_injector import containers, providers
from dependency_injector.ext import flask
from github import Github

from . import services, views


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

    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 = providers.Callable(
        views.index,
        search_service=search_service,
        default_search_term=config.search.default_term,
        default_search_limit=config.search.default_limit,
    )

    app = providers.Factory(
        flask.create_app,
        name=__name__,
        routes=[
            flask.Route('/', view_provider=index_view),
        ],
    )

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.20.1.tar.gz (392.0 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.20.1-pp36-pypy36_pp73-win32.whl (180.0 kB view details)

Uploaded PyPyWindows x86

dependency_injector-3.20.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl (280.6 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-3.20.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (253.7 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-3.20.1-pp27-pypy_73-manylinux2010_x86_64.whl (280.4 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-3.20.1-pp27-pypy_73-macosx_10_9_x86_64.whl (256.0 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-3.20.1-cp38-cp38-win_amd64.whl (245.7 kB view details)

Uploaded CPython 3.8Windows x86-64

dependency_injector-3.20.1-cp38-cp38-win32.whl (197.8 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

dependency_injector-3.20.1-cp38-cp38-macosx_10_9_x86_64.whl (360.6 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

dependency_injector-3.20.1-cp37-cp37m-win_amd64.whl (230.7 kB view details)

Uploaded CPython 3.7mWindows x86-64

dependency_injector-3.20.1-cp37-cp37m-win32.whl (188.9 kB view details)

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

dependency_injector-3.20.1-cp37-cp37m-macosx_10_9_x86_64.whl (346.0 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

dependency_injector-3.20.1-cp36-cp36m-win_amd64.whl (230.1 kB view details)

Uploaded CPython 3.6mWindows x86-64

dependency_injector-3.20.1-cp36-cp36m-win32.whl (189.1 kB view details)

Uploaded CPython 3.6mWindows x86

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

dependency_injector-3.20.1-cp36-cp36m-macosx_10_9_x86_64.whl (376.0 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

dependency_injector-3.20.1-cp35-cp35m-win_amd64.whl (217.0 kB view details)

Uploaded CPython 3.5mWindows x86-64

dependency_injector-3.20.1-cp35-cp35m-win32.whl (176.5 kB view details)

Uploaded CPython 3.5mWindows x86

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

dependency_injector-3.20.1-cp35-cp35m-macosx_10_9_x86_64.whl (344.3 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

dependency_injector-3.20.1-cp27-cp27m-macosx_10_9_x86_64.whl (340.1 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: dependency-injector-3.20.1.tar.gz
  • Upload date:
  • Size: 392.0 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.47.0 CPython/3.8.0

File hashes

Hashes for dependency-injector-3.20.1.tar.gz
Algorithm Hash digest
SHA256 8e7c70fba7fb2ebdbc8b1d7276a45cc95f2e99a9d3f038cac889a548b4075ca8
MD5 3e077add51eccf857bfb16ad73eb0cfc
BLAKE2b-256 8f029aa8bc3e8bc10bc55d20b53d0c5fb7e21f7bb8eb253d0b6997afb4a0e5dc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.20.1-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 510fe1683b187c81ed9a8a60714cbff3ba3602f705cb0b967883eaa5c2e13870
MD5 9dc010192b8aadfc69fa975c9fb335a5
BLAKE2b-256 448cf5ba8de74ba63b7851beb66bd4de79b6441e8e448bcdb3f42fff7c41ab22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.20.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 739c188344112be00cafa4f4c5603496106eb09f0f159953cb19b46716a9ea45
MD5 f234ff433a30e4e0b889f386aa98f907
BLAKE2b-256 553b453794cb769145b87304730b7818e7d0c49b31ab2178838dfac088bfb7b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.20.1-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a9287e95afaa96f4c5f06831cd45b6dc6003274dc29f6c412e07cc4b5c2b8b6a
MD5 a2687bd34739bb03c172469a116eb81c
BLAKE2b-256 4503226f3f9dcd9060f31e73941f696b9af800e71a35e840ab216b531c214a52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.20.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5857f298155e64c0f9cbca577dbdbd2693684429f7e516b6a40dc44d4a9cecc9
MD5 5ea7917e5609d0d46fa8a5fbe29efe23
BLAKE2b-256 6c8f481e68ee81a28202bd06824b127537d7e2c2fb34600ba867cbdb1901bf5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.20.1-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 280.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/40.8.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.7

File hashes

Hashes for dependency_injector-3.20.1-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 956c75206cd3cd0648313eb67e59f256fe7c5e768f3ef3a81c17c57c482ad74e
MD5 94e9409712f8d20fa0ae1df6845718f5
BLAKE2b-256 ebd4acdc6733c56aac96a32e8928f3f709df1c5b9e55b69ed484d02854ae4ce1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.20.1-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 868de60de705e9f1d125d7adf6cf86d250f9f1f5e53cbdcb8acdf8c607d27dac
MD5 67568ffb8428c51ac2618333e4ccf371
BLAKE2b-256 fc9d9e3b5cefc54ad59469963528e81e88a8409147185a5b5a87d751e568a6f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.20.1-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 256.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.47.0 CPython/3.8.3

File hashes

Hashes for dependency_injector-3.20.1-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fda06d0d74392945fa7fde084eb4c62eb2a85983c0483b3d908c7ccae935a176
MD5 aec3a87e1f42777113711162cabd42b3
BLAKE2b-256 c2867d59d39ad3bb58a2f90692c57bc5613c22f63f89f79bd6cd6dd868bf6f9a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.20.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 245.7 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.47.0 CPython/3.8.0

File hashes

Hashes for dependency_injector-3.20.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 541c61a0dc2597565159f7989db60f411f93c9a233ff09f28445e237bbb1110c
MD5 a853857e4d07632cf714d7a19971a551
BLAKE2b-256 c82a5429d753d1c67d5aae0627dcf4805c15e05c90809347cc47619a0fc15aac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.20.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 197.8 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.47.0 CPython/3.8.0

File hashes

Hashes for dependency_injector-3.20.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3da3bba1436c8cb916ac907238986a1d39fb0961ff4072dcd407bde877779dae
MD5 9b6562a7a502ccbeb851c37dec6d4eb4
BLAKE2b-256 a664d5edfccb5a7ab63f5765bae25e78b7f112b5e92575800fc5890ff2c90b8a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.20.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ae3fd33b56783fa346091467d717397dadfde92a3e1dbb211a92a7398c98ccd7
MD5 850d3d279b12de59725846957f72e1a1
BLAKE2b-256 218c91b92b0d70765be9766b910277f7bbbbdfa5ed2f434db13b186b95684530

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.20.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0def72fbd8ca45a1b9611ff09f9ee53ccea7aefadc38853601bf38881a435d3c
MD5 733d542345e02f53a28dae71f609d9ce
BLAKE2b-256 b6673a3f93740d44c4455b45d9cee5804266f5610e01ae6126be537d2957d4d8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.20.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1fc6fe577728f7e0d58089623b0046dc2a47857214cbffbb9c447694b86465fd
MD5 5504991c3fe39f7b5a7202c98dfc9bf9
BLAKE2b-256 b0e11586c86afa79888069dd0140feb99b10080fecf7b14449afaca6af788574

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.20.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a7e30b4f170dae93985582dab82ba6cacb704228ac8524e5d801c4fb43e78930
MD5 3cd6ad804d7c1e9549407a150b1712d0
BLAKE2b-256 b084fb853f42b6f3419e5567f35e4af79a98ca7a12d4da6468df871cd89c66ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.20.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 360.6 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.47.0 CPython/3.8.3

File hashes

Hashes for dependency_injector-3.20.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e620aef813efe71d298e0397fadff7de36ecd05757b4b6ef4f8a253a30920e61
MD5 468fdde0ea3c3495a92c295085ed5d3a
BLAKE2b-256 6e5bc1c44ec452b584fa5650725a6a72241015b82ff99783333ce6aecd92ec48

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.20.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 bf4da4b3f61205073d481753c9e8817411bfd6c9378729d6e0fc316588978b1b
MD5 6e94d3d8bc4e87090efcc6a87f9e2e2b
BLAKE2b-256 ca19d04a72c8db0d078df2df8d3667585ba001a84935061d69292f13078702d4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.20.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c7ed4b65f59f666f698474dc09032c76ab46321bf97f0effe958807aac2b6702
MD5 184490ca64787b96f972c3383b35e29f
BLAKE2b-256 17373075519196de9d4790173cfde65b74c808fc67344c187c0ae27d8c0b05e8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.20.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7cd093603490b0627b5942ab58fd17afeff3e9c7e6f76d73c555aa00dcbc8c65
MD5 8e2f4e1a0d8a6d08ced28c1605860aa8
BLAKE2b-256 6ca83b2ec7af88694249e173450d877ac3475bc4c36b663d55ff763725e9422c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.20.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8c926eaf051069218be160414e11294f3bd24a1cbe149c6221f333a3f843497c
MD5 9368b6d2dcd2c545b0eeb28714e23055
BLAKE2b-256 4b5db541de8d0ef411c92f8e853a1e5871aaeea053cc24e73c614c2f3bfe0a8d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.20.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7af567be8284fed9f203a0ba9df0e4bcb5bac327d63d870420d2917d55b08282
MD5 9b258bb9084c1a5b986cbe70177912cc
BLAKE2b-256 adae928cf2c008757928218069897f46da8d8c8d9f55b5fedd8dceeefda297f0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.20.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 62fc24c8ba07b9733b9c8b45d5c3581cffa6dd926914021f0b7afd966c49263f
MD5 0bd094ef72d59f958b00474b46e4c8e5
BLAKE2b-256 623fa925ef1c7bf370eee72404e888d983aca13a15d2225cbe329d6cc61054a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.20.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 346.0 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.47.0 CPython/3.8.3

File hashes

Hashes for dependency_injector-3.20.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e76576b4cc2b40b6cf08157c475379cca9eb0382f03279223247faa44365dd80
MD5 00b602f17880b71af62217d43edca708
BLAKE2b-256 571e9d841310f673dd85f36c1ae5a287fa987dd5ed85558dc7fb0d8ebd222d93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.20.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 230.1 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.47.0 CPython/3.8.0

File hashes

Hashes for dependency_injector-3.20.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ae462d1b714ac694f50660a89ac2b92aad4edfb06365f72d5ee6914b73520887
MD5 fe0ade6ee0210f05ccbbebae2d696ba0
BLAKE2b-256 c67bbe359db9155171d683aa9f77d723a05c57d190265ab78418e389160d09a7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.20.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 db6873c6ad867dd89acfd501e9ab6fb79aaf74d0573212fe3df5412e9d4e5616
MD5 c9181b8b1e85d2060c81c6d3df5eb810
BLAKE2b-256 4806653d0d187e1067b7bca2d2e6dada57d19ac4e27600f28aa72b278c08cb5f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.20.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 586a4d9260517dd73e8dd348e2fa2e26d24b4117ca5b80cc6330f5bd0398ca42
MD5 91c2a78e68de833d9da32355395f8391
BLAKE2b-256 d6fcc64fe315d1cf056578a2a48dc04739cddca34398f55220a2b4c364c2871a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.20.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7cdf9f84fc18c579167f5f2a74e4bc49922675e3ac63ae2957270498711eff15
MD5 1bd40d182f1426ae12dcdb7714d953e6
BLAKE2b-256 659ce4536d55faba7806647d0e5f0cbed8057711e207d2a9eb90c80f27571dd2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.20.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6ee473512fd2df77c55a2c1e7ebed153e6fd75eae4d0772872743ed185ebd484
MD5 b68570b84ded9e86c168c541e12b4f7d
BLAKE2b-256 f2adb01bdd423c420f7f93bfefc41d0653697ed60c003ca3d95f664f2db43053

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.20.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3b31052b0701beed01699dd63fe8232314e55bab039293bb3c62ffe07b2a0826
MD5 36cdd0b60ba8d648c164026650e1c99f
BLAKE2b-256 ca685de86518a5ef273225e33c3fe825c066ef055f4e06e97feab9ac383da5c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.20.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 376.0 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.47.0 CPython/3.8.3

File hashes

Hashes for dependency_injector-3.20.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a5aa25c3b5e561a691cfd6298e74a995f393d37cf334437d1b82382633c252be
MD5 1a725d14d8aac25bfc3a3286f54fbe76
BLAKE2b-256 f05b6513413931859b4debc64acd9aa66efc7032390805f2631e5faa5eb47da4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.20.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 c887ab1fcd1b622cd3da1c5c049b4809748cf649690d15c7212ddf366df8ecb0
MD5 99bcb8c6995779b9430305a512c9dacf
BLAKE2b-256 7c5761236cf9a3dd15f90d00173e58e9515d526d82fcfa23d34e60593512fb38

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.20.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 176.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.47.0 CPython/3.8.0

File hashes

Hashes for dependency_injector-3.20.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 5808799d8006ce91285e04b60316172cc60dfa2bf56cc5a467f090a2ab2b6581
MD5 682e026f8e9037cf35dedb1cb4fd5755
BLAKE2b-256 68b37f082312717ce1087864cad9b2774516bb137927b7a4ff0698dfc372dd31

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.20.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c0c79e6d40ebeed6315ed99c41620459f6aad93b6972629f2fc139bd3aba9f89
MD5 daacbd93e2ff18b095bf5a8b56bb6cfc
BLAKE2b-256 db1a7d7ab99693545a30e3dfd0a139ae25bfff0815e4e8c4f0b0df73503fd6b9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.20.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 23a70a608d2a5e0d26240dbb6bbd37bc1e5694516efc82edbdd72af2cf04cb5e
MD5 99eae39761d8aea4ff4339e5234d9783
BLAKE2b-256 8ce477006ec90126389fe51317af77b6728597a3b97ae5ec1a5741defcf7b9a4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.20.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dce837701ee022ed2d08a81c369f04bfbd53cdb03bcddcb7da1cd8f4b30440be
MD5 c49fc2145a34f28cfd63368a04417f39
BLAKE2b-256 d5b3b40275a94790377927eaf40b578e4b0ef96b209009fb647c2ad725afdabd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.20.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 55a1120b6e2447301c5f21f68c6015c801ca280c81987413fecc2b9df0b48278
MD5 cdde1762a1fd9e8b4fdea29d3137cc50
BLAKE2b-256 a2514e82a0b64217cd1d503159193997f920be8e3001f26490821e120e546544

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.20.1-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 344.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.47.0 CPython/3.8.3

File hashes

Hashes for dependency_injector-3.20.1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 77658c512ef36eefcca90264ae0393b441a66562657ad5e749f88dd145d61b80
MD5 0155a9ad28d1d481dd5309dbce934576
BLAKE2b-256 e9fc561c14b4a9b0161f9ffdb958920b54f496edfafc37547fbc9fe6556e9e89

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.20.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ffaedca27f4e8bbdbb28ea46c5b93bb649d3dac5263c2069c8447c6c272d2a06
MD5 6e4aaa6d3ff2e136515b5558e8d8dd5e
BLAKE2b-256 51fec9c490ce3c6700e50d113d40eab2c8663c798fa8587841ada72ebbe30277

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.20.1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c56824b4b8f927da28b485138cdaa888a5a05c2a7cb7f5d3a7279db1dfca2686
MD5 bd57cf67143b444d1930ebfdf948d683
BLAKE2b-256 3994358c97e0b77f4c5cab98333190cf1da740b4504f937361017ade3ed0ca94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.20.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 725072dd88047b08db6bcd40d2700b3af6ac7cfc4658bab812b2b50c6af4ebd2
MD5 fd9bc854ecb6e379fd07aff916ba9c42
BLAKE2b-256 a423f5ae7478aa06e7a67234123b4e35e0b7a56660b863252f4c571cbc961594

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.20.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 69bdabaa4f4ea3770a01bc1fb99bb52e76113dd85c541dd3cc8088bd746610cc
MD5 0dd6997cce01c95391e1c70a0368b3bd
BLAKE2b-256 dfba6a51bc6c30c778955f4876176d1cd90a22a03dc77ee35a19fadef77a47dd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.20.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 957ad10e94d0f9ce44716d48201539330afc50f73bf335eec5303bf1520141e8
MD5 c96cc3c6578d8c6fc1f1aab9667362a9
BLAKE2b-256 b4dfa8ecad167a75ab30105354a6222ac3518c682a3cfe2d7d06dc238cb070b0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.20.1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d3b46c5041535e24d2312ad0aa8d518f860340d1b0e715fb207ae3d1c3bc57ab
MD5 df42b23a31e367f07a61d622b893c8c5
BLAKE2b-256 3820a25c5d08075674e0ff887d4efbdeab2c01c9d1bbbcd0009fd3f5a3950c36

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.20.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f12687acb59bc2ff29a34f5e198ea7c51fa7dd01bd4722d7b85a424e98bf3668
MD5 485982e3957aa2c626644d6e7599be80
BLAKE2b-256 d32bdc96f0ab3a5af0a7182675e1a7fef1d9e58db7907c753497b763230d51d5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.20.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 efb79ac71d2f4c6f8739bc343fe803d984cd0a0cc20c3a68bbb2faad50a555de
MD5 f507b78ec4d27c5be2f41f07d0f36fc2
BLAKE2b-256 b1407e480c5912e4840e19647e81807de800bafecfda385190ff0c1f802dcb1a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.20.1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 340.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.47.0 CPython/3.8.3

File hashes

Hashes for dependency_injector-3.20.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4cded412b200197e18cbe1ed01e76f8feb4724119412c0f2d6e5a70fd3f853c6
MD5 a368e789e45d6dde0107522f26f31a1c
BLAKE2b-256 ba088e7a1d90057dc5e795d797a2a09a3ad80f6421d686979f38fc5916389ae6

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