diff options
| author | Alex Schofield <git@ajschof.me> | 2025-02-21 02:42:42 +0000 |
|---|---|---|
| committer | Alex Schofield <git@ajschof.me> | 2025-02-21 02:42:42 +0000 |
| commit | f9524e96c9ac42c0c6f5e0a569a0a7fbfbf151b4 (patch) | |
| tree | ad5a93daa9440da2951fbad0f1423c3581b62c2a | |
| parent | 40f60c816173157c39d864087f2a6b8cc6fc8d97 (diff) | |
| download | gdpr-obfuscator-f9524e96c9ac42c0c6f5e0a569a0a7fbfbf151b4.tar.gz gdpr-obfuscator-f9524e96c9ac42c0c6f5e0a569a0a7fbfbf151b4.zip | |
add stub for ExportTool class
| -rw-r--r-- | gdpr_obfuscator/__init__.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gdpr_obfuscator/__init__.py b/gdpr_obfuscator/__init__.py index 6de7145..9e2d837 100644 --- a/gdpr_obfuscator/__init__.py +++ b/gdpr_obfuscator/__init__.py @@ -1,7 +1,7 @@ from .read import DataReader from .obfuscate import obfuscate_data from .utils import Utilities -from typing import List, Dict +from typing import List class Obfuscator: @@ -16,3 +16,8 @@ class Obfuscator: def process_local(self, path: str, pii_fields: List[str]) -> bytes: obfuscated_data = obfuscate_data(self.reader.read_local(path), pii_fields) return self.utils.create_byte_stream(obfuscated_data) + + +class ExportTool: + def __init__(self): + pass |
