mirror of
https://github.com/PlatypusPus/MushroomEmpire.git
synced 2026-02-07 22:18:59 +00:00
13 lines
176 B
Python
13 lines
176 B
Python
"""
|
|
Data Cleaning Module
|
|
Automated PII detection and GDPR-compliant anonymization
|
|
"""
|
|
|
|
from .cleaner import DataCleaner
|
|
|
|
__version__ = '1.0.0'
|
|
|
|
__all__ = [
|
|
'DataCleaner'
|
|
]
|