A set of utilities for running and logging shell commands in a user-friendly manner.
Project description
klingon_utils
Utility Repository
This repository contains a set of utilities that are frequently used. These utilities are designed to automate and simplify various tasks, making them more efficient and less error-prone.
Contents
Currently, the repository includes the following utilities:
treetool (tt)
: A tool for saving and generating project file and directory structures. See treetool/README.md for more details.gitignore
: A generic .gitignore file. See gitignore/README.md for more details.amnesia
: A utility for rewriting commit history in a Git repository. See amnesia/README.md for more details.Cxcel
: Render CSV files in both terminal and web interfaces. Real-time updates to the displayed CSV content by monitoring file changes. See Cxcel/README.md for more details.klingon tool (kt)
: Installer/updater for klingon tools CLI. See kt/README.md for more details.
klingon_tools
A Python library that contains the following utilities:
logtools
: A utility for running and logging shell commands and their exit codes in a user-friendly manner.
Usage
Each utility has its own specific usage instructions, which can be found in the comments of the utility's script. In general, utilities can be run from the command line and accept various command-line arguments.
Example Usage of logtools
The logtools
utility provides decorators for methods and CLI commands that log output in a clean and consistent manner with simple error handling.
Method State Example
from klingon_tools import LogTools
@LogTools.method_state(name="Install numpy")
def install_numpy():
return "PIP_ROOT_USER_ACTION=ignore pip install -q numpy"
install_numpy()
Expected output:
Running Install numpy... OK
Command State Example
from klingon_tools import LogTools
commands = [
("PIP_ROOT_USER_ACTION=ignore pip install -q numpy", "Install numpy"),
("echo 'Hello, World!'", "Print Hello World")
]
LogTools.command_state(commands)
Expected output:
Running Install numpy... OK
Contributing
Contributions are welcome. Please open an issue to discuss your idea before making a change.
License
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
Built Distribution
Hashes for klingon_tools-0.0.21-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cd9538fe54dcaa5a42cbba47ca8394953859e575af76d44e4e469e7817e1de3e |
|
MD5 | 5d55baa3b1395e12f2ac1b4b97fcb3a6 |
|
BLAKE2b-256 | bdf27bae69b6355d9272b17a17e5a65db0c84a13abdf9afb8386cb592be503b5 |