POSIX exit status codes
Project description
exitstatus provides expressive, portable definitions for the standard POSIX exit codes. While Python does provide some Unix-specific exit status codes in the os module, they are not portable to all platforms and are missing the generic failure case.
Installation
You can install, upgrade, and uninstall exitstatus with these commands:
$ pip install exitstatus
$ pip install --upgrade exitstatus
$ pip uninstall exitstatus
On Python 3.4+, the standard library enum is used, on older versions enum34 is installed as a dependency.
Usage
Exit status codes are defined in a simple to use IntEnum.
import sys
from exitstatus import ExitStatus
sys.exit(ExitStatus.success)
Releases
1.2.0 - 2016-12-31
Support Python 3.6.
1.1.0 - 2016-10-11
Add docstrings and simplify checking for enum34 dependency need.
1.0.0 - 2016-06-10
Initial release.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
exitstatus-1.2.0.tar.gz
(2.3 kB
view hashes)