Cape manages secure access to all of your data.
Project description
Cape Python
A Python library supporting data transformations and collaborative privacy policies, for data science projects in Pandas and Apache Spark
See below for instructions on how to get started or visit the documentation.
Getting started
Prerequisites
- Python 3.6 or above, and pip
- Pandas 1.0+
- PySpark 3.0+ (if using Spark)
- Make (if installing from source)
Install with pip
Cape Python is available through PyPi.
pip install cape-privacy
Support for Apache Spark is optional. If you plan on using the library together with Apache Spark, we suggest the following instead:
pip install cape-privacy[spark]
We recommend running it in a virtual environment, such as venv.
Install from source
It is possible to install the library from source. This installs all dependencies, including Apache Spark:
git clone https://github.com/capeprivacy/cape-python.git
cd cape-python
make bootstrap
Usage example
This example is an abridged version of the tutorial found here
df = pd.DataFrame({
"name": ["alice", "bob"],
"age": [34, 55],
"birthdate": [pd.Timestamp(1985, 2, 23), pd.Timestamp(1963, 5, 10)],
})
tokenize = Tokenizer(max_token_len=10, key=b"my secret")
perturb_numeric = NumericPerturbation(dtype=dtypes.Integer, min=-10, max=10)
df["name"] = tokenize(df["name"])
df["age"] = perturb_numeric(df["age"])
print(df.head())
# >>
# name age birthdate
# 0 f42c2f1964 34 1985-02-23
# 1 2e586494b2 63 1963-05-10
These steps can be saved in policy files so you can share them and collaborate with your team:
# my-policy.yaml
label: my-policy
version: 1
rules:
- match:
name: age
actions:
- transform:
type: numeric-perturbation
dtype: Integer
min: -10
max: 10
seed: 4984
- match:
name: name
actions:
- transform:
type: tokenizer
max_token_len: 10
key: my secret
You can then load this policy and apply it to your data frame:
# df can be a Pandas or Spark data frame
policy = cape.parse_policy("my-policy.yaml")
df = cape.apply_policy(policy, df)
print(df.head())
# >>
# name age birthdate
# 0 f42c2f1964 34 1985-02-23
# 1 2e586494b2 63 1963-05-10
You can see more examples and usage here or in our documentation.
About Cape Privacy and Cape Python
Cape Privacy helps teams share data and make decisions for safer and more powerful data science. Learn more at capeprivacy.com.
Cape Python brings Cape's policy language to Pandas and Apache Spark. The supported techniques include tokenization with linkability as well as perturbation and rounding. You can experiment with these techniques programmatically, in Python or in human-readable policy files.
Cape architecture
Cape is comprised of multiples services and libraries. You can use Cape Python as a standalone library, or you can integrate it with the Coordinator in Cape Core, which supports user and policy management.
Project status and roadmap
Cape Python 0.1.1 was released 24th June 2020. It is actively maintained and developed, alongside other elements of the Cape ecosystem.
Upcoming features:
- Reversible tokenisation: allow reversing of tokenization to reveal the raw value.
- Policy audit logging: create logging hooks to allow audit logs for policy downloads and usage in Cape Python.
- Expand pipeline integrations: add Apache Beam, Apache Flink, Apache Arrow Flight or Dask integration as another pipeline we can support, either as part of Cape Python or in its own separate project.
The goal is a complete data management ecosystem. Cape Privacy provides Cape Coordinator, to manage policy and users. This will interact with the Cape Privacy libraries (such as Cape Python) through a workers interface, and with your own data services through an API.
Help and resources
If you need help using Cape Python, you can:
- View the documentation.
- Submit an issue.
- Talk to us on our community Slack.
Please file feature requests and bug reports as GitHub issues.
Community
Contributing
View our contributing guide for more information.
Code of conduct
Our code of conduct is included on the Cape Privacy website. All community members are expected to follow it. Please refer to that page for information on how to report problems.
License
Licensed under Apache License, Version 2.0 (see LICENSE or http://www.apache.org/licenses/LICENSE-2.0). Copyright as specified in NOTICE.
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
Built Distribution
File details
Details for the file cape-privacy-0.3.0.tar.gz
.
File metadata
- Download URL: cape-privacy-0.3.0.tar.gz
- Upload date:
- Size: 31.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9e3fa1c8d497dcc5080167a96b4ae9cef2c215e0ee16a07649c25dee34175d2c |
|
MD5 | fb372752390eaa272c36cee4dce368fa |
|
BLAKE2b-256 | 9fbadcbd91eca5a47550da5a05064485e8c7625968bf23f65523bb902bfa2f46 |
File details
Details for the file cape_privacy-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: cape_privacy-0.3.0-py3-none-any.whl
- Upload date:
- Size: 48.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d389384d712c7507ba0201adb8fc6fb60e72d8dfad12d41d90dbaabba876e977 |
|
MD5 | 106306ff2f8d31fbff34f6d587059cae |
|
BLAKE2b-256 | be4f69b9dc6671da03440a0de6880019af2fff40b34f49495a2b05b8b8c065cb |