goneri / anonymizor

Library to clean up Ansible tasks from any Personally Identifiable Information (PII)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Anonymizor

Documentation Status Updates

Library to clean up Ansible tasks from any Personally Identifiable Information (PII)

Features

$ python3
Python 3.9.16 (main, Dec  7 2022, 00:00:00)
[GCC 12.2.1 20221121 (Red Hat 12.2.1-4)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from anonymizor import anonymizor
>>> example = ["- name: foo bar\n  email: my-email@address.com\n"]
>>> anonymizor.anonymize(example)
['- email: lucas27@example.com\n  name: foo bar\n']

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.

About

Library to clean up Ansible tasks from any Personally Identifiable Information (PII)

License:Other


Languages

Language:Python 100.0%