Metadata-Version: 2.1
Name: iutils
Version: 0.0.34
Summary: A collection of my utility modules
Home-page: https://github.com/bqbn/iutils
Author: bqbn
Author-email: bqbn@openken.com
Project-URL: Bug Reports, https://github.com/bqbn/iutils/issues
Project-URL: Source, https://github.com/bqbn/iutils
Keywords: devops utility utils
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Topic :: Software Development :: Build Tools
Classifier: Programming Language :: Python :: 3
Requires-Python: <4,>=3
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: awscli (~=1.22)
Requires-Dist: boto3 (~=1.21)
Requires-Dist: click (~=8.0)
Requires-Dist: jmespath (~=1.0)
Requires-Dist: requests (~=2.27)
Provides-Extra: dev
Requires-Dist: build (~=0.7.0) ; extra == 'dev'
Requires-Dist: pipenv-setup (~=3.2) ; extra == 'dev'
Requires-Dist: twine (~=3.2) ; extra == 'dev'
Requires-Dist: wheel (~=0.34) ; extra == 'dev'
Provides-Extra: test

This package includes various utility modules I find useful.

# Install

```
pip install iutils
```

# pcolrm

```
Usage: pcolrm [OPTIONS] COL_NUMS

  Remove columns from a file.

  This utility mimics what colrm does. One of the differences is that columns
  are separated by delimiters instead of each single character representing
  one column.

  Like colrm, this utility reads its input from the standard input and writes
  its output to the standard output.

  COL_NUMS is a list of comma separated column numbers that are to be removed.
  You can use '-' to specify a range. For example, 1,2,4 or 1-2,4 etc.

  Column numbering starts with one, not zero.

Options:
  -d, --delimiter TEXT  Delimiter.  [default:  ]
  --help                Show this message and exit.
```

