Skip to main content

Replacement for pexpect

Project description

Fast Start

Install the package:

pip install --user processcontroller

Import the main class:

from processcontroller import ProcessController

Create a new instance:

process_controller = ProcessController()

The ProcessController() instance

Methods

  • The run() method:

    Run a program (command and options detailed below)

process_controller.run(command, options)
  • The send() method:

    Send a string or bytearray to the subprogram stdin, you will usually use it inside a callback or in detached state

process_controller.send(str|bytes)
  • The close() method:

    Close the stdin of the subprogram so it reaches EOF, you will usually use it inside a callback or in detached state

process_controller.close()
  • The kill() method:

    Sends signal SIGKILL to the subprogram, the return_value should be (pid, 9) after that. (this should not be so used to be honest)

process_controller.kill()
  • The wait() method:

    Used to synchronise the caller with the detached instance of ProcessController Waits for the queue buffer to be handled and emptied. If your process reads stdin such as bash or things like cat, be sure to call close() or you’ll end up with an infinite loop here

process_controller.wait()

Attributes

  • return_value

    is the return value of the subprogram it will be - (0, 0) if running - (pid, status) if terminated

Function Parameters

ProcessController.run()

command

The command parameter must be an array like:

['/usr/bin/python', 'file.py']

options

Currently, it supports the following keys, ‘when’, ‘input’, ‘echo’ and ‘detached’

  • when:

This key is used to listen to events occuring on the STDOUT of the subprogram The value have to be an array of events The “event” is in fact a match for some pattern:

'when': [
   ['^SomeRegex.*\n', callback],
   ['^An other one.\n', cb]
   ['^prompt>\$ $', cb]
]

Be careful about the ending line, the match will be called each time a char is added to the buffer, this helps matching prompts maybe I’ll add an option to avoid such an expansive operation in the future Every time a ‘n’ char is found, the line is treated once and reseted to ‘’

The callbacks will be called with two arguments: the ProcessController instance, and the matched string:

def callback(processcontroller, string)

You can automates user inputs in your callback when required by the subprogram using the send function of your ProcessController instance:

def cb(p, s):
   c.send('some input')
  • input:

This key is used to pre-fill the stdin of a subprogram before running it:

pc = ProcessController()
pc.run(['/bin/bash'], {
   'input': 'echo test && exit'
})

You can set an array of input:

'input': ['one', 'two', 'three']  # sends "one\ntwo\nthree\n"

You can input str or bytes, conversion is handled for you

  • echo:

This key is a boolean that defaults to False. When set to True, the ProcessController will print the input sent to your subprogram where it has been asked

  • detached:

This key is used to make the program run in its own thread, making the call to run non-blocking:

process_controller.wait()

pc = ProcessController()
pc.run(['/bin/bash'], {
   'detached': True
})
pc.send('echo test')  # will print test to stdout
pc.close()  # close stdin of subprogram, so that bash will read EOF
  • private:

This key is used to prevent the writing of your subprogram STDOUT on your main STDOUT, One can still print what he wants with the help of a when event listener, indeed, the outputed lines will remain in the parameters of the callbacks functions

  • readmode:

Use this key to read the sub STDOUT char by char, or line by line (default) It’s value can be ‘line’ or ‘char’ Useful to read prompts or anything that does not end with an EOL

Don’t forget that you have to create a new instance a ProcessController everytime you want to execute a new subprogram

Please feel free to read the tests and code for a better understanding

ENJOY

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

processcontroller-0.1.0.tar.gz (4.7 kB view details)

Uploaded Source

Built Distribution

processcontroller-0.1.0-py3-none-any.whl (5.3 kB view details)

Uploaded Python 3

File details

Details for the file processcontroller-0.1.0.tar.gz.

File metadata

  • Download URL: processcontroller-0.1.0.tar.gz
  • Upload date:
  • Size: 4.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for processcontroller-0.1.0.tar.gz
Algorithm Hash digest
SHA256 6cec4ad8b415cdc106aa6ca1aa1bd0b2b31106aecbe66ec535e411d74db3dbfc
MD5 50eefea53b7864c8c48e9f0cb02c7438
BLAKE2b-256 bcc3262e1a2f0a288656c6f75552c22e631378d3610f6a1d03efb3e3b2fdfdf7

See more details on using hashes here.

File details

Details for the file processcontroller-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: processcontroller-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 5.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1

File hashes

Hashes for processcontroller-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 995c8017ea22de0ad96a0b065c28dfca46e3c2950e561078fd54a7f61b41202f
MD5 de19e6d086c1773b64d45fbb4eb4f15c
BLAKE2b-256 cf78457536c6edec585226b5358aeb1621d06f4f8a266afb00bd1f52c76dab84

See more details on using hashes here.

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