pyCANON, A Python library to check the level of anonymity of a dataset
Project description
pyCANON is a library and CLI to assess the values of the paramenters associated with the most common privacy-preserving techniques.
Authors: Judith Sáinz-Pardo Díaz and Álvaro López García (IFCA - CSIC).
Installation
We recommend to use Python3 with virtualenv:
virtualenv .venv -p python3 source .venv/bin/activate
Then run the following command to install the library and all its requirements:
pip install pycanon
Documentation
The pyCANON documentation is hosted on Read the Docs.
Getting started
Example using the adult dataset:
from pycanon import anonymity, report
FILE_NAME = "adult.csv"
QI = ["age", "education", "occupation", "relationship", "sex", "native-country"]
SA = ["salary-class"]
# Calculate k for k-anonymity:
k = anonymity.k_anonymity(FILE_NAME, QI)
# Print the anonymity report:
report.print_report(FILE_NAME, QI, SA)
Description
pyCANON allows to check if the following privacy-preserving techniques are verified and the value of the parameters associated with each of them:
+—————————-+————————–+———————-+——————————++ | Technique | pyCANON function | Parameters | Notes | +============================+==========================+======================+===============================+ | k-anonymity | k_anonymity | _k_: int | | | (α, k)-anonymity | alpha_k_anonymity | _α_: float _k_: int | | | ℓ-diversity | l_diversity | _ℓ_: int | | | Entropy ℓ-diversity | entropy_l_diversity | _ℓ_: int | | | Recursive (c,ℓ)-diversity | recursive_c_l_diversity | _c_: int _ℓ_: int | Not calculated if ℓ=1 | | Basic β-likeness | basic_beta_likeness | _β_: float | | | Enhanced β-likeness | enhanced_beta_likeness | _β_: float | | | t-closeness | t_closeness | _t_: float | For numerical attributes the definition of the EMD (one-dimensional Earth Mover’s Distance) is used. For categorical attributes, the metric “Equal Distance” is used. | | δ-disclosure privacy | delta_disclosure | _δ_: float | | +—————————-+————————–+———————-+——————————-+
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pycanon-1.0.0.post1.tar.gz
.
File metadata
- Download URL: pycanon-1.0.0.post1.tar.gz
- Upload date:
- Size: 16.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 961318347bfcb6cb6c2663e4dbffe45402446ed9fa3b00d6c462a719d490556f |
|
MD5 | 4bdc307f8e3f6096654190a1da6f8eb5 |
|
BLAKE2b-256 | 7529e91b95ad1744e3737d1e159b16cf1fd8f00f81f97b5ce28be5fa525f09eb |