mulpyplexer
A module that multiplexes interactions with lists of python objects.
What it is and what it does
Mulpyplexer wraps a list of Python objects in a multiplexer that broadcasts method calls and attribute access across all items, collecting results into a new multiplexed object. When you call a method on the multiplexer, it invokes that method on each wrapped object and returns a new multiplexer containing the results; similarly, accessing an attribute returns a multiplexer over the attribute values from each item.
The package has no runtime dependencies and is purely a syntactic convenience layer. It is designed for scenarios where you want to apply the same operation uniformly across a collection of objects without explicit looping, though the same effect can typically be achieved with list comprehensions or map().
Use it for:
- Apply the same method to multiple object instances and collect results without writing a loop.
- Chain operations across a collection: call methods on results, then access attributes, all in one expression.
- Prototype or explore object behavior when working interactively with lists of similar objects.
- Simplify code that repeatedly applies identical transformations to each item in a heterogeneous collection.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Mulpyplexer applies method calls and attribute access to lists of Python objects in parallel, returning a new multiplexed object containing the results from each item in the list.
No. The package is abandoned (last release 2021-01-11, 2041 days old), has high install friction (source-only distribution), and offers no advantage over built-in Python idioms like list comprehensions or map(). Unless you are maintaining legacy code that already depends on it, use standard Python iteration patterns instead.
Install
mulpyplexer on PyPI
pip
pip install mulpyplexeruv
uv add mulpyplexerpoetry
poetry add mulpyplexerInstalling mulpyplexer
Before you install
High install friction: the package is abandoned (last release 2021-01-11, no commits tracked), has no runtime dependencies to ease setup, and ships as a source tarball with no wheel distribution.
License in practice
BSD permissive license allows commercial and private use with minimal restrictions, typical of mature open-source libraries.
Quickstart
import mulpyplexer
class A:
def add(self, j):
return A(self.value + j)
one = mulpyplexer.MP([A(), A(), A()])
two = one.add(5)
result = two.mp_items
Package is abandoned and may not build or run on Python versions released after 2021; no wheel distribution available.
Verify before relying
- Whether the package works with current Python versions (python_support unspecified, requires_python empty)
- Whether the source tarball builds without compilation errors on modern systems
Package facts
| License | BSD (permissive) |
| Python support | not specified |
| Install friction | high — source build required |
| Runtime dependencies | none |
| Maintenance | abandoned — 2,041 days since the last release |
| First released | |
| Downloads | 171,775/month — #10,355 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: mulpyplexer-0.09.tar.gz
Tags
More Software Development packages
Provides backported and experimental type hints…
permissive · top 100 on PyPI
numpyNumPy provides an N-dimensional array object…
permissive · top 100 on PyPI
fastapiFastAPI is a Python web framework for building…
permissive · top 100 on PyPI
annotated-docProvides a way to document function parameters,…
permissive · top 100 on PyPI
typerTyper builds command-line applications from…
permissive · top 1,000 on PyPI
distlibDistlib provides low-level packaging utilities…
permissive · top 1,000 on PyPI
py4jPy4J enables Python programs to dynamically…
permissive · top 1,000 on PyPI
cobbleCobble is a Python library for creating data…
permissive · top 5,000 on PyPI
magicattrProvides nested attribute access and…
permissive · top 5,000 on PyPI
subprocess-multiteeMultiplexes subprocess stdout/stderr to…
unclear · top 15,000 on PyPI
slicerProvides a uniform slicing interface for…
permissive · top 5,000 on PyPI
zope.proxyzope.proxy provides transparent wrapper objects…
unclear · top 15,000 on PyPI
cron-converterParses cron schedule strings into structured…
permissive · top 5,000 on PyPI
swifterSwifter applies functions to DataFrames and…
unclear · top 5,000 on PyPI
deepmergeMerges nested Python data structures (dicts,…
permissive · top 5,000 on PyPI
pathablePathable provides path-like objects for…
permissive · top 1,000 on PyPI