Skip to main content

Delegable is a simple Python alternative to Ruby on Rails' delegate module.

Project description

Delegable

Summary

Delegable is a simple Python alternative to Ruby on Rails' delegate module, which makes delegation easy. It enables any class to delegate its functions to an instance of another one. Here's an example:

@delegable
class Que:
    def __init__(self):
        self.q = []
        self.delegate('append', 'pop', to='q')

que = Que()
que.append(1)
que.pop()
# => 1

Features:

  • Inheritance Safe
  • No dependent libraries
  • Available for py35, py36, py37, py38

Install

pip install delegable

Getting Started

Basic Usage

Place @delegable.delegator on the top of a class in which you want to enable delegation.

import delegable

@delegable.delegator
class Que:
    def __init__(self, name='default_queue'):
        self._name = name
        self.q = []
        self.delegate('append', 'pop', to='q')

    @property
    def all(self):
        return self.q


que = Que('')
que.append(1)
que.append(2)
que.pop(0)
assert que.all == [2]

Inheritance Safe

It works well with classes inheriting its parent which uses @delegable.delegtor without any problem.

class Que2(Que):
    def __init__(self, name='default_queue'):
        super().__init__(name)

que1 = Que('')
que2 = Que2('')
que1.delegate('append', 'pop', to='q')
que2.delegate('append', 'pop', to='q')
que1.append(1)
que2.append(2)
assert que1.all == [1]
assert que2.all == [2]

delegates

The decorator offers a property, delegates to define delegates all at once. Note it overwrites whole delegates but doesn't merge delegates.

@delegable.delegator
class Que:
    def __init__(self, name='default_queue'):
        self._name = name
        self.q = []
        self.delegate('append', 'pop', to='q')
        self.delegates = {'s': 'join'}

assert que.join('ab') == 'a,b'

que.append(1)
# => AttributeError("'Que' object has no attribute 'append'")

How to Test

This project uses tox to test it against different versions of Python, with underlying pyenv.

Set up

You have to have pyenv installed to run tox in this project.

Test

To test with all versions:

tox

To test with a certain version:

tox -e py37

or

pyenv shell 3.7.7
pytest

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

delegable-0.0.5-py3-none-any.whl (4.9 kB view hashes)

Uploaded 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