Skip to content

Commit

Permalink
268 quickstart (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewvyrros committed Sep 10, 2021
1 parent 7a65d8e commit 30d66c9
Show file tree
Hide file tree
Showing 777 changed files with 90 additions and 25 deletions.
2 changes: 1 addition & 1 deletion en/latest/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 2c16c57638c6fc97a5976e0debba0aad
config: 19c1feb6e0f8fa31743f9bbb63457609
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file modified en/latest/.doctrees/api/index.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/api/python/index.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/api/python/opendp.accuracy.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/api/python/opendp.comb.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/api/python/opendp.core.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/api/python/opendp.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/api/python/opendp.meas.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/api/python/opendp.mod.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/api/python/opendp.trans.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/api/python/opendp.typing.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/contact/index.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/developer/code-structure.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/developer/committer-notes.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/developer/contributing.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/developer/index.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/developer/intro.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/developer/logistics.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/developer/review-process.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/environment.pickle
Binary file not shown.
Binary file modified en/latest/.doctrees/examples/applications.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/examples/index.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/examples/notebooks.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/faq.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/index.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/more.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/opendp-commons/dpcreator.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/opendp-commons/index.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/opendp-commons/intro.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/opendp-commons/related-projects.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/quickstart/index.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/user/application-structure.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/user/core-structures.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/user/data-input-output.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/user/getting-started.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/user/implementation-notes.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/user/index.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/user/intro.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/user/limitations.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/user/programming-framework.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/user/supporting-elements.doctree
Binary file not shown.
Binary file modified en/latest/.doctrees/user/type-conversions.doctree
Binary file not shown.
28 changes: 26 additions & 2 deletions en/latest/_sources/quickstart/index.rst.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,30 @@
Quickstart
==========

(In the future, this section will describe how to use the `OpenDP Library`_.)
.. contents:: |toctitle|
:local:

.. _OpenDP Library: https://github.com/opendp/opendp
Installation
------------

The easiest way to get started with OpenDP is from Python. Use ``pip`` to install the `opendp <https://pypi.org/project/opendp/>`_ package from PyPI.

.. code-block:: bash
% pip install opendp
This will make the OpenDP modules available to your local environment.

Hello, OpenDP!
--------------

Once you've installed OpenDP, you can write your first program. In the example below, we'll construct an identity ``Transformation``, then invoke it on a string.

.. doctest::

>>> from opendp.trans import make_identity
>>> from opendp.typing import SubstituteDistance

>>> identity = make_identity(M=SubstituteDistance, TA=str)
>>> identity("Hello, world!")
'Hello, world!'
2 changes: 1 addition & 1 deletion en/latest/_sources/user/getting-started.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ Once you've installed OpenDP, you can write your first program. In the example b
>>> from opendp.trans import make_identity
>>> from opendp.typing import SubstituteDistance

>>> identity = make_identity(M=SubstituteDistance, T=str)
>>> identity = make_identity(M=SubstituteDistance, TA=str)
>>> identity("Hello, world!")
'Hello, world!'
45 changes: 43 additions & 2 deletions en/latest/quickstart/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,24 @@ <h6>Tags</h6>

<div class="toc-item">

<div class="tocsection onthispage pt-5 pb-3">
<i class="fas fa-list"></i> On this page
</div>

<nav id="bd-toc-nav">

<ul class="visible nav section-nav flex-column">
<li class="toc-h2 nav-item toc-entry">
<a class="reference internal nav-link" href="#installation">
Installation
</a>
</li>
<li class="toc-h2 nav-item toc-entry">
<a class="reference internal nav-link" href="#hello-opendp">
Hello, OpenDP!
</a>
</li>
</ul>

</nav>
</div>

Expand All @@ -216,7 +231,33 @@ <h6>Tags</h6>

<div class="section" id="quickstart">
<h1>Quickstart<a class="headerlink" href="#quickstart" title="Permalink to this headline"></a></h1>
<p>(In the future, this section will describe how to use the <a class="reference external" href="https://github.com/opendp/opendp">OpenDP Library</a>.)</p>
<div class="contents local topic" id="toctitle">
<p class="topic-title">Contents:</p>
<ul class="simple">
<li><p><a class="reference internal" href="#installation" id="id1">Installation</a></p></li>
<li><p><a class="reference internal" href="#hello-opendp" id="id2">Hello, OpenDP!</a></p></li>
</ul>
</div>
<div class="section" id="installation">
<h2><a class="toc-backref" href="#id1">Installation</a><a class="headerlink" href="#installation" title="Permalink to this headline"></a></h2>
<p>The easiest way to get started with OpenDP is from Python. Use <code class="docutils literal notranslate"><span class="pre">pip</span></code> to install the <a class="reference external" href="https://pypi.org/project/opendp/">opendp</a> package from PyPI.</p>
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>% pip install opendp
</pre></div>
</div>
<p>This will make the OpenDP modules available to your local environment.</p>
</div>
<div class="section" id="hello-opendp">
<h2><a class="toc-backref" href="#id2">Hello, OpenDP!</a><a class="headerlink" href="#hello-opendp" title="Permalink to this headline"></a></h2>
<p>Once you’ve installed OpenDP, you can write your first program. In the example below, we’ll construct an identity <code class="docutils literal notranslate"><span class="pre">Transformation</span></code>, then invoke it on a string.</p>
<div class="highlight-pycon3 notranslate"><div class="highlight"><pre><span></span><span class="gp">&gt;&gt;&gt; </span><span class="kn">from</span> <span class="nn">opendp.trans</span> <span class="kn">import</span> <span class="n">make_identity</span>
<span class="gp">&gt;&gt;&gt; </span><span class="kn">from</span> <span class="nn">opendp.typing</span> <span class="kn">import</span> <span class="n">SubstituteDistance</span>

<span class="gp">&gt;&gt;&gt; </span><span class="n">identity</span> <span class="o">=</span> <span class="n">make_identity</span><span class="p">(</span><span class="n">M</span><span class="o">=</span><span class="n">SubstituteDistance</span><span class="p">,</span> <span class="n">TA</span><span class="o">=</span><span class="nb">str</span><span class="p">)</span>
<span class="gp">&gt;&gt;&gt; </span><span class="n">identity</span><span class="p">(</span><span class="s2">&quot;Hello, world!&quot;</span><span class="p">)</span>
<span class="go">&#39;Hello, world!&#39;</span>
</pre></div>
</div>
</div>
</div>


Expand Down
2 changes: 1 addition & 1 deletion en/latest/searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion en/latest/user/getting-started.html
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ <h2><a class="toc-backref" href="#id3">Hello, OpenDP!</a><a class="headerlink" h
<div class="highlight-pycon3 notranslate"><div class="highlight"><pre><span></span><span class="gp">&gt;&gt;&gt; </span><span class="kn">from</span> <span class="nn">opendp.trans</span> <span class="kn">import</span> <span class="n">make_identity</span>
<span class="gp">&gt;&gt;&gt; </span><span class="kn">from</span> <span class="nn">opendp.typing</span> <span class="kn">import</span> <span class="n">SubstituteDistance</span>

<span class="gp">&gt;&gt;&gt; </span><span class="n">identity</span> <span class="o">=</span> <span class="n">make_identity</span><span class="p">(</span><span class="n">M</span><span class="o">=</span><span class="n">SubstituteDistance</span><span class="p">,</span> <span class="n">T</span><span class="o">=</span><span class="nb">str</span><span class="p">)</span>
<span class="gp">&gt;&gt;&gt; </span><span class="n">identity</span> <span class="o">=</span> <span class="n">make_identity</span><span class="p">(</span><span class="n">M</span><span class="o">=</span><span class="n">SubstituteDistance</span><span class="p">,</span> <span class="n">TA</span><span class="o">=</span><span class="nb">str</span><span class="p">)</span>
<span class="gp">&gt;&gt;&gt; </span><span class="n">identity</span><span class="p">(</span><span class="s2">&quot;Hello, world!&quot;</span><span class="p">)</span>
<span class="go">&#39;Hello, world!&#39;</span>
</pre></div>
Expand Down
2 changes: 1 addition & 1 deletion en/stable/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 0fc1161bd5cb3abe36a06008903895ed
config: 2e9f16c52365e649db6fd03704706dcb
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file modified en/stable/.doctrees/api/index.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/api/python/index.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/api/python/opendp.comb.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/api/python/opendp.core.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/api/python/opendp.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/api/python/opendp.meas.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/api/python/opendp.mod.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/api/python/opendp.trans.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/api/python/opendp.typing.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/contact/index.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/developer/code-structure.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/developer/committer-notes.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/developer/contributing.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/developer/index.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/developer/intro.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/developer/logistics.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/developer/review-process.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/environment.pickle
Binary file not shown.
Binary file modified en/stable/.doctrees/examples/applications.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/examples/index.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/examples/notebooks.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/faq.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/index.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/more.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/opendp-commons/dpcreator.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/opendp-commons/index.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/opendp-commons/intro.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/opendp-commons/related-projects.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/quickstart/index.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/user/application-structure.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/user/core-structures.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/user/data-input-output.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/user/getting-started.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/user/implementation-notes.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/user/index.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/user/intro.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/user/limitations.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/user/programming-framework.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/user/supporting-elements.doctree
Binary file not shown.
Binary file modified en/stable/.doctrees/user/type-conversions.doctree
Binary file not shown.
2 changes: 1 addition & 1 deletion en/v0.1.0-rc.1/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: d6aaa9a5b5915a61e248afe02d992794
config: fec833428f610c4ac3289af12ea38120
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file modified en/v0.1.0-rc.1/.doctrees/api/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.1/.doctrees/api/python/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.1/.doctrees/api/python/opendp.core.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.1/.doctrees/api/python/opendp.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.1/.doctrees/api/python/opendp.meas.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.1/.doctrees/api/python/opendp.mod.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.1/.doctrees/api/python/opendp.trans.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.1/.doctrees/api/python/opendp.typing.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.1/.doctrees/contact/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.1/.doctrees/environment.pickle
Binary file not shown.
Binary file modified en/v0.1.0-rc.1/.doctrees/examples/applications.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.1/.doctrees/examples/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.1/.doctrees/examples/notebooks.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.1/.doctrees/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.1/.doctrees/quickstart/index.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified en/v0.1.0-rc.1/.doctrees/resources/dev-guide/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.1/.doctrees/resources/faq.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.1/.doctrees/resources/index.doctree
Binary file not shown.
Binary file not shown.
Binary file modified en/v0.1.0-rc.1/.doctrees/resources/opendp-commons/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.1/.doctrees/resources/opendp-commons/intro.doctree
Binary file not shown.
Binary file not shown.
Binary file modified en/v0.1.0-rc.1/.doctrees/resources/tutorials.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.1/.doctrees/user/application-structure.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.1/.doctrees/user/framework-concepts.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.1/.doctrees/user/hello-opendp.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.1/.doctrees/user/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.1/.doctrees/user/installation.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.1/.doctrees/user/intro.doctree
Binary file not shown.
2 changes: 1 addition & 1 deletion en/v0.1.0-rc.2/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 0438990a9ee0e94e4b3e00c9b6da63ae
config: dd5e2be62894c0b4abffe9967fef0b00
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file modified en/v0.1.0-rc.2/.doctrees/api/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.2/.doctrees/api/python/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.2/.doctrees/api/python/opendp.core.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.2/.doctrees/api/python/opendp.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.2/.doctrees/api/python/opendp.meas.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.2/.doctrees/api/python/opendp.mod.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.2/.doctrees/api/python/opendp.trans.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.2/.doctrees/api/python/opendp.typing.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.2/.doctrees/contact/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.2/.doctrees/environment.pickle
Binary file not shown.
Binary file modified en/v0.1.0-rc.2/.doctrees/examples/applications.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.2/.doctrees/examples/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.2/.doctrees/examples/notebooks.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.2/.doctrees/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.2/.doctrees/quickstart/index.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified en/v0.1.0-rc.2/.doctrees/resources/dev-guide/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.2/.doctrees/resources/faq.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.2/.doctrees/resources/index.doctree
Binary file not shown.
Binary file not shown.
Binary file modified en/v0.1.0-rc.2/.doctrees/resources/opendp-commons/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.2/.doctrees/resources/opendp-commons/intro.doctree
Binary file not shown.
Binary file not shown.
Binary file modified en/v0.1.0-rc.2/.doctrees/resources/tutorials.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.2/.doctrees/user/application-structure.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.2/.doctrees/user/framework-concepts.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.2/.doctrees/user/hello-opendp.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.2/.doctrees/user/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.2/.doctrees/user/installation.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.2/.doctrees/user/intro.doctree
Binary file not shown.
2 changes: 1 addition & 1 deletion en/v0.1.0-rc.3/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 79c448eb44a19dbcb1ad36b0bd370834
config: 3abaebcf334bdfa86df370515c375d53
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file modified en/v0.1.0-rc.3/.doctrees/api/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.3/.doctrees/api/python/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.3/.doctrees/api/python/opendp.core.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.3/.doctrees/api/python/opendp.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.3/.doctrees/api/python/opendp.meas.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.3/.doctrees/api/python/opendp.mod.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.3/.doctrees/api/python/opendp.trans.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.3/.doctrees/api/python/opendp.typing.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.3/.doctrees/contact/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.3/.doctrees/environment.pickle
Binary file not shown.
Binary file modified en/v0.1.0-rc.3/.doctrees/examples/applications.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.3/.doctrees/examples/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.3/.doctrees/examples/notebooks.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.3/.doctrees/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.3/.doctrees/quickstart/index.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified en/v0.1.0-rc.3/.doctrees/resources/dev-guide/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.3/.doctrees/resources/faq.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.3/.doctrees/resources/index.doctree
Binary file not shown.
Binary file not shown.
Binary file modified en/v0.1.0-rc.3/.doctrees/resources/opendp-commons/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.3/.doctrees/resources/opendp-commons/intro.doctree
Binary file not shown.
Binary file not shown.
Binary file modified en/v0.1.0-rc.3/.doctrees/resources/tutorials.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.3/.doctrees/user/application-structure.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.3/.doctrees/user/framework-concepts.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.3/.doctrees/user/hello-opendp.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.3/.doctrees/user/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.3/.doctrees/user/installation.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.3/.doctrees/user/intro.doctree
Binary file not shown.
2 changes: 1 addition & 1 deletion en/v0.1.0-rc.4/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: fd40c42da81b34cae09238952bc132b4
config: e488114f03a15007389614cdea3c58e5
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file modified en/v0.1.0-rc.4/.doctrees/api/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.4/.doctrees/api/python/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.4/.doctrees/api/python/opendp.core.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.4/.doctrees/api/python/opendp.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.4/.doctrees/api/python/opendp.meas.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.4/.doctrees/api/python/opendp.mod.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.4/.doctrees/api/python/opendp.trans.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.4/.doctrees/api/python/opendp.typing.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.4/.doctrees/contact/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.4/.doctrees/environment.pickle
Binary file not shown.
Binary file modified en/v0.1.0-rc.4/.doctrees/examples/applications.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.4/.doctrees/examples/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.4/.doctrees/examples/notebooks.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.4/.doctrees/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.4/.doctrees/quickstart/index.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified en/v0.1.0-rc.4/.doctrees/resources/dev-guide/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.4/.doctrees/resources/faq.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.4/.doctrees/resources/index.doctree
Binary file not shown.
Binary file not shown.
Binary file modified en/v0.1.0-rc.4/.doctrees/resources/opendp-commons/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.4/.doctrees/resources/opendp-commons/intro.doctree
Binary file not shown.
Binary file not shown.
Binary file modified en/v0.1.0-rc.4/.doctrees/resources/tutorials.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.4/.doctrees/user/application-structure.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.4/.doctrees/user/framework-concepts.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.4/.doctrees/user/hello-opendp.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.4/.doctrees/user/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.4/.doctrees/user/installation.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.4/.doctrees/user/intro.doctree
Binary file not shown.
2 changes: 1 addition & 1 deletion en/v0.1.0-rc.5/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 80aeeed92c797ba23cfcaa7384259800
config: 6a2a0d47e9345ac130c881d1bb032cc6
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file modified en/v0.1.0-rc.5/.doctrees/api/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.5/.doctrees/api/python/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.5/.doctrees/api/python/opendp.core.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.5/.doctrees/api/python/opendp.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.5/.doctrees/api/python/opendp.meas.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.5/.doctrees/api/python/opendp.mod.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.5/.doctrees/api/python/opendp.trans.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.5/.doctrees/api/python/opendp.typing.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.5/.doctrees/contact/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.5/.doctrees/environment.pickle
Binary file not shown.
Binary file modified en/v0.1.0-rc.5/.doctrees/examples/applications.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.5/.doctrees/examples/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.5/.doctrees/examples/notebooks.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.5/.doctrees/index.doctree
Binary file not shown.
Binary file modified en/v0.1.0-rc.5/.doctrees/quickstart/index.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified en/v0.1.0-rc.5/.doctrees/resources/dev-guide/index.doctree
Binary file not shown.

0 comments on commit 30d66c9

Please sign in to comment.