Metadata-Version: 2.1
Name: pyredacter
Version: 0.0.6
Summary: Redact sensitive strings
Author: Scott Walsh
Author-email: scott@invisiblethreat.ca
Maintainer: Scott Walsh
Maintainer-email: scott@invisiblethreat.ca
Project-URL: documentation, https://github.com/invisiblethreat/pyredacter/blob/main/README.md
Project-URL: repository, https://github.com/invisiblethreat/pyredacter
Project-URL: homepage, https://github.com/invisiblethreat/pyredacter
Keywords: redact,password,passwords
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# redact

`redact` is used to automagically redact strings

### Usage
```
>>> from redact import redact_string
>>> s = "this is a string"
>>> redact_string(s)
'th************ng'
```
