Delegate methods and properties to child objects in a terse, explicit style
Project description
superdelegate
Delegate methods and properties to child objects in a terse, explicit style
Consider the motivating example of a sorted list. In order to encapsulate the list and prevent clients from breaking the sorted order, we want to only allow certain methods through to the underlying list:
import bisect
class SortedList:
def __init__(self, *args, **kwargs):
self._lst = list(*args, **kwargs)
def insert(self, elem):
bisect.insort(self._lst, elem)
def __contains__(self, elem):
ix = bisect.bisect(self._lst, elem)
return ix != len(self._lst) and self._lst[ix] == elem
def __getitem__(self, key):
return self._lst.__getitem__(key)
def __reversed__(self):
return self._lst.__reversed__()
def __len__(self):
return self._lst.__len__()
def __iter__(self):
return self._lst.__iter__()
Much of that code is pretty repetitive. Can we do better? Yes! with superdelegate!
import bisect
from superdelegate import SuperDelegate, delegate_to
class SortedList(SuperDelegate):
def __init__(self, *args, **kwargs):
self._lst = list(*args, **kwargs)
def insert(self, elem):
bisect.insort(self._lst, elem)
def __contains__(self, elem):
ix = bisect.bisect(self._lst, elem)
return ix != len(self._lst) and self._lst[ix] == elem
__getitem__ = __reversed__ = __len__ = __iter__ = delegate_to('_lst')
FAQs
Does it work for properties? It does work for properties!
class OnlyGrowsOlder:
def __init__(self):
self._age
@property
def age(self):
return self._age
@age.setter
def age(self, new_age):
if new_age > self._age:
self._age = new_age
else:
raise ValueError('Time is like a boy band. It only flows in one direction')
class OlderWrapper(SuperDelegate):
def __init__(self):
self._ager
age = delegate_to('_ager')
Can you have multiple delgatees? You can!
class SandwichMaker:
def choose_cheese(self):
return 'swiss'
class NavyEngineer:
def lift_periscope(self):
return 'done'
class SubmarineTechnician(SuperDelegate):
def __init__(self):
self.sm = SandwichMaker()
self.ne = NavyEngineer()
choose_cheese = delegate_to('sm')
lift_periscope = delegate_to('ne')
Inspiration
This library was inspired by Ruby ActiveSupport's Module#delegate extension.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file superdelegate-0.0.2.tar.gz.
File metadata
- Download URL: superdelegate-0.0.2.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32d80b8b08913195e6961552edfe2c93f7accaa3d8aaab1e95989866f2360dce
|
|
| MD5 |
96c5f65e4d83cfc1ee3dcea37cb0c7c3
|
|
| BLAKE2b-256 |
2f54ea09047fe57f2b9c0f1cec1aac063b93ab5086e03858745cccc328fd93e0
|
File details
Details for the file superdelegate-0.0.2-py3-none-any.whl.
File metadata
- Download URL: superdelegate-0.0.2-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4f146d936b78699670b3ee74196928500877fb0714aed7d6146471d01662d5d
|
|
| MD5 |
c771b73d69bd10fdc9966266f9d46dea
|
|
| BLAKE2b-256 |
5e72a4917ffde969ee47f7bdddb4090a1698b0dd74bc44b975d00533d567fdd2
|