Metadata-Version: 2.1
Name: veriservice
Version: 0.0.34
Summary: Python client for Veri
Home-page: http://github.com/bgokden/veri-python-client
Author: Berk Gokden
Author-email: berkgokden@gmail.com
License: Apache Software License
Keywords: veri service python client
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: grpcio-tools
Requires-Dist: googleapis-common-protos

# Veri Python Client
Python client for veri

```shell script
pip install veriservice
```


```python
import veriservice
```


```python
service = "localhost:5678"

veriservice.init_service(service, "./tmp")

client = veriservice.VeriClient(service, "example_data")
data_conf = {}
client.create_data_if_not_exists(data_conf)
data = [
            {
                'label': 'a',
                'feature': [0.5, 0.1, 0.2]
            },
            {
                'label': 'b',
                'feature': [0.5, 0.1, 0.3]
            },
            {
                'label': 'c',
                'feature': [0.5, 0.1, 1.4]
            },
        ]

for d in data:
    client.insert(d['feature'], d['label'].encode())

result = client.search([[0.1, 0.1, 0.1]])
for i in result:
    print(i)

result = client.data()
for i in result:
    print(i)
```

