Skip to content

Commit

Permalink
Switch version to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Felix Finkbeiner committed Nov 14, 2019
1 parent 18ce730 commit bd15206
Show file tree
Hide file tree
Showing 8 changed files with 51 additions and 9 deletions.
Binary file modified docs/doctrees/environment.pickle
Binary file not shown.
Binary file modified docs/doctrees/index.doctree
Binary file not shown.
10 changes: 8 additions & 2 deletions docs/html/genindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,13 @@ <h2 id="G">G</h2>
</li>
<li><a href="index.html#weaviate.client.Client.get_c11y_vector">get_c11y_vector() (weaviate.client.Client method)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="index.html#weaviate.client.Client.get_knn_classification_status">get_knn_classification_status() (weaviate.client.Client method)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="index.html#weaviate.batch.ThingsBatchRequest.get_request_body">get_request_body() (weaviate.batch.ThingsBatchRequest method)</a>
</li>
<li><a href="index.html#weaviate.client.Client.get_schema">get_schema() (weaviate.client.Client method)</a>
</li>
<li><a href="index.html#weaviate.client.Client.get_thing">get_thing() (weaviate.client.Client method)</a>
</li>
Expand All @@ -110,6 +112,10 @@ <h2 id="I">I</h2>

<h2 id="P">P</h2>
<table style="width: 100%" class="indextable genindextable"><tr>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="index.html#weaviate.client.Client.patch_thing">patch_thing() (weaviate.client.Client method)</a>
</li>
</ul></td>
<td style="width: 33%; vertical-align: top;"><ul>
<li><a href="index.html#weaviate.client.Client.put_thing">put_thing() (weaviate.client.Client method)</a>
</li>
Expand Down
44 changes: 41 additions & 3 deletions docs/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
<li><p><strong>from_thing_uuid</strong> (<em>str in the form of an UUID</em>) – the thing that should have the reference as part of its properties.</p></li>
<li><p><strong>from_property_name</strong> (<em>str</em>) – the name of the property within the thing.</p></li>
<li><p><strong>to_thing_uuid</strong> (<em>str in the form of an UUID</em>) – the UUID of the thing that should be referenced.</p></li>
<li><p><strong>to_weaviate</strong> (<em>str</em>) – specifies the weaviate instance on which the cross referenced thing is loacated</p></li>
</ul>
</dd>
<dt class="field-even">Returns</dt>
Expand Down Expand Up @@ -183,6 +184,18 @@
</dl>
</dd></dl>

<dl class="method">
<dt id="weaviate.client.Client.get_schema">
<code class="sig-name descname">get_schema</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#weaviate.client.Client.get_schema" title="Permalink to this definition"></a></dt>
<dd><p>Get the schema in weaviate</p>
<dl class="field-list simple">
<dt class="field-odd">Returns</dt>
<dd class="field-odd"><p>a dict containing the schema.
If no schema classes are present yet then the classes arrys are empty</p>
</dd>
</dl>
</dd></dl>

<dl class="method">
<dt id="weaviate.client.Client.get_thing">
<code class="sig-name descname">get_thing</code><span class="sig-paren">(</span><em class="sig-param">uuid_thing</em>, <em class="sig-param">meta=False</em><span class="sig-paren">)</span><a class="headerlink" href="#weaviate.client.Client.get_thing" title="Permalink to this definition"></a></dt>
Expand Down Expand Up @@ -230,14 +243,39 @@
</dl>
</dd></dl>

<dl class="method">
<dt id="weaviate.client.Client.patch_thing">
<code class="sig-name descname">patch_thing</code><span class="sig-paren">(</span><em class="sig-param">thing</em>, <em class="sig-param">class_name</em>, <em class="sig-param">uuid</em><span class="sig-paren">)</span><a class="headerlink" href="#weaviate.client.Client.patch_thing" title="Permalink to this definition"></a></dt>
<dd><p>Merges the given thing with the already existing thing in weaviate.
Overwrites all given fields.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters</dt>
<dd class="field-odd"><ul class="simple">
<li><p><strong>thing</strong> (<em>dict</em><em>, </em><em>url</em><em>, </em><em>file</em>) – The thing states the fields that should be updated.
Fields not stated by thing will not be changed.
Fields that are None will not be changed (may change in the future to deleted).</p></li>
<li><p><strong>class_name</strong> (<em>str</em>) – The name of the class of thing.</p></li>
<li><p><strong>uuid</strong> (<em>str</em>) – The ID of the thing that should be changed.</p></li>
</ul>
</dd>
<dt class="field-even">Returns</dt>
<dd class="field-even"><p>None if successful</p>
</dd>
<dt class="field-odd">Raises</dt>
<dd class="field-odd"><p>ConnectionError: If the network connection to weaviate fails.
UnexpectedStatusCodeException: If weaviate reports a none successful status.</p>
</dd>
</dl>
</dd></dl>

<dl class="method">
<dt id="weaviate.client.Client.put_thing">
<code class="sig-name descname">put_thing</code><span class="sig-paren">(</span><em class="sig-param">thing</em>, <em class="sig-param">class_name</em>, <em class="sig-param">uuid</em><span class="sig-paren">)</span><a class="headerlink" href="#weaviate.client.Client.put_thing" title="Permalink to this definition"></a></dt>
<dd><p>Replaces an already existing thing with the given thing. Does not keep unset values.</p>
<dl class="field-list simple">
<dt class="field-odd">Parameters</dt>
<dd class="field-odd"><ul class="simple">
<li><p><strong>thing</strong> (<em>str</em><em>, </em><em>dict</em>) – describes the new values.
<li><p><strong>thing</strong> (<em>str</em><em>, </em><em>dict</em>) – Describes the new values.
It may be an URL or path to a json or a python dict describing the new values.</p></li>
<li><p><strong>class_name</strong> (<em>str</em>) – Name of the class of the thing that should be updated.</p></li>
<li><p><strong>uuid</strong> (<em>str</em>) – Of the thing.</p></li>
Expand All @@ -247,8 +285,8 @@
<dd class="field-even"><p>None if successful.</p>
</dd>
<dt class="field-odd">Raises</dt>
<dd class="field-odd"><p>ConnectionError: if the network connection to weaviate fails.
UnexpectedStatusCodeException: if weaviate reports a none OK status.</p>
<dd class="field-odd"><p>ConnectionError: If the network connection to weaviate fails.
UnexpectedStatusCodeException: If weaviate reports a none OK status.</p>
</dd>
</dl>
</dd></dl>
Expand Down
Binary file modified docs/html/objects.inv
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/html/searchindex.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,3 @@ Please find the [full client documentation here](https://semi-technologies.githu
## Build Status

[![Build Status](https://travis-ci.com/semi-technologies/weaviate-python-client.svg?token=1qdvi3hJanQcWdqEstmy&branch=master)](https://travis-ci.com/semi-technologies/weaviate-python-client)


2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
long_description = f.read()

setup(name="weaviate-client",
version="0.1.1-a1",
version="0.1.1",
description="A python native weaviate client",
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit bd15206

Please sign in to comment.