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.

It stands on two principles:

  • Explicit is better than implicit (PEP20).

  • Do no magic to your code.

How does it different from the other frameworks?

  • No autowiring. The framework does NOT do any autowiring / autoresolving of the dependencies. You need to specify everything explicitly. Because “Explicit is better than implicit” (PEP20).

  • Does not pollute your code. Your application does NOT know and does NOT depend on the framework. No @inject decorators, annotations, patching or any other magic tricks.

Dependency Injector makes a simple contract with you:

  • You tell the framework how to build you code

  • The framework does it for you

The power of the Dependency Injector is in its simplicity and straightforwardness. It is a simple tool for the powerful concept.

Example

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.

Example application container:

import logging
import sys

from dependency_injector import containers, providers

from . import http, monitors, dispatcher


class ApplicationContainer(containers.DeclarativeContainer):

    config = providers.Configuration()

    configure_logging = providers.Callable(
        logging.basicConfig,
        stream=sys.stdout,
        level=config.log.level,
        format=config.log.format,
    )

    http_client = providers.Factory(http.HttpClient)

    example_monitor = providers.Factory(
        monitors.HttpMonitor,
        http_client=http_client,
        options=config.monitors.example,
    )

    httpbin_monitor = providers.Factory(
        monitors.HttpMonitor,
        http_client=http_client,
        options=config.monitors.httpbin,
    )

    dispatcher = providers.Factory(
        dispatcher.Dispatcher,
        monitors=providers.List(
            example_monitor,
            httpbin_monitor,
        ),
    )

Example of running of such application:

from .containers import ApplicationContainer


def main() -> None:
    container = ApplicationContainer()

    container.config.from_yaml('config.yml')
    container.configure_logging()

    dispatcher = container.dispatcher()
    dispatcher.run()


if __name__ == '__main__':
    main()

Tutorials

Tutorial is a good point to start.

Choose one of the following:

Installation

  • The package is available on the PyPi:

    pip install dependency-injector

Documentation

Frequently asked questions

What is the dependency injection?
  • dependency injection is a principle that decreases coupling and increases cohesion

Why should I do the dependency injection?
  • your code becomes more flexible, testable and clear

  • you have no problems when you need to understand how it works or change it 😎

How do I start doing the dependency injection?
  • you start writing the code following the dependency injection principle

  • you register all of your application components and their dependencies in the container

  • when you need a component, you get it from the container

Why do I need a framework for this?
  • you need the framework for this to not create it by your own

  • this framework gives you the container and the providers

  • the container is like a dictionary with the batteries 🔋

  • the providers manage the lifetime of your components, you will need factories, singletons, smart config object etc

What price do I pay and what do I get?
  • you need to explicitly specify the dependencies in the container

  • it will be extra work in the beginning

  • it will payoff when project grows or in two weeks 😊 (when you forget what project was about)

What features does the framework have?
  • building objects graph

  • smart configuration object

  • providers: factory, singleton, thread locals registers, etc

  • positional and keyword context injections

  • overriding of the objects in any part of the graph

What features the framework does NOT have?
  • autowiring / autoresolving of the dependencies

  • the annotations and @inject-like decorators

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.30.0.tar.gz (420.1 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.30.0-pp36-pypy36_pp73-win32.whl (191.9 kB view details)

Uploaded PyPyWindows x86

dependency_injector-3.30.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (297.8 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-3.30.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (269.1 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-3.30.0-pp27-pypy_73-manylinux2010_x86_64.whl (295.5 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

dependency_injector-3.30.0-pp27-pypy_73-macosx_10_9_x86_64.whl (270.5 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

dependency_injector-3.30.0-cp38-cp38-win_amd64.whl (261.7 kB view details)

Uploaded CPython 3.8Windows x86-64

dependency_injector-3.30.0-cp38-cp38-win32.whl (208.7 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

dependency_injector-3.30.0-cp38-cp38-macosx_10_9_x86_64.whl (387.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

dependency_injector-3.30.0-cp37-cp37m-win_amd64.whl (244.7 kB view details)

Uploaded CPython 3.7mWindows x86-64

dependency_injector-3.30.0-cp37-cp37m-win32.whl (199.9 kB view details)

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

dependency_injector-3.30.0-cp37-cp37m-macosx_10_9_x86_64.whl (371.6 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

dependency_injector-3.30.0-cp36-cp36m-win_amd64.whl (243.8 kB view details)

Uploaded CPython 3.6mWindows x86-64

dependency_injector-3.30.0-cp36-cp36m-win32.whl (200.2 kB view details)

Uploaded CPython 3.6mWindows x86

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

dependency_injector-3.30.0-cp36-cp36m-macosx_10_9_x86_64.whl (404.0 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

dependency_injector-3.30.0-cp35-cp35m-win_amd64.whl (229.6 kB view details)

Uploaded CPython 3.5mWindows x86-64

dependency_injector-3.30.0-cp35-cp35m-win32.whl (187.3 kB view details)

Uploaded CPython 3.5mWindows x86

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

dependency_injector-3.30.0-cp35-cp35m-macosx_10_9_x86_64.whl (370.5 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

dependency_injector-3.30.0-cp27-cp27m-macosx_10_9_x86_64.whl (362.8 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: dependency-injector-3.30.0.tar.gz
  • Upload date:
  • Size: 420.1 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.30.0.tar.gz
Algorithm Hash digest
SHA256 dee6b32bdd7e40b500b0137dc501b196bad0c394d12762a969a756470335148a
MD5 24698d2003a36f83bb2a97d7c6a2e5a3
BLAKE2b-256 fb78b9df87e745faf8bf09b0823a546f753525625ae01b2d14a0044c9513599b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.30.0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 a9b87b907c18087d2b112faf876c1063bdd326fdb53ea102aedb7d8c6907d0b9
MD5 09dd0a8d6572c05b0bcd5f7649ede215
BLAKE2b-256 67ae0eda4458322ece81ad07f83de434572c29585265129564a4336a0c6426ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.30.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 261ff708323aa54a1c0f3a0b138dd959e10d13746c2fb91eb8e5d66d669b69c0
MD5 ba8f79aaa1eb52b442150a092f05bc53
BLAKE2b-256 f4f605e2d59a167249a743875bf597aa81b9d6211f0cb99bace0e2bdbb519230

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.30.0-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3ce1a277ad09905e7c1e1c4ca5735ca16f78ddea15776fdc6c8657b74c735eff
MD5 fc8d6e2b5d1da06aaa64fb1343a047dc
BLAKE2b-256 868144505549ffe9a1b76d370befaabfbb0a62503e0b886a17834aba25601d0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.30.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2f1bbaa56e89f725a942058acf9d419e38b8bea9b3b7624991e41483606dfe47
MD5 b2ae5dc367c3b67f572fea6998c54811
BLAKE2b-256 e6655c027b1674f3046af3ed206323b172355aa51cc6b9b6366f4502c974a010

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.0-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 295.5 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.30.0-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 557cf9d6d2c796c2ecaa915905cdcbcd3b2e0be8597f14d6a15c5a72b85cfe71
MD5 0bddbe9f758d1e5b492f1303ce9039e8
BLAKE2b-256 f19da74e255204027229d64b5d789d5c56adee56b0b859895915362596f7661d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.30.0-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9243a2230128353ae528643494545412d45873ee0bcd210e211af87436e042a2
MD5 3ac11c841474218ac273945c5dfb7cec
BLAKE2b-256 d172d60bb7cb358ae036310f48bcda7ee43ada69d45aac36a33e6e172aa4ca60

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.0-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 270.5 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.30.0-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6060eb2de84fdeb46cf0c57011ab99d4fc92348019be14de8145295b8ad3e92a
MD5 e52612fc642728c49f6754dae2e19a9c
BLAKE2b-256 f066c29e7b216cae95adff587c543d0cd71807a4c96c048780bff4f358c5a21a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 261.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.48.2 CPython/3.8.0

File hashes

Hashes for dependency_injector-3.30.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 76161d305d1882946d1e90e80d86797bcc1fb66d9f406998fcf463527bee809e
MD5 2308e799d7693a7a9c86d23db808ba1d
BLAKE2b-256 ef698e88ebcc4f75141d0f991390c564eb9af26260868446713aed6dafe63e83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 208.7 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.30.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 442e1c2217bc67b9cba0eddd77fb1cccfcd0017d35f4bff5075edbba719194e1
MD5 df84512e43cf32d205e8eed774ecdb0f
BLAKE2b-256 719398a0075e01ce581bc0c56a5c63fcb8b9daed485740c6cee71d4b3d5a53b8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.30.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c98d5945d6fbc35c68cb1953789a56e0c20e5396b4ded9d80e2a766abefc1076
MD5 a3c33c892642935c9e8595c8634c814f
BLAKE2b-256 c90f09456615256ceef0f64ebede0144c13f4fd36c51fbbbf0bd902286bbfa30

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.30.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a160dbbc69bf08a0ad6eddec18f980cad707d99242f2d48db7884ee83e79288c
MD5 3c4ac7396fc5448de613a9867b6008ec
BLAKE2b-256 849ca9c4f2f899b6942172a68af8cdeb49313961cd86a82785aa498236175383

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.30.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 347208337292f455c97e3efac1586a29055f7fa1ef68708706237135fb30434d
MD5 4a54caed450b7b7f8713deb89775247f
BLAKE2b-256 17d563a56f60764de5db40ee0f75dd03bcaca75d9cf8e6b0898494fc7c924e23

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.30.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9f56f9481a3f26a13a03656ff40a73785324bbcebf1038f28311c603108b0541
MD5 9aea5fe63ee1d6b6d6b6c673b15f926a
BLAKE2b-256 40ef4c05065157d44dd246fef36ceca029ef8dce52d15dfbec1028bc1834583a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.30.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9465b1de41be67f3518d8021e1d9b99cca6b402c16b485d5072ae24c50fade2e
MD5 72834cd58b9fc52d6b187c3a24f75953
BLAKE2b-256 b5e5e90fc5d918d2ed235af61c941791359716f74c4b002c91196c0cd399c319

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.30.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f1b74c7dd528a2ff27da06a3a47891e50a6ec2e87e1678324eee12c501930f90
MD5 dfa50dea3a8134c99c5a98b6e9f16621
BLAKE2b-256 d4d0211c6999bce35591f55434af06d67c4914a23897c52bcbe75f8fe5ffdd5a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.30.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 9321161721002bcd8af0f22c786ae3f88b39ed4fdf8a96a7827b0ff290ce7d47
MD5 38e92bdd76e61e9099b1de344423171b
BLAKE2b-256 0efa9a94f86b4e668da48f8cfcc5f7b5530d4364dcd777f303f1095e4b18c02b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.30.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 efa0e4d77bdf50072c0e5e4f9c6a66985e9b74adb3529ecbf198da8826e11406
MD5 f7392622cb63b018ff92c0051cd81021
BLAKE2b-256 d36f0630e917b327d58a21176913cec2ced8a5018c13d41dce25dcaefd7a3521

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.30.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 aaea0c9c87b154a43bfc6986a3b1bc1fb7dfa17c2838c20b8a014b9a3684cd0f
MD5 1bc8ee098e0d47a15c1d3a3894a1b16d
BLAKE2b-256 35032092cece12f4cab455e35505b9fc5366391e48e8c80190cef1c0e9cc1c13

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.30.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e6c76523bdaec77519ae569c753efc89ac10b774fb603ae8d4744c6f180155f8
MD5 ffe430335c279e7273a940a82e5ef217
BLAKE2b-256 4714d285e93b23296c52811d48ad1cecb93faadd7a1d13569d06101f73f614fb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.30.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 bc0b3e5c7316e02551805f90a536240fc2a8414a5fcbd74ec94c433df795b9fa
MD5 daa29ba36c9f3de1f19156d61f014332
BLAKE2b-256 c06f4207c244915b751ee727c59300d62a4276f4afd6bcd47b76b33af95fd1e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 371.6 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.30.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0fb25c75f79636ae48cafdd575b3d4253ef11a895a1c8c4cfab5958963826f69
MD5 5de9fbed74ec15d2e11308a9f41472ea
BLAKE2b-256 b0addf7d0cdaef409ecbc6bb2632ea07421c935b4a3c52b63582b80be760db2f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 243.8 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.30.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 58b561c257c82d9e0e9a625535a54ac6d2b526b1f3ef191be1d13c606f031543
MD5 8fb3b667d56729972a02ae21d5510383
BLAKE2b-256 33b1ca5df0a7335f062216b6d21046f5959a55d1199285eee34bb26cc901054c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 200.2 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.30.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 4cfa3ff0d7aad45dc35a7f4814641983a45e87b1c3e5ed57bb7a69ea961413cf
MD5 1a9c6db661fc1c95d5e144fb334aa4f3
BLAKE2b-256 235e864618f1dce6e3fbca5116732765c180b416536342cfd23d26329462b7e4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.30.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0ee2cdf2431d192248baea9d52feb8bd4d25fd6d183d431027605e2fed18a41e
MD5 2d7f69b01b6197601230c4f14f79d71b
BLAKE2b-256 6ef3b63d7acd0a7987f65e281224022dfd307ecd1a81659739cbb3ffe170757e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.30.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b1bc95daa0c312b246e09066d2dabe9783151b985d93c029bd68691acabeecd8
MD5 7e78161398f9d09b8811373ac6bff334
BLAKE2b-256 36aac932e3bc68d54a35a732389528916622c41626feed2decfc9d4506e76b71

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.30.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f7c8f3925f3ae82080819b53749af69ece41eea1c0ab3be3cd9bbd4afeb337ff
MD5 7674a8cf21027370f24e862ffbf4585a
BLAKE2b-256 42558de8f0f719ccec9a37e5c4e98060879964c84b8970ab7835431f6557bb4f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.30.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9854a261e7067383be694325f4e398e69cfe96b3d646fe3df95fbc1673455c04
MD5 8eab3a6cc104cd27fdc02c9504ca8b40
BLAKE2b-256 0e45e40a5e4c5aac30098834f37a31b613952d9700773cdf98bba69970d80718

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.30.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3a14cc3283f042cdee598b4178962bcf5840e44264015562d57a8cbb32fe7ef0
MD5 dc319aaba30da9557b15f86de452bf2f
BLAKE2b-256 a673346ba7658e738cf08c373eabb15945bdb2b5ea57265571e94ab17a5f9033

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 229.6 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.30.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 3926c6a0aa08b7aba25d79c0daa7b666bae2fcb0c09f4fc12f689a31af315652
MD5 c31aefdf136ba1db434d3ee096b7994f
BLAKE2b-256 65769aeeea10325434f3c85e7d86a5d91967963edd6419e52215cb1ccc730c9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 187.3 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.30.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 5dfe997cbdf2201dd0b9b19f0c6237fa31967444905d8f46e7f976cb1ab07767
MD5 ced7fb9927b8c422368ef8e4efd2d8ea
BLAKE2b-256 171d4d0a3fb20959e86b46ccca6b916380844b40edc9b15820695e9b6f57550f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.30.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0554d81a18f0a9317502002370f650fbad8b7576417a3e33b9bf9c113c51ffbb
MD5 1ba9a24a6ef26b06fd072fbc37f39338
BLAKE2b-256 d09d202670f7db339a9e7c462c0bdbf22b8bfd1ef95bc33a95cc7f412892abe4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.30.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 38c3ed4e4945c23abeb58e1ee9b1d7510e6ec6504dab157aef308a1fd14bff56
MD5 a358436ffca24db238311d875b4ed76c
BLAKE2b-256 1c0a6b47f72687e0ff1f525701c8ae9b419b6bb0418c24e24a50ef6d583f1df6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.30.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 af2419b4910addefa0b20c09d67002db83795c9d539c4c47bf9a35a45b226b47
MD5 fe52e7e1746a3fb6f5513ab7f9e6df3f
BLAKE2b-256 43897fd1f47dd5803725b743c64793f9d71bd00d104864a59664d58dfbb93545

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.30.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5613d3339aa0784f8e4406f3f472de49ab2b97793fd696d3e7b8a7787fe0295f
MD5 38af6ab34df311f07c553ae1dff33b6c
BLAKE2b-256 a2adb108553d8fa3672ac2b7776392ca7c358f988cca55b47eedd052565381b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 370.5 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.30.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 02fe7872cccc0bcb3d674054076804bf98ea055627e579a4e7bc3433945535b9
MD5 a8fbae1d643dc22c700980c5ac307aad
BLAKE2b-256 879647b411d41e28afe217af321bf012c3a521ea5cce866b8eebfda747f9a024

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.30.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9be88d1c8a44e74893d023fce802837470422ace613e3ae24637137a894b6516
MD5 708944a5b780889f1afa1c5c0825d779
BLAKE2b-256 c029a4e0c6a956e6d81a9d1710ebc6bf368bf1a443f409bfdf596d099bbd11cf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.30.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3cad105615bb6ddde7753d641cc5908bf9dad8d6f19ed58a90f2b000b11ebf6d
MD5 078444946c7c2cd7658f0bc3ade03c28
BLAKE2b-256 34f99f3cb106ecb14d9d0316ace07647ed83c7150a00467ec89ab142f50c7743

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dependency_injector-3.30.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c8ab92ec49cc6abb134d9ce09c499613ad1366b79bae93f89194f53dbcd1f69f
MD5 e130de62565d7d270723ad1db610c139
BLAKE2b-256 3299d2ff5dd357221d48dadedc3f32f9cab24ef6ee3568279f23ff9e68d51ca4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.30.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3c2bef435d30d8a407c7c6bb3a50013e4d193db1d498f5e40237372ef1732a19
MD5 77ffe8b71b968689a2dfc20ba4466ccc
BLAKE2b-256 c476e625c02cc24bc9c32c458537ee276a0a343dbf5e20f6e1a6d188b0862eaf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.30.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b797478ae52bdc25321a6eca6dac0bc1de093d42c114c0a389ece4d04f9e8cfb
MD5 788483996d964b92cbb2f9c67331c7ff
BLAKE2b-256 3fa8d74028ddde474127acab7c3b73781705c2c777e3d33eca3b77b86af2ba1e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.30.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 949c5e3dd59104969d707ecbfc86ec03e9898a756172683344f0dd29a54e6463
MD5 23199de560e70e7e5d322d02020a77be
BLAKE2b-256 ac8fbb4c07e7cef86d92ef048763fc2b5949d466b193530c7bd14ae4c8b9be30

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.30.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 81e9f0002d1e38f3f49197264b86652a958508771a4f38ec0526a503a74318f9
MD5 0ce88ae98de0db36f5d6c7873e98328e
BLAKE2b-256 22a9437047189ab6f8280f07373495ab78ed86fc881c4232f7d89537170d386f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dependency_injector-3.30.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7c84bacceb8c1ae52e07e80c9bba3c83d42b73ded54019aa74b561cf6e83d76c
MD5 e26251be418d1e1de7066ff14885b188
BLAKE2b-256 f2cf4276929ea1ae62b33f39ad072d8421441d8a7790b6aaa49ed74f07e5f066

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dependency_injector-3.30.0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 362.8 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.30.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c9906319ecdf0a0e15d5c51e56177458ce06ebfadf8273a1ce065d19bf5d0cba
MD5 9c2dfe781e447d84789c3adfd1f33edb
BLAKE2b-256 07adb71bfce03627683935d61e4266ea8b7c7c552ab50313c910068f5ac4da49

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