Metadata-Version: 2.1
Name: soco_search_library
Version: 0.0.9
Summary: Soco search plugin helper
Home-page: https://www.soco.ai
Author: wangze
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: Free for non-commercial use
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# SOCO-SEARCH Plugin Helper

# soco-plugin-library

```
pip install soco-search-plugin
```

## How to create a source distribution
```
python setup.py sdist
``` 


Twine is for the upload process, so first install twine via pip:
```
pip install twine

```

Then, run the following command:
```
twine upload dist/*
```


## How to run grpc server
```
python3 -m soco_grpc.server --host 0.0.0.0 --port 8003 --workers 3
```

## how to run http server
```
# main.py
import uvicorn
if __name__ == "__main__":
    uvicorn.run("soco_grpc.server.app.server.app:app", host="0.0.0.0", port=8006, reload=True)

```


