Metadata-Version: 2.1
Name: riptr
Version: 1.0.1
Summary: Replacement for tr/sed replace in python
Home-page: https://github.com/noahp/riptr
Author: Noah Pendleton
Author-email: 2538614+noahp@users.noreply.github.com
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown

[![PyPI version](https://img.shields.io/pypi/v/riptr.svg?longCache=true&style=for-the-badge)](https://pypi.org/project/riptr/)

# riptr
Text substitution similar to `tr` or `sed s//` but without the frustration. Uses plain old python regex style.

# Installing
Now deployed to pypi, install with:
```bash
pip install riptr
```
This adds the `riptr` and `rtr` cli tools to you python environment path.

# Usage
```bash
echo "some example text 1234" > test.file
riptr -m "^(.*?)([\d]{2})" -s "\g<1>56" test.file
some example text 5634

```

