Skip to content

Commit a5439d5

Browse files
author
rootware
committed
made the cli shorter to prk
1 parent af194ea commit a5439d5

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<br />
66
<i>CLI tool to redact and unredact sensitive information like ip addresses, emails and domains.</i>
77
<br/>
8-
<code>pip install --upgrade pyredactkit && pyredactor</code>
8+
<code>pip install --upgrade pyredactkit && prk</code>
99
</p>
1010

1111
<p align="center">

poetry.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "pyredactkit"
7-
version = "0.3.2"
7+
version = "0.3.3"
88
description = "Python cli tool to redact sensitive data"
99
authors = ["brootware <[email protected]>"]
1010
license = "GPL-3.0-or-later"
@@ -51,7 +51,7 @@ pytest-cov = "^3.0.0"
5151

5252
[tool.poetry.scripts]
5353
pyredactkit = "pyredactkit.pyredactkit:main"
54-
pyredactor = "pyredactkit.pyredactkit:main"
54+
prk = "pyredactkit.pyredactkit:main"
5555

5656
[tool.pytest.ini_options]
5757
minversion = "2.0"

pyredactkit/pyredactkit.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@
3737
help_menu = """
3838
PyRedactKit - Redact and Un-redact any sensitive data from your text files!
3939
Example usage:\n
40-
pyredactkit 'This is my ip: 127.0.0.1. My email is [email protected]. My favorite secret link is github.com'\n
41-
pyredactkit --file [file/filestoredact]\n
42-
pyredactkit --file redacted_file --unredact .hashshadow.json\n
43-
pyredactkit --file file --customfile custom.json\n
40+
prk 'This is my ip: 127.0.0.1. My email is [email protected]. My favorite secret link is github.com'\n
41+
prk --file [file/filestoredact]\n
42+
prk --file redacted_file --unredact .hashshadow.json\n
43+
prk --file file --customfile custom.json\n
4444
"""
4545

4646

0 commit comments

Comments
 (0)