Dynamic method broadcasting to groups of objects
Project description
Groupcast
Groupcast is a lightweight Python utility for broadcasting method calls and aggregating attribute access across a group of objects — as if they were a single entity.
It supports both serial and parallel execution modes, along with list-like behavior (iteration, indexing, appending, popping).
Features
- ✅ Broadcast method calls across objects (
group.method(args)) - ✅ Access non-callable attributes as aggregated lists (
group.attr) - ✅ Switch between serial and parallel execution modes
- ✅ Direct control via
apply()for methods andget()for attributes - ✅ List-like behavior:
len(),[], iteration,append(),pop()
Installation
This library is instable via pip using the command pip install groupcast, if you would rather not use pip, you could also just drop this file into your project and import it that way.
Simple Usage
class Example:
def __init__(self, x):
self.x = x
def double(self):
return(self.x * 2)
inputs = [[1], [2], [3]]
group = groupcast.Group(Example, inputs=inputs)
print(group.x)
# should result in [1, 2, 3]
print(group.double())
# should result in [2, 4, 6]
print(group[0].x) #< to only print the value for the first object
# should result in 1
Constructor
Group(inputs=None, class_=None, objects=None, parallel=False, maxWorkers=None)
You can initialize a Group in two ways:
-
Using
class_:- Creates a list of objects by creating the
class_constructor.
- Creates a list of objects by creating the
-
Using
objectsdirectly:- Pass in a list of pre-created objects.
If neither objects nor class_ is provided, a TypeError is raised.
Execution Modes
Use .changeExecutionMode(parallel=True, maxWorkers=...) to toggle between:
-
Serial mode (default): runs method calls one after another.
-
Parallel mode: runs method calls concurrently using threads.
To change modes, use the following:
group.changeExecutionMode(parallel=True) # now runs in parallel
You can also set it to false to return back to serial mode
Attribute & Method Access
-
group.attrreturns a list of attribute values (e.g.,group.x will return [x1,x2,x3,x4] for every object) -
group.method(*args)broadcasts the call across all objects and will return the results -
For explicit control:
-
group.get("attrName") -
group.apply("methodName", *args)
-
Appending & Removing
To append, you can use the append and pass the same varibles as you pass to init
EX:
group.append(input=4, class_=Example) will add a new Example object initialized with the value 4
You can append using either class_, or a ready object.
Example Use Cases
-
Managing multiple similar sensor or device objects.
-
Group operations on widgets, models, or entities in simulations/games.
-
Synchronous control of multiple instances for testing or broadcasting commands.
License
MIT License (see LICENSE file for more information)
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
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 groupcast-1.1.2.tar.gz.
File metadata
- Download URL: groupcast-1.1.2.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0cbc76a79c0776da9893649004073c6cb19930a225d81282cdf03f2ee46a146a
|
|
| MD5 |
c34bb772d746ae1775fd69657858fb98
|
|
| BLAKE2b-256 |
186679295b0fa5b0dc26851d988b8c822b35d3c629e902ba4b5eb39d33a4032d
|
File details
Details for the file groupcast-1.1.2-py3-none-any.whl.
File metadata
- Download URL: groupcast-1.1.2-py3-none-any.whl
- Upload date:
- Size: 4.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b413d2acc95aa003baf8da3af14e753528fa61267f8561f74b49062375cdc46
|
|
| MD5 |
cfe56d64ecfb06369c961cc0fffa4834
|
|
| BLAKE2b-256 |
4afb97c4c036a668f379428f7453e7394fc4bfa1563d7927df4162ae3413b409
|