diff options
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/local.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/local.py b/examples/local.py new file mode 100644 index 0000000..d41dfa3 --- /dev/null +++ b/examples/local.py @@ -0,0 +1,9 @@ +from gdpr_obfuscator import Obfuscator + +obfuscator = Obfuscator() + +def main(): + return obfuscator.local(location="../mock_data.csv", pii_fields=["name", "email"]) + +if __name__ == "__main__": + main()
\ No newline at end of file |
