Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 1.2 KB

README.md

File metadata and controls

25 lines (20 loc) · 1.2 KB

GitHub Issues License Documentation Status Codacy Badge Shell Tests Python3 Tests

Explore the docs »

Script Helpers

A simple set of helper functions to aid the development of scripts.

Shell Example:

. path/to/helpers/shell
is_true "$var" || die 'oops'

Python Example:

import py3helpers
py3helpers.collapse_integers([1,2,3,4])