Skip to main content

Threading and Multiprocessing for every project.

Project description

lox

https://img.shields.io/pypi/v/lox.svg https://travis-ci.com/BrianPugh/lox.svg?branch=master Documentation Status Updates

Threading made easy.

Installation

pip install lox

Features

  • Powerful, intuitive multithreading in just 2 additional lines of code

  • Advanced thread synchronization, communication, and resource management tools

Usage

Easy Multithreading

>>> import lox
>>> @lox.pool(3) # Maximum of 3 concurrent threads
>>> def multiply(a,b):
>>>    return a*b
>>> multiply(3,4) # Function works as normal
12
>>> xs = [1,2,3,4,5,]
>>> ys = [6,7,7,8,9,]
>>> [multiply.scatter(x,y) for x,y in zip(xs,ys)]
>>> multiply.gather()
[ 6, 14, 21, 32, 45 ]

History

0.2.1 (2019-05-25)

  • Fix IndexSemaphore context manager

0.2.0 (2019-05-24)

  • Added QLock

  • Documentation syntax fixes

0.1.1 (2019-05-24)

  • CICD test

0.1.0 (2019-05-24)

  • First release on PyPI.

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

lox-0.2.1.tar.gz (12.2 kB view hashes)

Uploaded Source

Built Distribution

lox-0.2.1-py2.py3-none-any.whl (3.5 kB view hashes)

Uploaded Python 2 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