Skip to main content

Mpcurses is an abstraction of the Python curses and multiprocessing libraries providing function execution and runtime visualization capabilities

Project description

mpcurses

GitHub Workflow Status Code Coverage Code Grade vulnerabilities PyPI version python

Mpcurses is an abstraction of the Python curses and multiprocessing libraries providing function execution and runtime visualization capabilities at scale. It contains a simple API to enable any Python function to be executed across one or more background processes and includes built-in directives to visualize the functions execution on a terminal screen.

The mpcurses API allows for seamless integration since it does not require the target function to include additional context about curses or multiprocessing. The target function does need to implement logging since log messages are the primary means of inter-process communication between the background processes executing the function and the main process updating the curses screen on the terminal.

The main features are:

  • Execute a function across one or more concurrent processes
  • Queue execution to ensure a predefined number of processes are running
  • Visualize function execution on the terminal screen using curses
  • Define the screen layout using a Python dict
  • Leverage built-in directives to dynamically update the screen when events occur by analyzing log messages
    • Keep numeric counts
    • Update text values and colors
    • Maintain visual indicators
    • Display progress bars
    • Display tables
    • Display lists

Refer to documentation here: https://soda480.github.io/mpcurses/

Mpcurses is a subclass of mpmq, see mpmq for more information.

Installation

pip install mpcurses

Examples

To run the samples below you need to install the namegenerator module pip install namegenerator

A simple example using mpcurses:

from mpcurses import MPcurses
import namegenerator, time, logging
logger = logging.getLogger(__name__)

def do_something(*args):
    for _ in range(0, 600):
        logger.debug(f'processing item "{namegenerator.gen()}"')
        time.sleep(.01)

MPcurses(
    function=do_something,
    screen_layout={
        'display_item': {
            'position': (1, 1),
            'text': 'Processing:',
            'text_color': 0,
            'color': 14,
            'clear': True,
            'regex': r'^processing item "(?P<value>.*)"$'
        }
    }).execute()

Executing the code above results in the following: example

To scale execution of the function across multiple processes; we set the process_data parameter to a list whose total number of elements represent the number of processes to execute, and each list element represent the data to be passed to each respective process:

from mpcurses import MPcurses
import namegenerator, time, logging
logger = logging.getLogger(__name__)

def do_something(*args):
    group = args[0].get('group', 0)
    for _ in range(0, 600):
        logger.debug(f'processing item "[{group}]: {namegenerator.gen()}"')
        time.sleep(.01)

MPcurses(
    function=do_something,
    process_data=[{'group': 1}, {'group': 2}, {'group': 3}],
    screen_layout={
        'display_item': {
            'position': (1, 1),
            'color': 14,
            'clear': True,
            'regex': r'^processing item "(?P<value>.*)"$',
            'table': True
        }
    }).execute()

Executing the code above results in the following: example

Serveral examples are included to help introduce the mpcurses library. Note the functions contained in all the examples are Python functions that have no context about multiprocessing or curses, they simply perform a function on a given dataset. Mpcurses takes care of setting up the multiprocessing, configuring the curses screen and maintaining the thread-safe queues that are required for inter-process communication.

example1

Execute a function that processes a list of random items. The screen maintains indicators showing the number of items that have been processed. Two lists are maintained displaying the items that had errors and warnings. example1

example2

Execute a function that processes a list of random items. Execution is scaled across three processes where each is responsible for processing items for a particular group. The screen maintains indicators displaying the items that had errors and warnings for each group. example2

example3

Execute a function that calculates prime numbers for a set range of integers. Execution is scaled across 10 different processes where each process computes the primes on a different set of numbers. For example, the first process computes primes for the set 1-10K, second process 10K-20K, third process 20K-30K, etc. The screen keeps track of the number of prime numbers encountered for each set and maintains a progress bar for each process. example3

Running the examples

Build the Docker image and run the Docker container using the instructions described in the Development section. Run the example scripts within the container:

python examples/example#.py

Projects using mpcurses

Development

Clone the repository and ensure the latest version of Docker is installed on your development server.

Build the Docker image:

docker image build \
-t \
mpcurses:latest .

Run the Docker container:

docker container run \
--rm \
-it \
-v $PWD:/code \
mpcurses:latest \
/bin/bash

Execute the build:

pyb -X

NOTE: the commands above assume your working behind a http proxy, if that is not the case then the proxy arguments can be discared from both commands.

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

mpcurses-0.4.1.tar.gz (13.9 kB view details)

Uploaded Source

Built Distribution

mpcurses-0.4.1-py3-none-any.whl (12.2 kB view details)

Uploaded Python 3

File details

Details for the file mpcurses-0.4.1.tar.gz.

File metadata

  • Download URL: mpcurses-0.4.1.tar.gz
  • Upload date:
  • Size: 13.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for mpcurses-0.4.1.tar.gz
Algorithm Hash digest
SHA256 8d8fba32bc538692cd1064a3a233ddb33fbd97e6610c6f25b6dfe9ab7e722446
MD5 16bbdd3fa299e8a2971b22af52f7a5db
BLAKE2b-256 36b46efac55cfcd0489e11277a91a75971ec9804e14b98c440278c1e44a5e4a3

See more details on using hashes here.

Provenance

File details

Details for the file mpcurses-0.4.1-py3-none-any.whl.

File metadata

  • Download URL: mpcurses-0.4.1-py3-none-any.whl
  • Upload date:
  • Size: 12.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for mpcurses-0.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 d515938699ab8872b841fb6a26675b7b258205a42a8dba3d6e1d30e6059b39bd
MD5 66f8ed66dacf942d43b58c5acc21ccf9
BLAKE2b-256 9412a961e2add10501ad63eb5f2b11aa06f3ac27110890b38802b0f43de2a39d

See more details on using hashes here.

Provenance

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