Skip to main content

Generic backend pool

Project description

https://travis-ci.org/luizalabs/ramos.svg?branch=master https://codecov.io/gh/luizalabs/ramos/branch/master/graph/badge.svg

Generic backend pool

Setup

pip install ramos

Development setup

make install

Usage

import ramos

ramos.configure(pools={
    'backend_type': [
        'path.to.backend_a',
        'path.to.backend_b',
    ]
})

Integrations

Ramos can uses Django or Simple Settings to get backends configurations if set settings.POOL_OF_RAMOS:

POOL_OF_RAMOS = {
    'backend_type': [
        'path.to.backend_a',
        'path.to.backend_b',
    ]
}

Backend Implementations

from ramos.mixins import ThreadSafeCreateMixin


class BackendA(ThreadSafeCreateMixin):
    id = 'backend_a'
    def say(self):
        return 'A'


class BackendB(ThreadSafeCreateMixin):
    id = 'backend_b'
    def say(self):
        return 'B'

Backend Pool

from ramos.pool import BackendPool


class BackendTypePool(BackendPool)
    backend_type = 'backend_type'


backends = BackendTypePool.all()

for backend in backends:
    print(backend.say())


# backend_a = BackendTypePool.get('backend_a')
# backend_b = BackendTypePool.get('backend_b')

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

ramos-1.4.0.tar.gz (3.5 kB view hashes)

Uploaded Source

Built Distribution

ramos-1.4.0-py2.py3-none-any.whl (5.2 kB view hashes)

Uploaded Python 2 Python 3

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