Metadata-Version: 2.1
Name: serving-utils
Version: 0.2.0
Summary: Some utilities for tensorflow serving
Home-page: https://github.com/samuelcolvin/arq
Author: Po-Hsien Chu
Author-email: cph@yoctol.com
License: MIT
Platform: UNKNOWN
Requires-Python: >=3.5
Requires-Dist: grpcio-tools
Requires-Dist: aiogrpc (>=1.5)
Requires-Dist: numpy (>=1.14.0)

# serving-utils

[![Build Status](https://travis-ci.org/Yoctol/serving-utils.svg?branch=master)](https://travis-ci.org/Yoctol/serving-utils) [![PyPI version](https://badge.fury.io/py/serving-utils.svg)](https://badge.fury.io/py/serving-utils)

Some python utilities when using tensorflow-serving.

## Installation

1. Manually install tensorflow CPU or GPU version.
2. `pip install serving-client`

## Usage

```python
from serving_utils import Client

client = Client(addr="localhost:8500")
client.predict(...)

# or async
await client.async_predict(...)
```

## Test

Run the following commands:
```
make lint
make test
```


