├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── card.jpg ├── example.png ├── example_debug.png └── help.png ├── hashonymize.py └── setup.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShutdownRepo/hashonymize/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # PyCharm workspace 2 | .idea/ 3 | 4 | # Python install files 5 | build/ 6 | dist/ 7 | *.egg-info/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShutdownRepo/hashonymize/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShutdownRepo/hashonymize/HEAD/README.md -------------------------------------------------------------------------------- /assets/card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShutdownRepo/hashonymize/HEAD/assets/card.jpg -------------------------------------------------------------------------------- /assets/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShutdownRepo/hashonymize/HEAD/assets/example.png -------------------------------------------------------------------------------- /assets/example_debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShutdownRepo/hashonymize/HEAD/assets/example_debug.png -------------------------------------------------------------------------------- /assets/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShutdownRepo/hashonymize/HEAD/assets/help.png -------------------------------------------------------------------------------- /hashonymize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShutdownRepo/hashonymize/HEAD/hashonymize.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShutdownRepo/hashonymize/HEAD/setup.py --------------------------------------------------------------------------------