dependency-injector


Namedependency-injector JSON
Version 4.43.0 PyPI version JSON
download
home_pagehttps://github.com/ets-labs/python-dependency-injector
SummaryDependency injection framework for Python
upload_time2024-11-04 09:45:06
maintainerRoman Mogylatov
docs_urlNone
authorRoman Mogylatov
requires_pythonNone
licenseBSD New
keywords dependency injection di inversion of control ioc factory singleton design patterns flask
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            .. figure:: https://raw.githubusercontent.com/wiki/ets-labs/python-dependency-injector/img/logo.svg
   :target: https://github.com/ets-labs/python-dependency-injector

| 

.. image:: https://img.shields.io/pypi/v/dependency_injector.svg
   :target: https://pypi.org/project/dependency-injector/
   :alt: Latest Version
   
.. image:: https://img.shields.io/pypi/l/dependency_injector.svg
   :target: https://pypi.org/project/dependency-injector/
   :alt: License

.. image:: https://img.shields.io/pypi/pyversions/dependency_injector.svg
   :target: https://pypi.org/project/dependency-injector/
   :alt: Supported Python versions
   
.. image:: https://img.shields.io/pypi/implementation/dependency_injector.svg
   :target: https://pypi.org/project/dependency-injector/
   :alt: Supported Python implementations

.. image:: https://pepy.tech/badge/dependency-injector
   :target: https://pepy.tech/project/dependency-injector
   :alt: Downloads

.. image:: https://pepy.tech/badge/dependency-injector/month
   :target: https://pepy.tech/project/dependency-injector
   :alt: Downloads

.. image:: https://pepy.tech/badge/dependency-injector/week
   :target: https://pepy.tech/project/dependency-injector
   :alt: Downloads

.. image:: https://img.shields.io/pypi/wheel/dependency-injector.svg
   :target: https://pypi.org/project/dependency-injector/
   :alt: Wheel

.. image:: https://img.shields.io/github/actions/workflow/status/ets-labs/python-dependency-injector/tests-and-linters.yml?branch=master
   :target: https://github.com/ets-labs/python-dependency-injector/actions
   :alt: Build Status

.. image:: https://coveralls.io/repos/github/ets-labs/python-dependency-injector/badge.svg?branch=master
   :target: https://coveralls.io/github/ets-labs/python-dependency-injector?branch=master
   :alt: Coverage Status

What is ``Dependency Injector``?
================================

``Dependency Injector`` is a dependency injection framework for Python.

It helps implement the dependency injection principle.

Key features of the ``Dependency Injector``:

- **Providers**. Provides ``Factory``, ``Singleton``, ``Callable``, ``Coroutine``, ``Object``,
  ``List``, ``Dict``, ``Configuration``, ``Resource``, ``Dependency``, and ``Selector`` providers
  that help assemble your objects.
  See `Providers <https://python-dependency-injector.ets-labs.org/providers/index.html>`_.
- **Overriding**. Can override any provider by another provider on the fly. This helps in testing
  and configuring dev/stage environment to replace API clients with stubs etc. See
  `Provider overriding <https://python-dependency-injector.ets-labs.org/providers/overriding.html>`_.
- **Configuration**. Reads configuration from ``yaml``, ``ini``, and ``json`` files, ``pydantic`` settings,
  environment variables, and dictionaries.
  See `Configuration provider <https://python-dependency-injector.ets-labs.org/providers/configuration.html>`_.
- **Resources**. Helps with initialization and configuring of logging, event loop, thread
  or process pool, etc. Can be used for per-function execution scope in tandem with wiring.
  See `Resource provider <https://python-dependency-injector.ets-labs.org/providers/resource.html>`_.
- **Containers**. Provides declarative and dynamic containers.
  See `Containers <https://python-dependency-injector.ets-labs.org/containers/index.html>`_.
- **Wiring**. Injects dependencies into functions and methods. Helps integrate with
  other frameworks: Django, Flask, Aiohttp, Sanic, FastAPI, etc.
  See `Wiring <https://python-dependency-injector.ets-labs.org/wiring.html>`_.
- **Asynchronous**. Supports asynchronous injections.
  See `Asynchronous injections <https://python-dependency-injector.ets-labs.org/providers/async.html>`_.
- **Typing**. Provides typing stubs, ``mypy``-friendly.
  See `Typing and mypy <https://python-dependency-injector.ets-labs.org/providers/typing_mypy.html>`_.
- **Performance**. Fast. Written in ``Cython``.
- **Maturity**. Mature and production-ready. Well-tested, documented, and supported.

.. code-block:: python

   from dependency_injector import containers, providers
   from dependency_injector.wiring import Provide, inject


   class Container(containers.DeclarativeContainer):

       config = providers.Configuration()

       api_client = providers.Singleton(
           ApiClient,
           api_key=config.api_key,
           timeout=config.timeout,
       )

       service = providers.Factory(
           Service,
           api_client=api_client,
       )


   @inject
   def main(service: Service = Provide[Container.service]) -> None:
       ...


   if __name__ == "__main__":
       container = Container()
       container.config.api_key.from_env("API_KEY", required=True)
       container.config.timeout.from_env("TIMEOUT", as_=int, default=5)
       container.wire(modules=[__name__])

       main()  # <-- dependency is injected automatically

       with container.api_client.override(mock.Mock()):
           main()  # <-- overridden dependency is injected automatically

When you call the ``main()`` function the ``Service`` dependency is assembled and injected automatically.

When you do testing, you call the ``container.api_client.override()`` method to replace the real API
client with a mock. When you call ``main()``, the mock is injected.

You can override any provider with another provider.

It also helps you in a re-configuring project for different environments: replace an API client
with a stub on the dev or stage.

With the ``Dependency Injector``, object assembling is consolidated in a container. Dependency injections are defined explicitly.
This makes it easier to understand and change how an application works.

.. figure:: https://raw.githubusercontent.com/wiki/ets-labs/python-dependency-injector/img/di-readme.svg
   :target: https://github.com/ets-labs/python-dependency-injector

Visit the docs to know more about the
`Dependency injection and inversion of control in Python <https://python-dependency-injector.ets-labs.org/introduction/di_in_python.html>`_.

Installation
------------

The package is available on the `PyPi`_::

    pip install dependency-injector

Documentation
-------------

The documentation is available `here <https://python-dependency-injector.ets-labs.org/>`_.

Examples
--------

Choose one of the following:

- `Application example (single container) <https://python-dependency-injector.ets-labs.org/examples/application-single-container.html>`_
- `Application example (multiple containers) <https://python-dependency-injector.ets-labs.org/examples/application-multiple-containers.html>`_
- `Decoupled packages example (multiple containers) <https://python-dependency-injector.ets-labs.org/examples/decoupled-packages.html>`_
- `Boto3 example <https://python-dependency-injector.ets-labs.org/examples/boto3.html>`_
- `Django example <https://python-dependency-injector.ets-labs.org/examples/django.html>`_
- `Flask example <https://python-dependency-injector.ets-labs.org/examples/flask.html>`_
- `Aiohttp example <https://python-dependency-injector.ets-labs.org/examples/aiohttp.html>`_
- `Sanic example <https://python-dependency-injector.ets-labs.org/examples/sanic.html>`_
- `FastAPI example <https://python-dependency-injector.ets-labs.org/examples/fastapi.html>`_
- `FastAPI + Redis example <https://python-dependency-injector.ets-labs.org/examples/fastapi-redis.html>`_
- `FastAPI + SQLAlchemy example <https://python-dependency-injector.ets-labs.org/examples/fastapi-sqlalchemy.html>`_

Tutorials
---------

Choose one of the following:

- `Flask web application tutorial <https://python-dependency-injector.ets-labs.org/tutorials/flask.html>`_
- `Aiohttp REST API tutorial <https://python-dependency-injector.ets-labs.org/tutorials/aiohttp.html>`_
- `Asyncio monitoring daemon tutorial <https://python-dependency-injector.ets-labs.org/tutorials/asyncio-daemon.html>`_
- `CLI application tutorial <https://python-dependency-injector.ets-labs.org/tutorials/cli.html>`_

Concept
-------

The framework stands on the `PEP20 (The Zen of Python) <https://www.python.org/dev/peps/pep-0020/>`_ principle:

.. code-block:: bash

   Explicit is better than implicit

You need to specify how to assemble and where to inject the dependencies explicitly.

The power of the framework is in its simplicity.
``Dependency Injector`` is a simple tool for the powerful concept.

Frequently asked questions
--------------------------

What is 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 😎

How do I start applying 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 specify where to inject it or get it from the container

What price do I pay and what do I get?
 - you need to explicitly specify the dependencies
 - it will be extra work in the beginning
 - it will payoff as project grows

Have a question?
 - Open a `Github Issue <https://github.com/ets-labs/python-dependency-injector/issues>`_

Found a bug?
 - Open a `Github Issue <https://github.com/ets-labs/python-dependency-injector/issues>`_

Want to help?
 - |star| Star the ``Dependency Injector`` on the `Github <https://github.com/ets-labs/python-dependency-injector/>`_
 - |new| Start a new project with the ``Dependency Injector``
 - |tell| Tell your friend about the ``Dependency Injector``

Want to contribute?
 - |fork| Fork the project
 - |pull| Open a pull request to the ``develop`` branch

.. _PyPi: https://pypi.org/project/dependency-injector/

.. |star| unicode:: U+2B50 U+FE0F .. star sign1
.. |new| unicode:: U+1F195 .. new sign
.. |tell| unicode:: U+1F4AC .. tell sign
.. |fork| unicode:: U+1F500 .. fork sign
.. |pull| unicode:: U+2B05 U+FE0F .. pull sign

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/ets-labs/python-dependency-injector",
    "name": "dependency-injector",
    "maintainer": "Roman Mogylatov",
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": "rmogilatov@gmail.com",
    "keywords": "Dependency injection, DI, Inversion of Control, IoC, Factory, Singleton, Design patterns, Flask",
    "author": "Roman Mogylatov",
    "author_email": "rmogilatov@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/dd/12/b56bf869ee465dc46e97636766a85c8f056f87dfbdb753c1cd8a488bb357/dependency_injector-4.43.0.tar.gz",
    "platform": "any",
    "description": ".. figure:: https://raw.githubusercontent.com/wiki/ets-labs/python-dependency-injector/img/logo.svg\n   :target: https://github.com/ets-labs/python-dependency-injector\n\n| \n\n.. image:: https://img.shields.io/pypi/v/dependency_injector.svg\n   :target: https://pypi.org/project/dependency-injector/\n   :alt: Latest Version\n   \n.. image:: https://img.shields.io/pypi/l/dependency_injector.svg\n   :target: https://pypi.org/project/dependency-injector/\n   :alt: License\n\n.. image:: https://img.shields.io/pypi/pyversions/dependency_injector.svg\n   :target: https://pypi.org/project/dependency-injector/\n   :alt: Supported Python versions\n   \n.. image:: https://img.shields.io/pypi/implementation/dependency_injector.svg\n   :target: https://pypi.org/project/dependency-injector/\n   :alt: Supported Python implementations\n\n.. image:: https://pepy.tech/badge/dependency-injector\n   :target: https://pepy.tech/project/dependency-injector\n   :alt: Downloads\n\n.. image:: https://pepy.tech/badge/dependency-injector/month\n   :target: https://pepy.tech/project/dependency-injector\n   :alt: Downloads\n\n.. image:: https://pepy.tech/badge/dependency-injector/week\n   :target: https://pepy.tech/project/dependency-injector\n   :alt: Downloads\n\n.. image:: https://img.shields.io/pypi/wheel/dependency-injector.svg\n   :target: https://pypi.org/project/dependency-injector/\n   :alt: Wheel\n\n.. image:: https://img.shields.io/github/actions/workflow/status/ets-labs/python-dependency-injector/tests-and-linters.yml?branch=master\n   :target: https://github.com/ets-labs/python-dependency-injector/actions\n   :alt: Build Status\n\n.. image:: https://coveralls.io/repos/github/ets-labs/python-dependency-injector/badge.svg?branch=master\n   :target: https://coveralls.io/github/ets-labs/python-dependency-injector?branch=master\n   :alt: Coverage Status\n\nWhat is ``Dependency Injector``?\n================================\n\n``Dependency Injector`` is a dependency injection framework for Python.\n\nIt helps implement the dependency injection principle.\n\nKey features of the ``Dependency Injector``:\n\n- **Providers**. Provides ``Factory``, ``Singleton``, ``Callable``, ``Coroutine``, ``Object``,\n  ``List``, ``Dict``, ``Configuration``, ``Resource``, ``Dependency``, and ``Selector`` providers\n  that help assemble your objects.\n  See `Providers <https://python-dependency-injector.ets-labs.org/providers/index.html>`_.\n- **Overriding**. Can override any provider by another provider on the fly. This helps in testing\n  and configuring dev/stage environment to replace API clients with stubs etc. See\n  `Provider overriding <https://python-dependency-injector.ets-labs.org/providers/overriding.html>`_.\n- **Configuration**. Reads configuration from ``yaml``, ``ini``, and ``json`` files, ``pydantic`` settings,\n  environment variables, and dictionaries.\n  See `Configuration provider <https://python-dependency-injector.ets-labs.org/providers/configuration.html>`_.\n- **Resources**. Helps with initialization and configuring of logging, event loop, thread\n  or process pool, etc. Can be used for per-function execution scope in tandem with wiring.\n  See `Resource provider <https://python-dependency-injector.ets-labs.org/providers/resource.html>`_.\n- **Containers**. Provides declarative and dynamic containers.\n  See `Containers <https://python-dependency-injector.ets-labs.org/containers/index.html>`_.\n- **Wiring**. Injects dependencies into functions and methods. Helps integrate with\n  other frameworks: Django, Flask, Aiohttp, Sanic, FastAPI, etc.\n  See `Wiring <https://python-dependency-injector.ets-labs.org/wiring.html>`_.\n- **Asynchronous**. Supports asynchronous injections.\n  See `Asynchronous injections <https://python-dependency-injector.ets-labs.org/providers/async.html>`_.\n- **Typing**. Provides typing stubs, ``mypy``-friendly.\n  See `Typing and mypy <https://python-dependency-injector.ets-labs.org/providers/typing_mypy.html>`_.\n- **Performance**. Fast. Written in ``Cython``.\n- **Maturity**. Mature and production-ready. Well-tested, documented, and supported.\n\n.. code-block:: python\n\n   from dependency_injector import containers, providers\n   from dependency_injector.wiring import Provide, inject\n\n\n   class Container(containers.DeclarativeContainer):\n\n       config = providers.Configuration()\n\n       api_client = providers.Singleton(\n           ApiClient,\n           api_key=config.api_key,\n           timeout=config.timeout,\n       )\n\n       service = providers.Factory(\n           Service,\n           api_client=api_client,\n       )\n\n\n   @inject\n   def main(service: Service = Provide[Container.service]) -> None:\n       ...\n\n\n   if __name__ == \"__main__\":\n       container = Container()\n       container.config.api_key.from_env(\"API_KEY\", required=True)\n       container.config.timeout.from_env(\"TIMEOUT\", as_=int, default=5)\n       container.wire(modules=[__name__])\n\n       main()  # <-- dependency is injected automatically\n\n       with container.api_client.override(mock.Mock()):\n           main()  # <-- overridden dependency is injected automatically\n\nWhen you call the ``main()`` function the ``Service`` dependency is assembled and injected automatically.\n\nWhen you do testing, you call the ``container.api_client.override()`` method to replace the real API\nclient with a mock. When you call ``main()``, the mock is injected.\n\nYou can override any provider with another provider.\n\nIt also helps you in a re-configuring project for different environments: replace an API client\nwith a stub on the dev or stage.\n\nWith the ``Dependency Injector``, object assembling is consolidated in a container. Dependency injections are defined explicitly.\nThis makes it easier to understand and change how an application works.\n\n.. figure:: https://raw.githubusercontent.com/wiki/ets-labs/python-dependency-injector/img/di-readme.svg\n   :target: https://github.com/ets-labs/python-dependency-injector\n\nVisit the docs to know more about the\n`Dependency injection and inversion of control in Python <https://python-dependency-injector.ets-labs.org/introduction/di_in_python.html>`_.\n\nInstallation\n------------\n\nThe package is available on the `PyPi`_::\n\n    pip install dependency-injector\n\nDocumentation\n-------------\n\nThe documentation is available `here <https://python-dependency-injector.ets-labs.org/>`_.\n\nExamples\n--------\n\nChoose one of the following:\n\n- `Application example (single container) <https://python-dependency-injector.ets-labs.org/examples/application-single-container.html>`_\n- `Application example (multiple containers) <https://python-dependency-injector.ets-labs.org/examples/application-multiple-containers.html>`_\n- `Decoupled packages example (multiple containers) <https://python-dependency-injector.ets-labs.org/examples/decoupled-packages.html>`_\n- `Boto3 example <https://python-dependency-injector.ets-labs.org/examples/boto3.html>`_\n- `Django example <https://python-dependency-injector.ets-labs.org/examples/django.html>`_\n- `Flask example <https://python-dependency-injector.ets-labs.org/examples/flask.html>`_\n- `Aiohttp example <https://python-dependency-injector.ets-labs.org/examples/aiohttp.html>`_\n- `Sanic example <https://python-dependency-injector.ets-labs.org/examples/sanic.html>`_\n- `FastAPI example <https://python-dependency-injector.ets-labs.org/examples/fastapi.html>`_\n- `FastAPI + Redis example <https://python-dependency-injector.ets-labs.org/examples/fastapi-redis.html>`_\n- `FastAPI + SQLAlchemy example <https://python-dependency-injector.ets-labs.org/examples/fastapi-sqlalchemy.html>`_\n\nTutorials\n---------\n\nChoose one of the following:\n\n- `Flask web application tutorial <https://python-dependency-injector.ets-labs.org/tutorials/flask.html>`_\n- `Aiohttp REST API tutorial <https://python-dependency-injector.ets-labs.org/tutorials/aiohttp.html>`_\n- `Asyncio monitoring daemon tutorial <https://python-dependency-injector.ets-labs.org/tutorials/asyncio-daemon.html>`_\n- `CLI application tutorial <https://python-dependency-injector.ets-labs.org/tutorials/cli.html>`_\n\nConcept\n-------\n\nThe framework stands on the `PEP20 (The Zen of Python) <https://www.python.org/dev/peps/pep-0020/>`_ principle:\n\n.. code-block:: bash\n\n   Explicit is better than implicit\n\nYou need to specify how to assemble and where to inject the dependencies explicitly.\n\nThe power of the framework is in its simplicity.\n``Dependency Injector`` is a simple tool for the powerful concept.\n\nFrequently asked questions\n--------------------------\n\nWhat is dependency injection?\n - dependency injection is a principle that decreases coupling and increases cohesion\n\nWhy should I do the dependency injection?\n - your code becomes more flexible, testable, and clear \ud83d\ude0e\n\nHow do I start applying the dependency injection?\n - you start writing the code following the dependency injection principle\n - you register all of your application components and their dependencies in the container\n - when you need a component, you specify where to inject it or get it from the container\n\nWhat price do I pay and what do I get?\n - you need to explicitly specify the dependencies\n - it will be extra work in the beginning\n - it will payoff as project grows\n\nHave a question?\n - Open a `Github Issue <https://github.com/ets-labs/python-dependency-injector/issues>`_\n\nFound a bug?\n - Open a `Github Issue <https://github.com/ets-labs/python-dependency-injector/issues>`_\n\nWant to help?\n - |star| Star the ``Dependency Injector`` on the `Github <https://github.com/ets-labs/python-dependency-injector/>`_\n - |new| Start a new project with the ``Dependency Injector``\n - |tell| Tell your friend about the ``Dependency Injector``\n\nWant to contribute?\n - |fork| Fork the project\n - |pull| Open a pull request to the ``develop`` branch\n\n.. _PyPi: https://pypi.org/project/dependency-injector/\n\n.. |star| unicode:: U+2B50 U+FE0F .. star sign1\n.. |new| unicode:: U+1F195 .. new sign\n.. |tell| unicode:: U+1F4AC .. tell sign\n.. |fork| unicode:: U+1F500 .. fork sign\n.. |pull| unicode:: U+2B05 U+FE0F .. pull sign\n",
    "bugtrack_url": null,
    "license": "BSD New",
    "summary": "Dependency injection framework for Python",
    "version": "4.43.0",
    "project_urls": {
        "Download": "https://pypi.python.org/pypi/dependency_injector",
        "Homepage": "https://github.com/ets-labs/python-dependency-injector"
    },
    "split_keywords": [
        "dependency injection",
        " di",
        " inversion of control",
        " ioc",
        " factory",
        " singleton",
        " design patterns",
        " flask"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "28d36e41dcd242021ee8e74f8cc001334614d1deb8fb7300d9166fe09ec3a07b",
                "md5": "dfd51ff22f502a0dbd15d46638813e85",
                "sha256": "d9df575603a6ae75b393917249c1a4808a33e06ecef903f82b813ba3fc094ac8"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dfd51ff22f502a0dbd15d46638813e85",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 720983,
            "upload_time": "2024-11-04T09:42:02",
            "upload_time_iso_8601": "2024-11-04T09:42:02.041840Z",
            "url": "https://files.pythonhosted.org/packages/28/d3/6e41dcd242021ee8e74f8cc001334614d1deb8fb7300d9166fe09ec3a07b/dependency_injector-4.43.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e091ee92e00f22c86c80a5446f64d0149ad5244a5ee1189ee419de83156d8d7e",
                "md5": "3116680d979e0b3a027274ecbbc30d0b",
                "sha256": "1735072bcabd6562dabfb0ae0ad5328aebcfeff0ac595efc9c190773fa203198"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3116680d979e0b3a027274ecbbc30d0b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4359943,
            "upload_time": "2024-11-04T09:42:04",
            "upload_time_iso_8601": "2024-11-04T09:42:04.183927Z",
            "url": "https://files.pythonhosted.org/packages/e0/91/ee92e00f22c86c80a5446f64d0149ad5244a5ee1189ee419de83156d8d7e/dependency_injector-4.43.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5307b044e420ecdd4c305e74e1b85e53de25e96502488b389eab384ef094b462",
                "md5": "e1cbee0a8cc1d0b40f9a957efdf9ec40",
                "sha256": "1c6d89a4be17a428316dd791eac7e98cb8653824933551fd21486b4677d9e634"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e1cbee0a8cc1d0b40f9a957efdf9ec40",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4405091,
            "upload_time": "2024-11-04T09:42:05",
            "upload_time_iso_8601": "2024-11-04T09:42:05.686030Z",
            "url": "https://files.pythonhosted.org/packages/53/07/b044e420ecdd4c305e74e1b85e53de25e96502488b389eab384ef094b462/dependency_injector-4.43.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b5d16482f653c911e818be1b19d78f452c70258e44225662a3925b61edbbef7b",
                "md5": "d9484b4a8491320e781602ba7d00b496",
                "sha256": "e64bc6f6c96ce2c8b12fd1105420f9fa84c5aa83b2dc52e92b1be2c077819fe0"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d9484b4a8491320e781602ba7d00b496",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4090424,
            "upload_time": "2024-11-04T09:42:07",
            "upload_time_iso_8601": "2024-11-04T09:42:07.244993Z",
            "url": "https://files.pythonhosted.org/packages/b5/d1/6482f653c911e818be1b19d78f452c70258e44225662a3925b61edbbef7b/dependency_injector-4.43.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d8fe9befe9b70cb7706b346f398f4051141e39c6e2bff80758caf20d972fd39",
                "md5": "6510ecb7dec51024cddc53d8aad5ddef",
                "sha256": "c67791ca696a96b8f3e82f9025e6d214e2c2fd8891fa4315a4160b99fe4c4ace"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6510ecb7dec51024cddc53d8aad5ddef",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4068919,
            "upload_time": "2024-11-04T09:42:08",
            "upload_time_iso_8601": "2024-11-04T09:42:08.936560Z",
            "url": "https://files.pythonhosted.org/packages/1d/8f/e9befe9b70cb7706b346f398f4051141e39c6e2bff80758caf20d972fd39/dependency_injector-4.43.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b57d55c4f0f60dad986c7f328d36c5eace166ad297c68daf9a3c4500aad3e4dd",
                "md5": "c1e6f3c0e969bbd63528576c9934ed9e",
                "sha256": "4d6bb5c0d741882685109579ab556fc6e89ece9d26ccf70e35ac4f9b84097207"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "c1e6f3c0e969bbd63528576c9934ed9e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 3993036,
            "upload_time": "2024-11-04T09:42:10",
            "upload_time_iso_8601": "2024-11-04T09:42:10.843045Z",
            "url": "https://files.pythonhosted.org/packages/b5/7d/55c4f0f60dad986c7f328d36c5eace166ad297c68daf9a3c4500aad3e4dd/dependency_injector-4.43.0-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79f35177a08ef5ce0d7a2704d05490a19be14865110b651ea69962be7c5d9d0a",
                "md5": "bf03067334e540bb695dec60f3c218d8",
                "sha256": "d4f9d1466352810e2f536613e52016632d8a172867bfc9d91e4cfccce14180f1"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bf03067334e540bb695dec60f3c218d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4224141,
            "upload_time": "2024-11-04T09:42:12",
            "upload_time_iso_8601": "2024-11-04T09:42:12.844263Z",
            "url": "https://files.pythonhosted.org/packages/79/f3/5177a08ef5ce0d7a2704d05490a19be14865110b651ea69962be7c5d9d0a/dependency_injector-4.43.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "414398b44242942ffeb1784693e85cc94fbec2d93a46c1325b5f5f9dd81760d0",
                "md5": "e9b54cc894a50d28abf28efeebf97059",
                "sha256": "be408c3ff6e55d40362295013ff543e8524778f598dc59b2a40d9620ac2743c1"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "e9b54cc894a50d28abf28efeebf97059",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 539317,
            "upload_time": "2024-11-04T09:42:14",
            "upload_time_iso_8601": "2024-11-04T09:42:14.800617Z",
            "url": "https://files.pythonhosted.org/packages/41/43/98b44242942ffeb1784693e85cc94fbec2d93a46c1325b5f5f9dd81760d0/dependency_injector-4.43.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2de9ea1e8b26c874d82916aa8a7aeeb9644fae45bf7d2fd9b9f8bde7a9378bc8",
                "md5": "5871a1592a75eebd7b18abe1ae120871",
                "sha256": "9fd7f4f44ddff0cd7e40f8923f93ff83f0e8c018a85d36b37a88a835eca7f47f"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5871a1592a75eebd7b18abe1ae120871",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 663497,
            "upload_time": "2024-11-04T09:42:17",
            "upload_time_iso_8601": "2024-11-04T09:42:17.523097Z",
            "url": "https://files.pythonhosted.org/packages/2d/e9/ea1e8b26c874d82916aa8a7aeeb9644fae45bf7d2fd9b9f8bde7a9378bc8/dependency_injector-4.43.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ae99b0eb39c736504e80e054af2659492ff263f8fd7310f479ea0f2ff8426c1",
                "md5": "3cc16971a6f4c35a50cfe9ca2d82c3f8",
                "sha256": "4f3b2c1d3a4c75772854ef7b47d725e6e894b9e3590bf13bf19e3bac4935ed88"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3cc16971a6f4c35a50cfe9ca2d82c3f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 728133,
            "upload_time": "2024-11-04T09:42:19",
            "upload_time_iso_8601": "2024-11-04T09:42:19.010530Z",
            "url": "https://files.pythonhosted.org/packages/0a/e9/9b0eb39c736504e80e054af2659492ff263f8fd7310f479ea0f2ff8426c1/dependency_injector-4.43.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f6048d8de8ab3a42a8acd8c275fcc20b20f8c6dfb0552798853958aec1ef3427",
                "md5": "648b33ac64c0cb3e1a0b06eb599b6369",
                "sha256": "39f46a2fe7ddfea96d18521c5c0f265ca3f177060f0ccb4505f9a638c3429b49"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "648b33ac64c0cb3e1a0b06eb599b6369",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4743905,
            "upload_time": "2024-11-04T09:42:20",
            "upload_time_iso_8601": "2024-11-04T09:42:20.532635Z",
            "url": "https://files.pythonhosted.org/packages/f6/04/8d8de8ab3a42a8acd8c275fcc20b20f8c6dfb0552798853958aec1ef3427/dependency_injector-4.43.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c338c86c7eba8ad881d77f26ec5e3efeacf62bfea6d5dad2ceba76ffa1a040cc",
                "md5": "402b5296fd857c9cd5c24e52180dfeb1",
                "sha256": "64c46dd2dd5543554e3ffe05c935fdb4e8a805a162e56c7c7519acefdd374ff0"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "402b5296fd857c9cd5c24e52180dfeb1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4797527,
            "upload_time": "2024-11-04T09:42:22",
            "upload_time_iso_8601": "2024-11-04T09:42:22.923323Z",
            "url": "https://files.pythonhosted.org/packages/c3/38/c86c7eba8ad881d77f26ec5e3efeacf62bfea6d5dad2ceba76ffa1a040cc/dependency_injector-4.43.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd9d59339f30f14063b7acf981a14e014fbbab02ef53805e2670a44fc50005b4",
                "md5": "2f545511976d0a0ef9f981d186210494",
                "sha256": "3252b32935df3c5f34a4da83d43a38838e0f48d54e47405fcda5e59a2ec4a930"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2f545511976d0a0ef9f981d186210494",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4460953,
            "upload_time": "2024-11-04T09:42:25",
            "upload_time_iso_8601": "2024-11-04T09:42:25.333169Z",
            "url": "https://files.pythonhosted.org/packages/dd/9d/59339f30f14063b7acf981a14e014fbbab02ef53805e2670a44fc50005b4/dependency_injector-4.43.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e891c738da3423756f7fbd2de9d323213ee2d59087a43600a8cb48ee73d93a1",
                "md5": "11fb22f149b14c2570274b4168f559b3",
                "sha256": "200c0286c88c9cb521050eb56e6465f50c289cb145b5308d9d8d79b0b4bac4b6"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "11fb22f149b14c2570274b4168f559b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4428256,
            "upload_time": "2024-11-04T09:42:26",
            "upload_time_iso_8601": "2024-11-04T09:42:26.934667Z",
            "url": "https://files.pythonhosted.org/packages/9e/89/1c738da3423756f7fbd2de9d323213ee2d59087a43600a8cb48ee73d93a1/dependency_injector-4.43.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4596856e0fd7e84323ebf950f2dbd8a0a60a5121e5f61f410a0f00a1021e75fd",
                "md5": "0b7153294ec0a37c2d8c6bbf5fa0349b",
                "sha256": "0791c72a89c4a59c3120b659c3b3e8fbb82e85d4732ffdb8548e395f19425e73"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "0b7153294ec0a37c2d8c6bbf5fa0349b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4368421,
            "upload_time": "2024-11-04T09:42:28",
            "upload_time_iso_8601": "2024-11-04T09:42:28.748000Z",
            "url": "https://files.pythonhosted.org/packages/45/96/856e0fd7e84323ebf950f2dbd8a0a60a5121e5f61f410a0f00a1021e75fd/dependency_injector-4.43.0-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1dfab1eb61542a4292a9034682ef7e9d753b0a13e8abe4d983ec85ca28732f8c",
                "md5": "7a45e8721f409311b520c8ea93137077",
                "sha256": "5fb045e5db6078da309889fc1447cd89b8bd1c810853b436773f895eae477b3b"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7a45e8721f409311b520c8ea93137077",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4595104,
            "upload_time": "2024-11-04T09:42:30",
            "upload_time_iso_8601": "2024-11-04T09:42:30.246706Z",
            "url": "https://files.pythonhosted.org/packages/1d/fa/b1eb61542a4292a9034682ef7e9d753b0a13e8abe4d983ec85ca28732f8c/dependency_injector-4.43.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b92411aaca70f505fb9b2a8462f816dd37f3a3391d4298716907b5875e4fa265",
                "md5": "83f47cbe02773c3dbfe88f20ca3d20e9",
                "sha256": "d24ebaa219edf95a6dc4559053bb8e295dfdee396478488382fdaa078de57d92"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "83f47cbe02773c3dbfe88f20ca3d20e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 540135,
            "upload_time": "2024-11-04T09:42:32",
            "upload_time_iso_8601": "2024-11-04T09:42:32.458162Z",
            "url": "https://files.pythonhosted.org/packages/b9/24/11aaca70f505fb9b2a8462f816dd37f3a3391d4298716907b5875e4fa265/dependency_injector-4.43.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c998fa68fa5768e864974af3403ca6b571db893e9a55847daeda53695901c7e",
                "md5": "35140b80852fe8e9e55eca54f93e22c1",
                "sha256": "230a6ae585a18845bea4001688badd3c2b7f373bcac5c6e659b14e1e1b6e03f2"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "35140b80852fe8e9e55eca54f93e22c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 666663,
            "upload_time": "2024-11-04T09:42:33",
            "upload_time_iso_8601": "2024-11-04T09:42:33.797579Z",
            "url": "https://files.pythonhosted.org/packages/4c/99/8fa68fa5768e864974af3403ca6b571db893e9a55847daeda53695901c7e/dependency_injector-4.43.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86ccdc27f2933ca825bfe7d71d4b7815dae3ab681fedad10bedaaf49f7553442",
                "md5": "e5c40246980933ab728a96a91c5102ea",
                "sha256": "3f8e520e420dbbb376d81c2c668b6e0be166c79877d3b56b97547db17199d636"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e5c40246980933ab728a96a91c5102ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 708511,
            "upload_time": "2024-11-04T09:42:35",
            "upload_time_iso_8601": "2024-11-04T09:42:35.119133Z",
            "url": "https://files.pythonhosted.org/packages/86/cc/dc27f2933ca825bfe7d71d4b7815dae3ab681fedad10bedaaf49f7553442/dependency_injector-4.43.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc56aca540a3ab71ed71fa71f20b14a6ef351cf3ef4715bcaeed9e7ba846ad0a",
                "md5": "88c74e3d90ed016236d04706e559ee03",
                "sha256": "f58beecd944dbdb1ead80ca86945d572d314e48e34cb6e32165ac912e5eed0d5"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "88c74e3d90ed016236d04706e559ee03",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 5418394,
            "upload_time": "2024-11-04T09:42:36",
            "upload_time_iso_8601": "2024-11-04T09:42:36.605223Z",
            "url": "https://files.pythonhosted.org/packages/bc/56/aca540a3ab71ed71fa71f20b14a6ef351cf3ef4715bcaeed9e7ba846ad0a/dependency_injector-4.43.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a2f23f8d18f105359d7db0ec5b6efa3ce4b9c89a4ec123d73271d9a76d74a9dd",
                "md5": "fdb29850400903de478feff085ce0936",
                "sha256": "a447075f567ce894c1d3a5493d7d0cd9542a9d451ca13d8ffce4e0016bdba201"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fdb29850400903de478feff085ce0936",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 5582069,
            "upload_time": "2024-11-04T09:42:38",
            "upload_time_iso_8601": "2024-11-04T09:42:38.902490Z",
            "url": "https://files.pythonhosted.org/packages/a2/f2/3f8d18f105359d7db0ec5b6efa3ce4b9c89a4ec123d73271d9a76d74a9dd/dependency_injector-4.43.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e53cda9f9c968f114e034c3e5283d81678327544825da3c15c262bc66884685",
                "md5": "985357005d1d4fa0e4a3f3f1b177d202",
                "sha256": "36326658415372972711edbd03cc3a68a6866b7b1a5ac7090807601e0fa3847c"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "985357005d1d4fa0e4a3f3f1b177d202",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 5082082,
            "upload_time": "2024-11-04T09:42:41",
            "upload_time_iso_8601": "2024-11-04T09:42:41.909826Z",
            "url": "https://files.pythonhosted.org/packages/3e/53/cda9f9c968f114e034c3e5283d81678327544825da3c15c262bc66884685/dependency_injector-4.43.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4eed092f3dca2ef88369f5909a216d87baad0ec5906b09deafb2a2e6e5619130",
                "md5": "e84de069f084d7769734f753a03c39a8",
                "sha256": "d70a7651fac1e74889617dfe802798cc941a736929cc6b00a62c33529f3291b5"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e84de069f084d7769734f753a03c39a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 5073555,
            "upload_time": "2024-11-04T09:42:43",
            "upload_time_iso_8601": "2024-11-04T09:42:43.647674Z",
            "url": "https://files.pythonhosted.org/packages/4e/ed/092f3dca2ef88369f5909a216d87baad0ec5906b09deafb2a2e6e5619130/dependency_injector-4.43.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c11a421570f84a0ed7309d2801b4687a2fe71c3c80dc39e2cafcd5c329251cee",
                "md5": "1780bfe7988c7d1050a2d696dd19e5fb",
                "sha256": "177b4f3726e36556d04f442b2743e86a56005319e41fcc8410a98951d159f7bf"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1780bfe7988c7d1050a2d696dd19e5fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 5000279,
            "upload_time": "2024-11-04T09:42:47",
            "upload_time_iso_8601": "2024-11-04T09:42:47.067955Z",
            "url": "https://files.pythonhosted.org/packages/c1/1a/421570f84a0ed7309d2801b4687a2fe71c3c80dc39e2cafcd5c329251cee/dependency_injector-4.43.0-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "957d4733381962f2951a4ddf6ad0b644a73bddbfac1496cb27b4249f6c9252c0",
                "md5": "79301e7ad75804a12c3d11fd720e25a8",
                "sha256": "544843c65aa289a1a9ca79e7a8bd4aad41dbac2d56600ca2735047a404ba4a3b"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "79301e7ad75804a12c3d11fd720e25a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 5264973,
            "upload_time": "2024-11-04T09:42:48",
            "upload_time_iso_8601": "2024-11-04T09:42:48.922397Z",
            "url": "https://files.pythonhosted.org/packages/95/7d/4733381962f2951a4ddf6ad0b644a73bddbfac1496cb27b4249f6c9252c0/dependency_injector-4.43.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a137980f5cd0c798b719ed60cb27f16b9e1d4670081029d5eb1caa2f3500298",
                "md5": "6007be1188e26c9add9fca2be620a1de",
                "sha256": "3e559a7f28b4ffae35e28333b0b10e4fce8021214c078e6fa5b85770e821e1eb"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "6007be1188e26c9add9fca2be620a1de",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 534580,
            "upload_time": "2024-11-04T09:42:50",
            "upload_time_iso_8601": "2024-11-04T09:42:50.603235Z",
            "url": "https://files.pythonhosted.org/packages/4a/13/7980f5cd0c798b719ed60cb27f16b9e1d4670081029d5eb1caa2f3500298/dependency_injector-4.43.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0ba4483a22cc712bba52a1e62b4e00463246f144756facf5c7da9259376bc98",
                "md5": "a97ca609878fa4c1678076bbcfc93760",
                "sha256": "7d80534f4d4712494ec61761f0629588a2eb12789aa3ec9f54247ffacf92f266"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a97ca609878fa4c1678076bbcfc93760",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 640871,
            "upload_time": "2024-11-04T09:42:52",
            "upload_time_iso_8601": "2024-11-04T09:42:52.161913Z",
            "url": "https://files.pythonhosted.org/packages/c0/ba/4483a22cc712bba52a1e62b4e00463246f144756facf5c7da9259376bc98/dependency_injector-4.43.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "453d1b58f4eeadaaabdd0a864c55c8c39da83fe3f0a518c62b991496acb4de42",
                "md5": "45a655a717daa4c90bedd2556551c759",
                "sha256": "e7ceb7fabf22138ec4cd3d6943ce9e1ba4ab9514a87511ebe3597382240ec79e"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "45a655a717daa4c90bedd2556551c759",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 702474,
            "upload_time": "2024-11-04T09:42:54",
            "upload_time_iso_8601": "2024-11-04T09:42:54.050795Z",
            "url": "https://files.pythonhosted.org/packages/45/3d/1b58f4eeadaaabdd0a864c55c8c39da83fe3f0a518c62b991496acb4de42/dependency_injector-4.43.0-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b70ad31e1020dee01282257d40f5909a4ff73c806a942060dac9982f5e7d2ada",
                "md5": "825313106785534e339c21bda358e150",
                "sha256": "3481413efdd3b85ccdce73a0ecbd75d47eadcc823b73cd0d5accdc2c2477fc0c"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "825313106785534e339c21bda358e150",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 5438018,
            "upload_time": "2024-11-04T09:42:55",
            "upload_time_iso_8601": "2024-11-04T09:42:55.570214Z",
            "url": "https://files.pythonhosted.org/packages/b7/0a/d31e1020dee01282257d40f5909a4ff73c806a942060dac9982f5e7d2ada/dependency_injector-4.43.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d6cec1b872837d9a3c2349f1dcbb0bd54119c173f711c875fecb2482ccf92b2",
                "md5": "ca2f60420b9effea3540098dbe3909c1",
                "sha256": "38e6f3fb010796ce4691906334156d25e4e365bc6e841b64464518eec0896f2a"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ca2f60420b9effea3540098dbe3909c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 5586703,
            "upload_time": "2024-11-04T09:42:57",
            "upload_time_iso_8601": "2024-11-04T09:42:57.417828Z",
            "url": "https://files.pythonhosted.org/packages/2d/6c/ec1b872837d9a3c2349f1dcbb0bd54119c173f711c875fecb2482ccf92b2/dependency_injector-4.43.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad886e877bb17e5a000441807f04c8984460ef44e159bb990940679d260187d5",
                "md5": "01faaaeb02a382e9419b198576b356fa",
                "sha256": "f312bb9dec59a6216800a7d90417cf74be0b08a19fa8f54d8d2bbb3fdf516927"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "01faaaeb02a382e9419b198576b356fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 5089249,
            "upload_time": "2024-11-04T09:42:59",
            "upload_time_iso_8601": "2024-11-04T09:42:59.662383Z",
            "url": "https://files.pythonhosted.org/packages/ad/88/6e877bb17e5a000441807f04c8984460ef44e159bb990940679d260187d5/dependency_injector-4.43.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "805564f1856e256f965da9bb1f0beb3e2764ba0d1de828eab4586c2becd4a0f8",
                "md5": "2cb16aca6a05c7d6443439d1e82dde15",
                "sha256": "11f3129a16f229c54de87e034fd42d64b8de630a6938d2b83f4c1d9815181ec1"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2cb16aca6a05c7d6443439d1e82dde15",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 5068074,
            "upload_time": "2024-11-04T09:43:01",
            "upload_time_iso_8601": "2024-11-04T09:43:01.667406Z",
            "url": "https://files.pythonhosted.org/packages/80/55/64f1856e256f965da9bb1f0beb3e2764ba0d1de828eab4586c2becd4a0f8/dependency_injector-4.43.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "85ee477e4b0b7726d1ce309c24a4ad0b6d3b41f5343960e688134cd24101df1c",
                "md5": "503e572e3f90ab32bef7fe15f8e555a7",
                "sha256": "6b6dafac3a69d0ad0de96a6f0fb0ea786c1b5cf8bbe88fec1de3455f4b685647"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "503e572e3f90ab32bef7fe15f8e555a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 4994491,
            "upload_time": "2024-11-04T09:43:03",
            "upload_time_iso_8601": "2024-11-04T09:43:03.959303Z",
            "url": "https://files.pythonhosted.org/packages/85/ee/477e4b0b7726d1ce309c24a4ad0b6d3b41f5343960e688134cd24101df1c/dependency_injector-4.43.0-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "090a57c34476987311119990d0dac1c7209c9697a2005f501920da10948fb88a",
                "md5": "b1d7d9e9386ef70b83b39e1c8d8ad55f",
                "sha256": "fc1b0b335b1d9810204aa687f17c2e8ac1bdebdd935f10bd54a6a7d3af952631"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b1d7d9e9386ef70b83b39e1c8d8ad55f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 5284742,
            "upload_time": "2024-11-04T09:43:06",
            "upload_time_iso_8601": "2024-11-04T09:43:06.003023Z",
            "url": "https://files.pythonhosted.org/packages/09/0a/57c34476987311119990d0dac1c7209c9697a2005f501920da10948fb88a/dependency_injector-4.43.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fad4152ce98f4802a945b7ab75d02f97484fc693cf58532538899cf6d984fe4d",
                "md5": "6f3ea03a37504ad41a72bb1605f8256a",
                "sha256": "fba63d0fec1fe78b2fae545f219fce16a5fcaa2acc0a2f9564a3e1c5ec27b356"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "6f3ea03a37504ad41a72bb1605f8256a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 535038,
            "upload_time": "2024-11-04T09:43:07",
            "upload_time_iso_8601": "2024-11-04T09:43:07.743799Z",
            "url": "https://files.pythonhosted.org/packages/fa/d4/152ce98f4802a945b7ab75d02f97484fc693cf58532538899cf6d984fe4d/dependency_injector-4.43.0-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8cc159d612d9a963522ef8f00afff25290144048d1d1381de5a650f12ab887e6",
                "md5": "6fe4c596594da4893564ccda5cd5ef83",
                "sha256": "efd7dd1d39e2998c21c5b02f303792a7c4205ea4fda63f2306a5e5b98e2a251a"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6fe4c596594da4893564ccda5cd5ef83",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 640396,
            "upload_time": "2024-11-04T09:43:09",
            "upload_time_iso_8601": "2024-11-04T09:43:09.475650Z",
            "url": "https://files.pythonhosted.org/packages/8c/c1/59d612d9a963522ef8f00afff25290144048d1d1381de5a650f12ab887e6/dependency_injector-4.43.0-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "761f57475b7947bb42ee942cdd637b08ec7c34ddbde2ae4856592984c25ee187",
                "md5": "3fa66abf87e3c2d423936b01d98e6072",
                "sha256": "2c93b20bfbb392ad83f8a900632d0c92c5e04bb5b5fa3961be062f1fa516401f"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3fa66abf87e3c2d423936b01d98e6072",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 4090841,
            "upload_time": "2024-11-04T09:43:11",
            "upload_time_iso_8601": "2024-11-04T09:43:11.103330Z",
            "url": "https://files.pythonhosted.org/packages/76/1f/57475b7947bb42ee942cdd637b08ec7c34ddbde2ae4856592984c25ee187/dependency_injector-4.43.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0209c655be5908e218f5c60d43bc5e6930422e6fd73223f9ffb9820b1b7d1fd",
                "md5": "9b30f87c0ae554e42bd5f5b633152fbb",
                "sha256": "690e17cb943edb2d907885e8f11faa476d58cf0b1b4b67278fe3203616147997"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9b30f87c0ae554e42bd5f5b633152fbb",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 4132004,
            "upload_time": "2024-11-04T09:43:13",
            "upload_time_iso_8601": "2024-11-04T09:43:13.040515Z",
            "url": "https://files.pythonhosted.org/packages/c0/20/9c655be5908e218f5c60d43bc5e6930422e6fd73223f9ffb9820b1b7d1fd/dependency_injector-4.43.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d288016b84148a24cf00e98495599f2cfb683986aea0a51354e1876a8ba711d",
                "md5": "04e3648fdaa1a923827a1560b67f1148",
                "sha256": "4f6bab4c4334321ccef5bcf94313c34b730c1df91812205181620358318145b6"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "04e3648fdaa1a923827a1560b67f1148",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 3895822,
            "upload_time": "2024-11-04T09:43:14",
            "upload_time_iso_8601": "2024-11-04T09:43:14.791478Z",
            "url": "https://files.pythonhosted.org/packages/1d/28/8016b84148a24cf00e98495599f2cfb683986aea0a51354e1876a8ba711d/dependency_injector-4.43.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c53f682f08cce4f2e6a3e54a887d5127d0b722d68f99ed9b5aa7a6a4e6bf4797",
                "md5": "dbcf776140d813ba37f7a3203f92566b",
                "sha256": "145d20e8f7e1327a27cfdf87b2cc3aac976da759726e7ac104fc76d05f6902e9"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp36-cp36m-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dbcf776140d813ba37f7a3203f92566b",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 3861417,
            "upload_time": "2024-11-04T09:43:16",
            "upload_time_iso_8601": "2024-11-04T09:43:16.937254Z",
            "url": "https://files.pythonhosted.org/packages/c5/3f/682f08cce4f2e6a3e54a887d5127d0b722d68f99ed9b5aa7a6a4e6bf4797/dependency_injector-4.43.0-cp36-cp36m-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4cfd42d123433f689c59d47a206c25998fc12ab3f3f055add74f602a289b2c4c",
                "md5": "6436f4fc1a89d24185717a47b53b1baf",
                "sha256": "d886e846fd6128b70ebdcdb40c04fa7a5b6c9f5e3ee2672686606af63eb55ecb"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp36-cp36m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "6436f4fc1a89d24185717a47b53b1baf",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 3814049,
            "upload_time": "2024-11-04T09:43:18",
            "upload_time_iso_8601": "2024-11-04T09:43:18.785470Z",
            "url": "https://files.pythonhosted.org/packages/4c/fd/42d123433f689c59d47a206c25998fc12ab3f3f055add74f602a289b2c4c/dependency_injector-4.43.0-cp36-cp36m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07963cbcf431ae9e749bf6100973cbcbfc71f32a173d3ce8a49b56899a8cf252",
                "md5": "cfb10dd53f534f02b11ea3bad60e56ae",
                "sha256": "5997d3460ef1b1db12be512a0cf57816c8c7940cbad262f0eddfea0a61ae65f8"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp36-cp36m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cfb10dd53f534f02b11ea3bad60e56ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 3981047,
            "upload_time": "2024-11-04T09:43:20",
            "upload_time_iso_8601": "2024-11-04T09:43:20.596874Z",
            "url": "https://files.pythonhosted.org/packages/07/96/3cbcf431ae9e749bf6100973cbcbfc71f32a173d3ce8a49b56899a8cf252/dependency_injector-4.43.0-cp36-cp36m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d1599db306b77772ca6722b903460d2387b52d84d31f46a6f6fb8c41e68ca9f5",
                "md5": "42e9d978419b869d18aaf6f366b6ca8f",
                "sha256": "9b1991ea8bc60f4cf2593670387d54cc834d470c06a69e9231a179cd1333379b"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "42e9d978419b869d18aaf6f366b6ca8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 520612,
            "upload_time": "2024-11-04T09:43:22",
            "upload_time_iso_8601": "2024-11-04T09:43:22.837306Z",
            "url": "https://files.pythonhosted.org/packages/d1/59/9db306b77772ca6722b903460d2387b52d84d31f46a6f6fb8c41e68ca9f5/dependency_injector-4.43.0-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce3c8148916aae49b44168cfdc81be4df3ffeb0b66e77f5b903d7cb28fc548f8",
                "md5": "f2d07eb80e06cd7767dcaa6aa62d3bb5",
                "sha256": "315e5244d3c9d02c9d1e134e06c1db044cae01a33295ce65718eb230758db4c4"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f2d07eb80e06cd7767dcaa6aa62d3bb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 632662,
            "upload_time": "2024-11-04T09:43:24",
            "upload_time_iso_8601": "2024-11-04T09:43:24.695260Z",
            "url": "https://files.pythonhosted.org/packages/ce/3c/8148916aae49b44168cfdc81be4df3ffeb0b66e77f5b903d7cb28fc548f8/dependency_injector-4.43.0-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "665f15b445128405b2879705da9da995bb2ad71a7c94d69811637bd2f56a45a7",
                "md5": "ac6a03faabf48738336f7e39d5b9943c",
                "sha256": "6431919fc77666c01d1512de914d0b58ee0ef34722c77b58687832063a64df14"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ac6a03faabf48738336f7e39d5b9943c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 4273670,
            "upload_time": "2024-11-04T09:43:26",
            "upload_time_iso_8601": "2024-11-04T09:43:26.627485Z",
            "url": "https://files.pythonhosted.org/packages/66/5f/15b445128405b2879705da9da995bb2ad71a7c94d69811637bd2f56a45a7/dependency_injector-4.43.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3726db6614835dc800bdcc78213b2a50ea464a7457b6e5a37cd302ed404d115",
                "md5": "03409a410582d736375ceb97b7cac39f",
                "sha256": "c4bee3b51a433c848f77c3ce45f341ab85213a442f9e2ad9bc92289ef2a7c8bd"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "03409a410582d736375ceb97b7cac39f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 4316928,
            "upload_time": "2024-11-04T09:43:28",
            "upload_time_iso_8601": "2024-11-04T09:43:28.533551Z",
            "url": "https://files.pythonhosted.org/packages/b3/72/6db6614835dc800bdcc78213b2a50ea464a7457b6e5a37cd302ed404d115/dependency_injector-4.43.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79109f52c070fdb58cb86ecce4f8eb408136c13ebab0bf9a22b231011b86e9e9",
                "md5": "22bdddc245b1be9835199eb332ec1ee4",
                "sha256": "07081a671927cea7b4a9812b69a84f4d554fcd6f6da3fafe8a719c714ecb69a3"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "22bdddc245b1be9835199eb332ec1ee4",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 4026955,
            "upload_time": "2024-11-04T09:43:30",
            "upload_time_iso_8601": "2024-11-04T09:43:30.374141Z",
            "url": "https://files.pythonhosted.org/packages/79/10/9f52c070fdb58cb86ecce4f8eb408136c13ebab0bf9a22b231011b86e9e9/dependency_injector-4.43.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50d21a48db0f41f9284590e0c5e9568f47de4a23f1501bd79ff3cf3a96f12cac",
                "md5": "5bbe1e49518f9d99918740444c386654",
                "sha256": "c4f30c9a505f649ab0cb004cd9f48c3df5b06287c177536417f8d30cfdfa5bc2"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5bbe1e49518f9d99918740444c386654",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 4021207,
            "upload_time": "2024-11-04T09:43:32",
            "upload_time_iso_8601": "2024-11-04T09:43:32.257088Z",
            "url": "https://files.pythonhosted.org/packages/50/d2/1a48db0f41f9284590e0c5e9568f47de4a23f1501bd79ff3cf3a96f12cac/dependency_injector-4.43.0-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3616146c955696e7f4c92fdbc01807d92e047162fc5cde6eed1a06e307404cb8",
                "md5": "71f489b166f9e487f27308455a170e0c",
                "sha256": "31f80970567bdaf040165f679b12780fb7b7a90d6921ac26355f401b1a516e3d"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp37-cp37m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "71f489b166f9e487f27308455a170e0c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 3925338,
            "upload_time": "2024-11-04T09:43:34",
            "upload_time_iso_8601": "2024-11-04T09:43:34.825527Z",
            "url": "https://files.pythonhosted.org/packages/36/16/146c955696e7f4c92fdbc01807d92e047162fc5cde6eed1a06e307404cb8/dependency_injector-4.43.0-cp37-cp37m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eeff79da5f7327f4b9f5433a5c45e88bd44ce7a388cc2f283afba7ae7224d0d5",
                "md5": "4372772764cce5e548694f2a167252ec",
                "sha256": "ffbd8e51ffcf8f8ff8cb6edccee5e77932ec4bdda1ca17b9f6a98d396fde5993"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4372772764cce5e548694f2a167252ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 4153982,
            "upload_time": "2024-11-04T09:43:36",
            "upload_time_iso_8601": "2024-11-04T09:43:36.656798Z",
            "url": "https://files.pythonhosted.org/packages/ee/ff/79da5f7327f4b9f5433a5c45e88bd44ce7a388cc2f283afba7ae7224d0d5/dependency_injector-4.43.0-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a2ab9f696ac4f135ac06d9e8ac0188cb0b36bb8252982e60873f16437f257eb7",
                "md5": "a085a6a2593c98620072b099a1e63324",
                "sha256": "8d8fa0c3fa495dc8605232e730913da4af43757e4be78d4a6cce8d5c1d88d9ac"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "a085a6a2593c98620072b099a1e63324",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 523256,
            "upload_time": "2024-11-04T09:43:38",
            "upload_time_iso_8601": "2024-11-04T09:43:38.384446Z",
            "url": "https://files.pythonhosted.org/packages/a2/ab/9f696ac4f135ac06d9e8ac0188cb0b36bb8252982e60873f16437f257eb7/dependency_injector-4.43.0-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e57975558bfbe79057e4cced2222a60a6ca61916972a2c1c9e812d24bbbf0a09",
                "md5": "e35e5a3545737553d29ceb7141aaaece",
                "sha256": "fd15638b67f41034edd1eaffbb008ac2ff47839ab32b3fa13ca1b33e8a95cb9f"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e35e5a3545737553d29ceb7141aaaece",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 632846,
            "upload_time": "2024-11-04T09:43:39",
            "upload_time_iso_8601": "2024-11-04T09:43:39.991575Z",
            "url": "https://files.pythonhosted.org/packages/e5/79/75558bfbe79057e4cced2222a60a6ca61916972a2c1c9e812d24bbbf0a09/dependency_injector-4.43.0-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b36f5070225439546350c21dab9f5cf2d2b28918ad71b3206f6f15560a893f02",
                "md5": "de6a7de7e90f41df31571aeede78f295",
                "sha256": "9bb96f2762cbfc9b654075075871a7051d37a9cceeabace877a95a03d8142cf0"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "de6a7de7e90f41df31571aeede78f295",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 713921,
            "upload_time": "2024-11-04T09:43:41",
            "upload_time_iso_8601": "2024-11-04T09:43:41.748981Z",
            "url": "https://files.pythonhosted.org/packages/b3/6f/5070225439546350c21dab9f5cf2d2b28918ad71b3206f6f15560a893f02/dependency_injector-4.43.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ec8a3d89dadcb6275087bda1324a6f3affa12af56349fa5a48e996af9fc3a5b",
                "md5": "31e9d7afa91f17173792dd9752e04418",
                "sha256": "0b4a5d41813b56d122f13ae0fdbb1078dd41206c8f5bb7192a1582c982a34ad6"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "31e9d7afa91f17173792dd9752e04418",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4941423,
            "upload_time": "2024-11-04T09:43:43",
            "upload_time_iso_8601": "2024-11-04T09:43:43.778309Z",
            "url": "https://files.pythonhosted.org/packages/9e/c8/a3d89dadcb6275087bda1324a6f3affa12af56349fa5a48e996af9fc3a5b/dependency_injector-4.43.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac04f17a9ea59ce7253af8b363f776f0445f7f85ae263b5914d84cb26464292e",
                "md5": "c00b540ae1d14869aa7ab02f618d21f3",
                "sha256": "bbeb38085c1cb20b21338294e90fa9e7944bf162da63f587734a4d6991c4b1f1"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c00b540ae1d14869aa7ab02f618d21f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4992420,
            "upload_time": "2024-11-04T09:43:45",
            "upload_time_iso_8601": "2024-11-04T09:43:45.867513Z",
            "url": "https://files.pythonhosted.org/packages/ac/04/f17a9ea59ce7253af8b363f776f0445f7f85ae263b5914d84cb26464292e/dependency_injector-4.43.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33c480ebbf95f7072febd8003d22088f0eda0124836fbca45c8b27c11ae03a3b",
                "md5": "5e647891e3e893e34558589ac5e95688",
                "sha256": "fc58fc7e60924e9a93e2b83976173ea095b55f3508175252d50884aa08340185"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5e647891e3e893e34558589ac5e95688",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4634269,
            "upload_time": "2024-11-04T09:43:47",
            "upload_time_iso_8601": "2024-11-04T09:43:47.927461Z",
            "url": "https://files.pythonhosted.org/packages/33/c4/80ebbf95f7072febd8003d22088f0eda0124836fbca45c8b27c11ae03a3b/dependency_injector-4.43.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6496139af496eb0c8c9288d01c319b555f2edeb4d9553fdbe5a379aa1dda68f1",
                "md5": "4717785c15d7628b003930510b7c3aab",
                "sha256": "726131d9f64d26a4915fae413502584e4f739b66eec6b7b23ab43d8bab255b1d"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4717785c15d7628b003930510b7c3aab",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4637203,
            "upload_time": "2024-11-04T09:43:53",
            "upload_time_iso_8601": "2024-11-04T09:43:53.221551Z",
            "url": "https://files.pythonhosted.org/packages/64/96/139af496eb0c8c9288d01c319b555f2edeb4d9553fdbe5a379aa1dda68f1/dependency_injector-4.43.0-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8828f056578d4ad5c4d73be7f632877ae1ef8ce8ee1e2c0de9769ce12b6a0b3b",
                "md5": "8f43f83a4085311a23f7f1a9224b0020",
                "sha256": "fc619ae6b5490beea9f9a53230ddbe084f11609ec1a3d56b0e58966c2ce81815"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "8f43f83a4085311a23f7f1a9224b0020",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4529228,
            "upload_time": "2024-11-04T09:43:55",
            "upload_time_iso_8601": "2024-11-04T09:43:55.325005Z",
            "url": "https://files.pythonhosted.org/packages/88/28/f056578d4ad5c4d73be7f632877ae1ef8ce8ee1e2c0de9769ce12b6a0b3b/dependency_injector-4.43.0-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "efb553da55a81155077ad3006524cdf48bf047aeb18a610147274ef5c8489a72",
                "md5": "bf9896d1c66d4cc959e33c834ee75989",
                "sha256": "28dc5af50ceee52df01b26f6d7bfcc32ff2aaba938c252d110c52f5de9580b0c"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bf9896d1c66d4cc959e33c834ee75989",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4783361,
            "upload_time": "2024-11-04T09:43:57",
            "upload_time_iso_8601": "2024-11-04T09:43:57.288901Z",
            "url": "https://files.pythonhosted.org/packages/ef/b5/53da55a81155077ad3006524cdf48bf047aeb18a610147274ef5c8489a72/dependency_injector-4.43.0-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49501a812e75594bbac5b3cc5e42bf42040ca687080808e8b76e6d424f3782bb",
                "md5": "89b27012e304dcb38f8e3a102fd7d24c",
                "sha256": "c09a977122a6bb57f74f871802dbf3a204cfdae197d423bf93ca4ec3aba871f4"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "89b27012e304dcb38f8e3a102fd7d24c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 544466,
            "upload_time": "2024-11-04T09:43:59",
            "upload_time_iso_8601": "2024-11-04T09:43:59.546285Z",
            "url": "https://files.pythonhosted.org/packages/49/50/1a812e75594bbac5b3cc5e42bf42040ca687080808e8b76e6d424f3782bb/dependency_injector-4.43.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be156cc9f43d740a50c2f387a3b9591461014d6026f73a81522ffd732ce34d95",
                "md5": "2b73399312c97ee152d440d35d9653f8",
                "sha256": "6ea5fc7a6d2b0f780e444643e46a6bdf739213fe4b9d26c286fb78f37e337bb8"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2b73399312c97ee152d440d35d9653f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 671521,
            "upload_time": "2024-11-04T09:44:01",
            "upload_time_iso_8601": "2024-11-04T09:44:01.843649Z",
            "url": "https://files.pythonhosted.org/packages/be/15/6cc9f43d740a50c2f387a3b9591461014d6026f73a81522ffd732ce34d95/dependency_injector-4.43.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "68aef00a2e3e0d4b750e7ed47ca0c51bdd67a7d874f0658da61bbf85168e1596",
                "md5": "fbc85c53d9a256b3798a56f018a9476c",
                "sha256": "7190b45fc53dc6f41633fa6942052e38f7c463ad47305ba95d56c5b4d075e887"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fbc85c53d9a256b3798a56f018a9476c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 722194,
            "upload_time": "2024-11-04T09:44:03",
            "upload_time_iso_8601": "2024-11-04T09:44:03.669985Z",
            "url": "https://files.pythonhosted.org/packages/68/ae/f00a2e3e0d4b750e7ed47ca0c51bdd67a7d874f0658da61bbf85168e1596/dependency_injector-4.43.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1085ffaf2b6589f79f3f92ed02d02ba734751525c4e72f66c53904b713d2a06d",
                "md5": "e782a47bde80091c16e08f3385d8db88",
                "sha256": "440c2f9cf21b83bfd30c9da3ae8f95f7d395800a8feae538bf60db50c2c8974a"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e782a47bde80091c16e08f3385d8db88",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4362367,
            "upload_time": "2024-11-04T09:44:06",
            "upload_time_iso_8601": "2024-11-04T09:44:06.232469Z",
            "url": "https://files.pythonhosted.org/packages/10/85/ffaf2b6589f79f3f92ed02d02ba734751525c4e72f66c53904b713d2a06d/dependency_injector-4.43.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6cbed78c2f80513815ba816ca28b3612a5403dee6d3d357251801c2ce80a734d",
                "md5": "3267932ed27f6c66f7ec11c878f016e9",
                "sha256": "f3b83c0e637f28bb2d8a0555e545ffdd76d9d69fe3e936ab25c6af35e8556e36"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3267932ed27f6c66f7ec11c878f016e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4405231,
            "upload_time": "2024-11-04T09:44:08",
            "upload_time_iso_8601": "2024-11-04T09:44:08.344212Z",
            "url": "https://files.pythonhosted.org/packages/6c/be/d78c2f80513815ba816ca28b3612a5403dee6d3d357251801c2ce80a734d/dependency_injector-4.43.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ecc36604e17000b8ae6d01551791609852b0da492c0e87ede9a442bf088e526",
                "md5": "6a528f0edba144a7ed53979fba12269a",
                "sha256": "d8d6ec07de0479e209899f98ed7babf35fa72878933f153faf37a5abaf4cb125"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6a528f0edba144a7ed53979fba12269a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4094817,
            "upload_time": "2024-11-04T09:44:10",
            "upload_time_iso_8601": "2024-11-04T09:44:10.636519Z",
            "url": "https://files.pythonhosted.org/packages/0e/cc/36604e17000b8ae6d01551791609852b0da492c0e87ede9a442bf088e526/dependency_injector-4.43.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f41bb0e7b9c8b94e9bb714e802a893544eeabc63a17858e990a4d4d8d780cbf9",
                "md5": "941d783b0f3d8316f33e595e37a46d14",
                "sha256": "454c2442e2b105d038b41c153cd9a9a55c6d7bf61bac0db8ace38f8c3f62179e"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "941d783b0f3d8316f33e595e37a46d14",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4070232,
            "upload_time": "2024-11-04T09:44:13",
            "upload_time_iso_8601": "2024-11-04T09:44:13.414639Z",
            "url": "https://files.pythonhosted.org/packages/f4/1b/b0e7b9c8b94e9bb714e802a893544eeabc63a17858e990a4d4d8d780cbf9/dependency_injector-4.43.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e939d1606086f6925ea3267f3487f5a8346d3e00203927da87111961835d7e9f",
                "md5": "c8fa2ae4f0bcde646294b1c748ab94ef",
                "sha256": "52c7ab128131ff67e4b776f6704d47ae90f43686287dce0f5bb702f93f870e7a"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "c8fa2ae4f0bcde646294b1c748ab94ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 3991185,
            "upload_time": "2024-11-04T09:44:15",
            "upload_time_iso_8601": "2024-11-04T09:44:15.458619Z",
            "url": "https://files.pythonhosted.org/packages/e9/39/d1606086f6925ea3267f3487f5a8346d3e00203927da87111961835d7e9f/dependency_injector-4.43.0-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "307d5e3dfbde708c6d5f5ee15adf82267d6881868254d508d96c9229599325eb",
                "md5": "16e901be994f19af530e62aed6075ea9",
                "sha256": "d3bda19adcdfccb3fbb20a7516c5b8330a09714301a71b2c5d7fe4304d6479df"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "16e901be994f19af530e62aed6075ea9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4225552,
            "upload_time": "2024-11-04T09:44:17",
            "upload_time_iso_8601": "2024-11-04T09:44:17.609895Z",
            "url": "https://files.pythonhosted.org/packages/30/7d/5e3dfbde708c6d5f5ee15adf82267d6881868254d508d96c9229599325eb/dependency_injector-4.43.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b70bef825fd38943cf5f40eca40b8cc2df4fafb60d6886debd7b1c9fec8525a",
                "md5": "4a526d7a7556ef4fafc21ef008b84387",
                "sha256": "6ad97e9366fc1451ff79de12ec0294a7c81ccb74b0da7b594b6cf8e8a7b9c0bb"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "4a526d7a7556ef4fafc21ef008b84387",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 540005,
            "upload_time": "2024-11-04T09:44:19",
            "upload_time_iso_8601": "2024-11-04T09:44:19.573718Z",
            "url": "https://files.pythonhosted.org/packages/2b/70/bef825fd38943cf5f40eca40b8cc2df4fafb60d6886debd7b1c9fec8525a/dependency_injector-4.43.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a416427dda438779f499dbad893a38ed22d12dc55058e06e9156c379477f636",
                "md5": "4086f35a92644882efcb79aa83a3f44a",
                "sha256": "4f074aae7be8461ba4faff3be431e4d8dfe596e5fca884642e6e10f1fb585471"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4086f35a92644882efcb79aa83a3f44a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 665990,
            "upload_time": "2024-11-04T09:44:21",
            "upload_time_iso_8601": "2024-11-04T09:44:21.338312Z",
            "url": "https://files.pythonhosted.org/packages/5a/41/6427dda438779f499dbad893a38ed22d12dc55058e06e9156c379477f636/dependency_injector-4.43.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a1133613cc9cb953769a9c6a616cb69d4e3adaf861b3e1afa915eef0eaaaf32",
                "md5": "40fe552deeb9b994c81e39ba0c3265ef",
                "sha256": "0647cda56ff7ab2bbf2bf051800edeb6b5bab4c134df04e59ba231cf1c95ce1e"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "40fe552deeb9b994c81e39ba0c3265ef",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 566866,
            "upload_time": "2024-11-04T09:44:23",
            "upload_time_iso_8601": "2024-11-04T09:44:23.541872Z",
            "url": "https://files.pythonhosted.org/packages/5a/11/33613cc9cb953769a9c6a616cb69d4e3adaf861b3e1afa915eef0eaaaf32/dependency_injector-4.43.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "816b98133b7d7b5a900657c8cee85bcea9dc921026089bd873b3a002b348bd3a",
                "md5": "4df4f24a046f444247bb9dc244715838",
                "sha256": "c8acd5819c86424c674f7d30a2521f7883e35241afe4b3b569d481a36bc0bae3"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4df4f24a046f444247bb9dc244715838",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 683355,
            "upload_time": "2024-11-04T09:44:26",
            "upload_time_iso_8601": "2024-11-04T09:44:26.479408Z",
            "url": "https://files.pythonhosted.org/packages/81/6b/98133b7d7b5a900657c8cee85bcea9dc921026089bd873b3a002b348bd3a/dependency_injector-4.43.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6abec87a63835b861738c598ca2e5086a96951df7f0c19793a54786c06683d48",
                "md5": "da785488c0f0609b92752135c59d69b1",
                "sha256": "fec243d4d5fcdb423c543139d93eeaa76526e35f0faa8555eb03fb45fafab605"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "da785488c0f0609b92752135c59d69b1",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 701535,
            "upload_time": "2024-11-04T09:44:28",
            "upload_time_iso_8601": "2024-11-04T09:44:28.342091Z",
            "url": "https://files.pythonhosted.org/packages/6a/be/c87a63835b861738c598ca2e5086a96951df7f0c19793a54786c06683d48/dependency_injector-4.43.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07ecf6071ea28bbe409d6e3a673df6b9f8acd77e77d309a5d2dfe49ee90b2717",
                "md5": "d1309990415bdc4ac591b6eb3982b760",
                "sha256": "deee43b5aaa62355f3bed9c4a8129676ef68001f48f8244fa1aa6f39d0921ba8"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d1309990415bdc4ac591b6eb3982b760",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 725534,
            "upload_time": "2024-11-04T09:44:30",
            "upload_time_iso_8601": "2024-11-04T09:44:30.321354Z",
            "url": "https://files.pythonhosted.org/packages/07/ec/f6071ea28bbe409d6e3a673df6b9f8acd77e77d309a5d2dfe49ee90b2717/dependency_injector-4.43.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "edc5b4dc1cbdfacfe51f1e8ddf81b6239379914bea9ef2fd2e019ee65f3ba4c0",
                "md5": "c5d48be0e02f8b43ea8ee1f2d02642c2",
                "sha256": "ece96fb2f0f33abdc80afe28f66dbce51372809cf39b58ebe6baea24f3f2e88f"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c5d48be0e02f8b43ea8ee1f2d02642c2",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 580676,
            "upload_time": "2024-11-04T09:44:32",
            "upload_time_iso_8601": "2024-11-04T09:44:32.517696Z",
            "url": "https://files.pythonhosted.org/packages/ed/c5/b4dc1cbdfacfe51f1e8ddf81b6239379914bea9ef2fd2e019ee65f3ba4c0/dependency_injector-4.43.0-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b48f818ab60b04a4716048cfa64858c2478ad3792c313a51b07455d04d9d76ec",
                "md5": "874b4c76c49b9f4d356d19c05db28676",
                "sha256": "e2caef27963266c85f6c12df57eabe06e04c38f349f2f2d423d765104164e189"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "874b4c76c49b9f4d356d19c05db28676",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 706116,
            "upload_time": "2024-11-04T09:44:34",
            "upload_time_iso_8601": "2024-11-04T09:44:34.820390Z",
            "url": "https://files.pythonhosted.org/packages/b4/8f/818ab60b04a4716048cfa64858c2478ad3792c313a51b07455d04d9d76ec/dependency_injector-4.43.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c32fe19ff55c8a83977936091cfbb62306e1689230b6015c57c1d3ab09611681",
                "md5": "692700432b87aa5e41a2d86c4cb249b0",
                "sha256": "67b984a51a9635b57d4018d10d32bdb189c6f70d0a93739e0505b86634fa0bd2"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "692700432b87aa5e41a2d86c4cb249b0",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 718441,
            "upload_time": "2024-11-04T09:44:36",
            "upload_time_iso_8601": "2024-11-04T09:44:36.772010Z",
            "url": "https://files.pythonhosted.org/packages/c3/2f/e19ff55c8a83977936091cfbb62306e1689230b6015c57c1d3ab09611681/dependency_injector-4.43.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b5a02bcef3fb16941f19a559a20d35534565e8fcc5176b578af3d74c1fd34285",
                "md5": "a6af4d3c1d741640ef0050ed2188b633",
                "sha256": "4cf4972a7fa40cb18f8efd0924c8d2999fffafd9817aa81858f2b7869d53c855"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a6af4d3c1d741640ef0050ed2188b633",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 751605,
            "upload_time": "2024-11-04T09:44:39",
            "upload_time_iso_8601": "2024-11-04T09:44:39.110310Z",
            "url": "https://files.pythonhosted.org/packages/b5/a0/2bcef3fb16941f19a559a20d35534565e8fcc5176b578af3d74c1fd34285/dependency_injector-4.43.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a88bf7cba795cab8750a521a4384d18168c06a06ea4c78cd77eccbdf38bc71f7",
                "md5": "cc923caf3bcfbf7524151b82298b1a4c",
                "sha256": "f399de5683a5fa6cd0a4a952e3b5466e56e9516cd0f69cc502b67fb7f8288f8b"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cc923caf3bcfbf7524151b82298b1a4c",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 581671,
            "upload_time": "2024-11-04T09:44:41",
            "upload_time_iso_8601": "2024-11-04T09:44:41.738110Z",
            "url": "https://files.pythonhosted.org/packages/a8/8b/f7cba795cab8750a521a4384d18168c06a06ea4c78cd77eccbdf38bc71f7/dependency_injector-4.43.0-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "999e761367aa81886ed5ed5013a9133f98b9163114db7692b1d8b41a87571994",
                "md5": "a93319941baa3c9e59d0c4be00264516",
                "sha256": "6aa12b0af78d9d8486bbed435d88cde8190074c3c268a6f9c7d41d10d6a232ab"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a93319941baa3c9e59d0c4be00264516",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 575501,
            "upload_time": "2024-11-04T09:44:43",
            "upload_time_iso_8601": "2024-11-04T09:44:43.770082Z",
            "url": "https://files.pythonhosted.org/packages/99/9e/761367aa81886ed5ed5013a9133f98b9163114db7692b1d8b41a87571994/dependency_injector-4.43.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b8d93a088185a2bc46c0062d1ed9bf0a5684ff68399713eb1223fa8783a4750",
                "md5": "fc1ae3f9af8b83656fc6a7699a0f1347",
                "sha256": "3003592fd1b9fbaa585ebec41ffba5d6b6afbf6cb90c144a03a3269ae0100b48"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fc1ae3f9af8b83656fc6a7699a0f1347",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 707059,
            "upload_time": "2024-11-04T09:44:45",
            "upload_time_iso_8601": "2024-11-04T09:44:45.632538Z",
            "url": "https://files.pythonhosted.org/packages/6b/8d/93a088185a2bc46c0062d1ed9bf0a5684ff68399713eb1223fa8783a4750/dependency_injector-4.43.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "99f584f52f1654dff462f2882656714af3dc9c5ef19841720ca580aa47f052d7",
                "md5": "cb369c4da6a5d617b4ac54c8127df333",
                "sha256": "7b30d4a3d544087aca03045af1bf92bad37588831bc361901104394e47b5eeb2"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "cb369c4da6a5d617b4ac54c8127df333",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 719432,
            "upload_time": "2024-11-04T09:44:47",
            "upload_time_iso_8601": "2024-11-04T09:44:47.605557Z",
            "url": "https://files.pythonhosted.org/packages/99/f5/84f52f1654dff462f2882656714af3dc9c5ef19841720ca580aa47f052d7/dependency_injector-4.43.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb2acfd260220daab41e6131405d4076a84b6bf92baa061507ebb88afa87d4af",
                "md5": "16ac7a3e663be99c161e6cc9572cecbc",
                "sha256": "199791d9bb3b187eb05c41a9ca9fc87fc2bcbb78a0fcc3b38b60baf7be1880eb"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "16ac7a3e663be99c161e6cc9572cecbc",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 752830,
            "upload_time": "2024-11-04T09:44:49",
            "upload_time_iso_8601": "2024-11-04T09:44:49.666685Z",
            "url": "https://files.pythonhosted.org/packages/cb/2a/cfd260220daab41e6131405d4076a84b6bf92baa061507ebb88afa87d4af/dependency_injector-4.43.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "808b194bd74fff9d7008ada5fc982b839c587e76444a5c6f21c93bd464d06694",
                "md5": "1d3765f8d6d6578b5c224e91826028dd",
                "sha256": "4fcad4d27a8da1e8f2b8a941bde064b516a80c7bdf75ad51293c3876b7c75cb8"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1d3765f8d6d6578b5c224e91826028dd",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 583057,
            "upload_time": "2024-11-04T09:44:51",
            "upload_time_iso_8601": "2024-11-04T09:44:51.939749Z",
            "url": "https://files.pythonhosted.org/packages/80/8b/194bd74fff9d7008ada5fc982b839c587e76444a5c6f21c93bd464d06694/dependency_injector-4.43.0-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fc035b84701f8aafcdd53355b6b72666bce34861ee2e14772ee18ed0ec25a40b",
                "md5": "565e4025deb2e55b7e80f277203e83d4",
                "sha256": "6e9e02eb20a58f958e2ac1a9c3fc7506c4365409b56729f20fd481db94b44173"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "565e4025deb2e55b7e80f277203e83d4",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 565216,
            "upload_time": "2024-11-04T09:44:53",
            "upload_time_iso_8601": "2024-11-04T09:44:53.916434Z",
            "url": "https://files.pythonhosted.org/packages/fc/03/5b84701f8aafcdd53355b6b72666bce34861ee2e14772ee18ed0ec25a40b/dependency_injector-4.43.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37bc706f9a0fe628a2e0a3ae416c747889e8af088ae1f25495c3d7c77c30691d",
                "md5": "44b3d7b962bf064c33f7d9ad1ca6b65b",
                "sha256": "10a9c66bd93aca63de45403cbcca4061b07e75f702ca203bbd121938d3b3ed0e"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "44b3d7b962bf064c33f7d9ad1ca6b65b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 683214,
            "upload_time": "2024-11-04T09:44:55",
            "upload_time_iso_8601": "2024-11-04T09:44:55.968048Z",
            "url": "https://files.pythonhosted.org/packages/37/bc/706f9a0fe628a2e0a3ae416c747889e8af088ae1f25495c3d7c77c30691d/dependency_injector-4.43.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e49be926827f6ec8d893cd5fce0d6715d51d3b5f2497494cac5bedbc5aa5b9c0",
                "md5": "6500e65b105822e32b8cf0a2365422e3",
                "sha256": "b44e524c7add4b897aac62c7b964307b0604dc8dabeea35bb06c28d65ddb6bc6"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6500e65b105822e32b8cf0a2365422e3",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 700663,
            "upload_time": "2024-11-04T09:44:58",
            "upload_time_iso_8601": "2024-11-04T09:44:58.014804Z",
            "url": "https://files.pythonhosted.org/packages/e4/9b/e926827f6ec8d893cd5fce0d6715d51d3b5f2497494cac5bedbc5aa5b9c0/dependency_injector-4.43.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e4812bdbfc73d42f2ff9f7656a613ba18e190a0d83f84f243ae7a753267dfa5",
                "md5": "5e5436fbe518662d917a9eac78b8923d",
                "sha256": "ab7664f88262a3ee2aae07c84fcff0a08f0020141e2b3a8e3065b8dbf5fb13e6"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5e5436fbe518662d917a9eac78b8923d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 724969,
            "upload_time": "2024-11-04T09:45:00",
            "upload_time_iso_8601": "2024-11-04T09:45:00.176679Z",
            "url": "https://files.pythonhosted.org/packages/2e/48/12bdbfc73d42f2ff9f7656a613ba18e190a0d83f84f243ae7a753267dfa5/dependency_injector-4.43.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "caf43623b910a0dab761d1ebe8e4c89ac77893f122666ad47d0718ed36c14072",
                "md5": "40b2d6efefaae12b2891fd6c90f0fa14",
                "sha256": "862f24685eeada264632e333ec5f49affdb1b4aac6a52785b6b7b88e72d0be5d"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "40b2d6efefaae12b2891fd6c90f0fa14",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 580249,
            "upload_time": "2024-11-04T09:45:03",
            "upload_time_iso_8601": "2024-11-04T09:45:03.472725Z",
            "url": "https://files.pythonhosted.org/packages/ca/f4/3623b910a0dab761d1ebe8e4c89ac77893f122666ad47d0718ed36c14072/dependency_injector-4.43.0-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd12b56bf869ee465dc46e97636766a85c8f056f87dfbdb753c1cd8a488bb357",
                "md5": "f1a0b944934ea2b6a2e596c19cbddd2e",
                "sha256": "d0774234cc4d5c860fa971912182131b45f41ebabd9e3fc2ce80f4b1d05de057"
            },
            "downloads": -1,
            "filename": "dependency_injector-4.43.0.tar.gz",
            "has_sig": false,
            "md5_digest": "f1a0b944934ea2b6a2e596c19cbddd2e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 1113152,
            "upload_time": "2024-11-04T09:45:06",
            "upload_time_iso_8601": "2024-11-04T09:45:06.086217Z",
            "url": "https://files.pythonhosted.org/packages/dd/12/b56bf869ee465dc46e97636766a85c8f056f87dfbdb753c1cd8a488bb357/dependency_injector-4.43.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-04 09:45:06",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ets-labs",
    "github_project": "python-dependency-injector",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "requirements": [],
    "tox": true,
    "lcname": "dependency-injector"
}
        
Elapsed time: 0.82018s