Skip to main content

Check for the presence of prerequisite commands and returns their paths.

Project description

DevelopersToolbox logo
Github Build Status License Created
Release Released Commits since release

Overview

When you write a script or tool which uses subprocess to execute shell commands, you want to know if the commands are installed or not. This is particularly important if you are running multiple commands which rely on each other.

You can of course catch the exceptions through using check=True but if you need to know they all exist before you start your execution run then this doesn't help you as it only handled the failure it currently has.

This little package assist with that problem by taking a list of commands that must be installed and available and verifies that list at the start to ensure all of them are available.

Installation

pip install wolfsoftware.prereqs

Usage

import sys

from wolfsoftware.prereqs import check_prerequisite, PrerequisiteCheckError

prerequisites: list[str] = ["python", "git"]

try:
    command_paths: dict = check_prerequisite(prerequisites)
except PrerequisiteCheckError as err:
    print("Prerequisite check failed:")
    for error in err.errors:
        print(error)
    sys.exit(0)

print(command_paths['python'])

Once the checks have completed, you now have a dict of commands and their associated paths which you can then utilise to ensure you are executing your subprocesses with the full path.


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

wolfsoftware_prereqs-0.1.1.tar.gz (7.9 kB view hashes)

Uploaded Source

Built Distribution

wolfsoftware.prereqs-0.1.1-py3-none-any.whl (6.5 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