Skip to main content

aiomisc-dependency - dependency injection in aiomisc

Project description

Dependency injection plugin for aiomisc built with aiodine library and support pytest fixture style dependency injection.

Installation

Installing from pypi:

pip3 install aiomisc aiomisc-dependency

How to use

Register dependency

To register dependency you can use aiomisc_dependency.dependency decorator.

from aiomisc_dependency import dependency

@dependency
async def pg_engine():
    pg_engine = await create_engine(dsn=pg_url)
    yield pg_engine
    pg_engine.close()
    await pg_engine.wait_closed()

As you can see dependency can be async generator function. Code after yield will be executed on teardown to correctly close the dependency.

Coroutine functions, non async functions and generators are also supported.

Use dependency

To use dependency you need to add it’s name to __dependencies__ property for every service which depends on it. Specified dependencies will be injected as service’s attributes on entrypoint startup.

from contextlib import suppress

import aiohttp
from aiomisc import Service
from aiomisc.service.aiohttp import AIOHTTPService

class HealthcheckService(Service):

    __dependencies__ = ('pg_engine',)

    async def create_application(self):
        app = aiohttp.web.Application()
        app.add_routes([aiohttp.web.get('/ping', self.healthcheck_handler)])
        return app

    async def healthcheck_handler(self, request):
        pg_status = False
        with suppress(Exception):
           async with self.pg_engine.acquire() as conn:
               await conn.execute('SELECT 1')
               pg_status = True

        return aiohttp.web.json_response(
            {'db': pg_status},
            status=(200 if pg_status else 500),
        )


class RESTService(AIOHTTPService):

    __dependencies__ = ('pg_engine',)

    ...

If any required dependency won’t be found on entrypoint startup, RuntimeError will be raised.

You can set a dependency manually by adding it to kw arguments on service creation. This could be convenient in tests.

from unittest import Mock

def test_rest_service():
    pg_engine_mock = Mock()
    service = RESTService(pg_engine=pg_engine_mock)
    ...

Dependencies for dependencies

You can use dependencies as arguments for other dependencies. Arguments will injected automatically.

@dependency
async def pg_connection(pg_engine):
    async with pg_engine.acquire() as conn:
        yield conn

loop built-in dependency

Built-in loop dependency can be used if your dependency requires event loop instance.

import aioredis

@dependency
async def redis_pool(loop):
    pool = aioredis.create_pool(redis_url, loop=loop)
    yield pool
    pool.close()
    await pool.wait_closed()

LICENSE

MIT

Project details


Download files

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

Source Distribution

aiomisc_dependency-0.1.0.tar.gz (4.0 kB view details)

Uploaded Source

Built Distribution

aiomisc_dependency-0.1.0-py3-none-any.whl (5.2 kB view details)

Uploaded Python 3

File details

Details for the file aiomisc_dependency-0.1.0.tar.gz.

File metadata

  • Download URL: aiomisc_dependency-0.1.0.tar.gz
  • Upload date:
  • Size: 4.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for aiomisc_dependency-0.1.0.tar.gz
Algorithm Hash digest
SHA256 9cbd7d904109b2f0a2978e76e6528540964b2d15aed963cd876bd0a89f73c9b9
MD5 62b9bdfee493dcae1f28cb7ac53152ac
BLAKE2b-256 07044b0a1f305752923145a9e12b206a77934ab54c1e78f0d2d50d0092a3b639

See more details on using hashes here.

File details

Details for the file aiomisc_dependency-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: aiomisc_dependency-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 5.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for aiomisc_dependency-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e50c5c17154d4b294fc07deedcadab45747ee22beab9be0a7ce0036770d6958f
MD5 02b268e3a6ca10d4c431b0106b4a76b7
BLAKE2b-256 adbcdef6ed24658ee1216086beafaf1d8afed836fffae9f88d1ae24c8e96a824

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page