Skip to main content

Multithreading & processing worker that executes functions and prints the result

Project description

BotBoy

Multithreading & processing worker that executes functions and prints the result

Installation

pip install botboy

Usage

Create a new BotBoy object with a pre-defined function object and a name

from botboy import BotBoy

bot = BotBoy('Adder', lambda x, y: x + y)

Display the information

bot.display_information()

Adder

<function at 0x10e6e8040>

Execute function object on separate thread

bot.execute(1, 2)

Adder is executing task: <function at 0x10e6e8040>

Retrieved result from Adder: 3

Execute function object on separate process

bot.set_processing() # Can be turned back to thread by running same method

bot.execute(3, 4)

Adder is executing task: <function at 0x10e6e8040>

Retrieved result from Adder: 7

Test

Runs the tests on the core module

make test

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

botboy-1.tar.gz (3.4 kB view hashes)

Uploaded Source

Built Distribution

botboy-1-py2.py3-none-any.whl (2.7 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