A module that multiplexes interactions with lists of python objects.
Project description
Mulpyplexer is a piece of code that can multiplex interactions with lists of python objects. It’s easier to show you:
import mulpyplexer
- class A:
- def __init__(self, i):
self.i = i
- def add(self, j):
return A(self.i + (j.i if isinstance(j, A) else j))
- def sub(self, j):
return A(self.i - (j.i if isinstance(j, A) else j))
- def __repr__(self):
return “<A %d>” % self.i
- def str(self):
return str(self.i)
- def __eq__(self, o):
return self.i == o.i
one = mulpyplexer.MP([ A(10), A(20), A(30) ])
two = one.add(5) assert two.mp_items == [ A(15), A(25), A(35) ]
three = two.sub(10) assert three.mp_items == [ A(5), A(15), A(25) ]
four = three.add(one) assert four.mp_items == [ A(15), A(35), A(55) ]
five = four.str() assert five.mp_items == [ “15”, “35”, “55” ]
six = four.i assert six.mp_items == [ 15, 35, 55 ]
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
File details
Details for the file mulpyplexer-0.06.tar.gz
.
File metadata
- Download URL: mulpyplexer-0.06.tar.gz
- Upload date:
- Size: 1.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dbdd97e074ab5aacfd48269d382d21570c8ef32da8e96df32fbdffd656804b66 |
|
MD5 | d741bf06f3e92517956175fe14de36d2 |
|
BLAKE2b-256 | e3857e524c31d1e72ad3b6da34b128d46a342d5d25c4e94f62ae4fb12c81c0fe |