Skip to main content

Gather results from multiple threads seamlessly.

Project description

Thread Wrapper Class

version license pyversions
donate powered made

Gather results from multiple threads seamlessly.

Hierarchy

threadwrapper
|---- ThreadWrapper()
|   |---- add()
|   '---- wait()
'---- args()

Example

python

from threadwrapper import *
def a(b, c=None):
    return f"{b}, {c}"
tw = ThreadWrapper(threading.Semaphore(1))
result = {}
for i in range(10):
    # args() is used to collect positional and keyword arguments as is
    tw.add(job=a, args=args(i**2, c=i**3), result=result, key=i)
tw.wait()
print(result)
# {0: '0, 0', 1: '1, 1', 2: '4, 8', 3: '9, 27', 4: '16, 64', 5: '25, 125', 6: '36, 216', 7: '49, 343', 8: '64, 512', 9: '81, 729'}

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

threadwrapper-0.4.1.tar.gz (3.0 kB view hashes)

Uploaded Source

Built Distribution

threadwrapper-0.4.1-py3-none-any.whl (15.3 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