Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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])
```