PyCANON: A Python library to check the level of anonymity of a dataset

pyCANON is a Python library which allows the user to know the anonymity
level of a dataset based on a set of quasi-identifiers (QI), and a set of
sensitive attributes. To do so, it provides a set of functions to compute the
anonymity level of a dataset by… Read more

Similar

Easy Concurrency in Python

Bad news first. Python is a poor choice for concurrent programming. A principal reason for this is the 'Global Interpreter Lock' or GIL. The GIL ensures that only one thread accesses Python objects at a time, effectively preventing Python from being able ... (more…)

Read more »