Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/MTecknology/script-helpers
A simple set of helper functions to aid the development of scripts.
https://github.com/MTecknology/script-helpers
bash libraries python shell
Last synced: 5 days ago
JSON representation
A simple set of helper functions to aid the development of scripts.
- Host: GitHub
- URL: https://github.com/MTecknology/script-helpers
- Owner: MTecknology
- License: gpl-3.0
- Created: 2020-11-18T03:40:37.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-05-22T08:13:19.000Z (over 2 years ago)
- Last Synced: 2024-02-13T21:59:29.868Z (9 months ago)
- Topics: bash, libraries, python, shell
- Language: Shell
- Homepage: https://script-helpers.readthedocs.io/
- Size: 133 KB
- Stars: 8
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
[![GitHub Issues](https://img.shields.io/github/issues/MTecknology/script-helpers.svg)](https://github.com/MTecknology/script_helpers/issues)
[![License](https://img.shields.io/badge/license-GPLv3+-blue.svg)](https://opensource.org/licenses/gpl-3.0+.html)
[![Documentation Status](https://readthedocs.org/projects/script-helpers/badge/?version=latest)](https://script-helpers.readthedocs.io/en/latest/?badge=latest)
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/e34c5732d27440c4a09d02c41be17f9f)](https://www.codacy.com/gh/MTecknology/script-helpers/dashboard?utm_source=github.com&utm_medium=referral&utm_content=MTecknology/script-helpers&utm_campaign=Badge_Grade)
![Shell Tests](https://github.com/MTecknology/script-helpers/workflows/Shell%20Tests/badge.svg)
![Python3 Tests](https://github.com/MTecknology/script-helpers/actions/workflows/py3_tests.yml/badge.svg)**[Explore the docs »](https://script-helpers.rtfd.io/)**
Script Helpers
==============A simple set of helper functions to aid the development of scripts.
Shell Example:
```sh
. path/to/helpers/shell
is_true "$var" || die 'oops'
```Python Example:
```python3
import py3helpers
py3helpers.collapse_integers([1,2,3,4])
```