Upload README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: CSV Data Anonymizer for GDPR
|
| 3 |
+
emoji: 🔒
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: purple
|
| 6 |
+
sdk: gradio
|
| 7 |
+
sdk_version: 5.34.2
|
| 8 |
+
app_file: app.py
|
| 9 |
+
pinned: false
|
| 10 |
+
license: mit
|
| 11 |
+
short_description: Anonymize CSV sensitive columns for GDPR compliance
|
| 12 |
+
tags:
|
| 13 |
+
- privacy
|
| 14 |
+
- gdpr
|
| 15 |
+
- data-science
|
| 16 |
+
- csv
|
| 17 |
+
- anonymization
|
| 18 |
+
---
|
| 19 |
+
|
| 20 |
+
# 🔒 CSV Data Anonymizer — GDPR Ready
|
| 21 |
+
|
| 22 |
+
Upload a CSV, select the columns containing sensitive data, and download an anonymized version ready to share with your team or AI tools.
|
| 23 |
+
|
| 24 |
+
Credits: [xlclick.com](https://xlclick.com)
|
| 25 |
+
|
| 26 |
+
## Features
|
| 27 |
+
|
| 28 |
+
- **Auto-detection** of data type (email, name, phone, address…)
|
| 29 |
+
- **Deterministic mapping**: the same real value always produces the same fake value, preserving dataset consistency
|
| 30 |
+
- **Supported types**: Email, First name, Last name, Full name, Phone, Address, City, Postal code, Tax ID, Date of birth, Generic
|
| 31 |
+
- **Preview** of the result before downloading
|
| 32 |
+
- **CSV download** ready to use
|
| 33 |
+
|
| 34 |
+
## How to use
|
| 35 |
+
|
| 36 |
+
1. Upload your CSV file
|
| 37 |
+
2. Review the auto-detected column types and correct them if needed
|
| 38 |
+
3. Check/uncheck the columns you want to anonymize
|
| 39 |
+
4. Click **"Anonymize"**
|
| 40 |
+
5. Download the anonymized CSV
|
| 41 |
+
|
| 42 |
+
## Privacy note
|
| 43 |
+
|
| 44 |
+
The file is processed entirely in memory on the server — no data is saved to disk or transmitted to third parties.
|