A python native weaviate client
Project description
Weaviate python client
A python native client for easy interaction with a weaviate instance.
Install
The package can be easily installed using pip. The client is developed and tested for python 3.7.
pip install weaviate-client
Usage
First make sure that weaviate is running. See the installation guide on how to start weaviate.
Before we can load data we need to create a client and load a schema.
import weaviate
client = weaviate.Client("http://localhost:8080")
client.create_schema("https://raw.githubusercontent.com/semi-technologies/weaviate-python-client/master/documentation/getting_started/people_schema.json")
A schema can be provided as an URL, file or a dict. Now lets create some things.
client.create_thing({"name": "John von Neumann"}, "Person", "b36268d4-a6b5-5274-985f-45f13ce0c642")
client.create_thing({"name": "Alan Turing"}, "Person", "1c9cd584-88fe-5010-83d0-017cb3fcb446")
client.create_thing({"name": "Legends"}, "Group", "2db436b5-0557-5016-9c5f-531412adf9c6")
We can simply add cross-references through:
client.add_reference_to_thing("2db436b5-0557-5016-9c5f-531412adf9c6", "members", "b36268d4-a6b5-5274-985f-45f13ce0c642")
client.add_reference_to_thing("2db436b5-0557-5016-9c5f-531412adf9c6", "members", "1c9cd584-88fe-5010-83d0-017cb3fcb446")
Note: Weaviate might needs a second to update its index after a new thing has been created.
Look at the data using the simple query:
{
Get {
Things {
Group {
name
uuid
Members {
... on Person {
name
uuid
}
}
}
}
}
}
Please find the full client documentation here.
Authentication
import weaviate
auth = weaviate.AuthClientPassword("user@example.com", "supersecrettoken")
client = weaviate.Client("http://xcosauwqdjyiwqlb.dev.semi.network", auth)
if client.is_reachable():
print("Success!")
Build Status
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 Distributions
Built Distribution
File details
Details for the file weaviate_client-0.3.2-py3-none-any.whl
.
File metadata
- Download URL: weaviate_client-0.3.2-py3-none-any.whl
- Upload date:
- Size: 16.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2f75b08b5b854435abe0d49a42d50cf7c410b28b81828094e3ca2bb823c25f24 |
|
MD5 | f9d7fd5c8ee8721d678d13a86555e95b |
|
BLAKE2b-256 | 03ef1dca403f8de1d55538d6bd0be6cc728a3a7f2952aff02699b0ea7b3f7029 |