<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Anonymization on</title><link>http://developer.docs.protegrity.com/docs/prod_features/anon/</link><description>Recent content in Anonymization on</description><generator>Hugo</generator><language>en</language><lastBuildDate>Thu, 25 Jun 2026 05:41:58 +0000</lastBuildDate><atom:link href="http://developer.docs.protegrity.com/docs/prod_features/anon/index.xml" rel="self" type="application/rss+xml"/><item><title>Anonymization Architecture</title><link>http://developer.docs.protegrity.com/docs/prod_features/anon/anon_arch/</link><pubDate>Tue, 20 Feb 2024 00:00:00 +0000</pubDate><guid>http://developer.docs.protegrity.com/docs/prod_features/anon/anon_arch/</guid><description>&lt;p>Protegrity Anonymization allows processing of the datasets through generalization, to ensure the risk of re-identification is within tolerable thresholds. The anonymization process will have an impact on data utility, but Protegrity Anonymization optimizes this fundamental privacy-utility trade-off to ensure maximum data quality within the privacy goals.&lt;/p>
&lt;p>Protegrity Anonymization leverages Kubernetes for data anonymization at scale and it provides instructions and support for deployment and usage on AWS EKS and Microsoft Azure AKS.&lt;/p></description></item><item><title>Prerequisites for Anonymization</title><link>http://developer.docs.protegrity.com/docs/prod_features/anon/anon_prereq/</link><pubDate>Tue, 20 Feb 2024 00:00:00 +0000</pubDate><guid>http://developer.docs.protegrity.com/docs/prod_features/anon/anon_prereq/</guid><description>&lt;p>Ensure that the following prerequisites are met before running these examples for Anonymization:&lt;/p>
&lt;ul>
&lt;li>Docker CLI, Docker Compose, and Python are installed. For more information, refer to &lt;a href="http://developer.docs.protegrity.com/docs/install/">AI Developer Edition, Pre-requisites Guide&lt;/a>.&lt;/li>
&lt;li>For shell samples: Bash version greater than or equal to 5.1.8 and curl version greater than or equal to 7.76.1.&lt;/li>
&lt;li>For notebook samples: JupyterLab version greater than or equal to 4.5.6.&lt;/li>
&lt;/ul></description></item><item><title>Setting up Anonymization</title><link>http://developer.docs.protegrity.com/docs/prod_features/anon/anon_install/</link><pubDate>Tue, 20 Feb 2024 00:00:00 +0000</pubDate><guid>http://developer.docs.protegrity.com/docs/prod_features/anon/anon_install/</guid><description>&lt;p>Use the containers to set up the Anonymization feature required for identifying sensitive data.&lt;/p>
&lt;ol>
&lt;li>
&lt;p>Open a command prompt.&lt;/p>
&lt;/li>
&lt;li>
&lt;p>Navigate to the cloned repository location for &lt;strong>protegrity-ai-developer-edition&lt;/strong>.&lt;/p>
&lt;/li>
&lt;li>
&lt;p>Run the following command to download and start the containers. The dependent containers are large in size. Based on the network connection, the containers might take time to download and deploy.&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-fallback" data-lang="fallback">&lt;span style="display:flex;">&lt;span>cd anonymization
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>docker compose up -d
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;p>Based on your configuration use the &lt;code>docker-compose up -d&lt;/code> command.&lt;/p></description></item><item><title>Running the Anonymization samples</title><link>http://developer.docs.protegrity.com/docs/prod_features/anon/anon_using/</link><pubDate>Tue, 20 Feb 2024 00:00:00 +0000</pubDate><guid>http://developer.docs.protegrity.com/docs/prod_features/anon/anon_using/</guid><description>&lt;p>The example scripts under the &lt;code>anonymization/&lt;/code> folder demonstrate the usage of Anonymization APIs. For more information about the Anonymization APIs, refer to the section &lt;a href="http://developer.docs.protegrity.com/docs/prod_features/anon/anon_apis/">Anonymization APIs&lt;/a>.&lt;/p>
&lt;blockquote>
&lt;p>&lt;strong>Note&lt;/strong>: A dedicated &lt;code>anonymization/docker-compose.yml&lt;/code> is provided to start the Anonymization services.&lt;/p>&lt;/blockquote>
&lt;ol>
&lt;li>
&lt;p>Open a command prompt.&lt;/p>
&lt;/li>
&lt;li>
&lt;p>Navigate to the directory where AI Developer Edition is cloned.&lt;/p>
&lt;/li>
&lt;li>
&lt;p>Run the following command to start Jupyter Lab.&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-fallback" data-lang="fallback">&lt;span style="display:flex;">&lt;span>jupyter lab
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;/li>
&lt;li>
&lt;p>Copy the URL displayed and navigate to the site from a web browser. Ensure that &lt;code>localhost&lt;/code> is replaced with the IP address of the system where the AI Developer Edition is set up.&lt;/p></description></item><item><title>Using the Anonymization APIs</title><link>http://developer.docs.protegrity.com/docs/prod_features/anon/anon_apis/</link><pubDate>Tue, 20 Feb 2024 00:00:00 +0000</pubDate><guid>http://developer.docs.protegrity.com/docs/prod_features/anon/anon_apis/</guid><description>&lt;p>&lt;a id="anonymization_sdk.client">&lt;/a>&lt;/p>
&lt;h2 id="client">client&lt;/h2>
&lt;p>Anonymization SDK Client.&lt;/p>
&lt;p>Provides synchronous (AnonymizationClient) and asynchronous (AsyncAnonymizationClient)
Python clients for the Anonymization anonymization API.&lt;/p>
&lt;p>Public models, enums, and exceptions are re-exported here for backward
compatibility so that &lt;code>from anonymization_sdk.client import X&lt;/code> continues to work.&lt;/p>
&lt;p>&lt;a id="anonymization_sdk.client.AnonymizationClient">&lt;/a>&lt;/p>
&lt;h3 id="anonymizationclient">AnonymizationClient&lt;/h3>
&lt;div class="highlight">&lt;pre tabindex="0" style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-python" data-lang="python">&lt;span style="display:flex;">&lt;span>&lt;span style="color:#204a87;font-weight:bold">class&lt;/span> &lt;span style="color:#000">AnonymizationClient&lt;/span>&lt;span style="color:#000;font-weight:bold">()&lt;/span>
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;p>Synchronous client for the Anonymization anonymization API.&lt;/p>
&lt;p>&lt;strong>Arguments&lt;/strong>:&lt;/p>
&lt;ul>
&lt;li>&lt;code>base_url&lt;/code> - Base URL of the Anonymization API (default: http://localhost:8000)&lt;/li>
&lt;li>&lt;code>timeout&lt;/code> - Request timeout in seconds (default: 30)&lt;/li>
&lt;li>&lt;code>headers&lt;/code> - Additional headers to include in requests&lt;/li>
&lt;/ul>
&lt;p>&lt;a id="anonymization_sdk.client.AnonymizationClient.__init__">&lt;/a>&lt;/p></description></item><item><title>Uninstalling Anonymization</title><link>http://developer.docs.protegrity.com/docs/prod_features/anon/anon_uninstall/</link><pubDate>Tue, 20 Feb 2024 00:00:00 +0000</pubDate><guid>http://developer.docs.protegrity.com/docs/prod_features/anon/anon_uninstall/</guid><description>&lt;ol>
&lt;li>
&lt;p>Open a command prompt.&lt;/p>
&lt;/li>
&lt;li>
&lt;p>Navigate to the cloned repository location.&lt;/p>
&lt;/li>
&lt;li>
&lt;p>Navigate to the &lt;code>anonymization&lt;/code> directory.&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-fallback" data-lang="fallback">&lt;span style="display:flex;">&lt;span>cd anonymization
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;/li>
&lt;li>
&lt;p>Run the following command to remove the containers and images.&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-fallback" data-lang="fallback">&lt;span style="display:flex;">&lt;span>docker compose down --rmi all
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;/li>
&lt;/ol></description></item></channel></rss>