sz-sdk-python-grpc
If you are beginning your journey with Senzing,
please start with Senzing Quick Start guides.
You are in the Senzing Garage where projects are "tinkered" on.
Although this GitHub repository may help you understand an approach to using Senzing,
it's not considered to be "production ready" and is not considered to be part of the Senzing product.
Heck, it may not even be appropriate for your application of Senzing!
:warning: WARNING: sz-sdk-python-grpc is still in development :warning: _
At the moment, this is "work-in-progress" with Semantic Versions of 0.n.x
.
Although it can be reviewed and commented on,
the recommendation is not to use it yet.
Synopsis
The Senzing sz-sdk-python-grpc
package provides a Python Software Development Kit
adhering to the abstract classes of sz-sdk-python
that communicates with a Senzing gRPC server.
![Coverage Badge](https://img.shields.io/badge/dynamic/json?color=brightgreen&label=coverage&query=%24.message&url=https%3A%2F%2Fraw.githubusercontent.com%2Fsenzing-garage%2Fsz-sdk-python%2Fpython-coverage-comment-action-data%2Fendpoint.json)
Overview
The Senzing sz-sdk-python-grpc
packages enable Python programs to call Senzing library functions
across a network to a Senzing gRPC server.
The sz-sdk-python-grpc
package implements the following sz-sdk-python interfaces:
- SzConfig
- SzConfigMgr
- SzDiagnostic
- SzEngine
- SzProduct
Other implementations of the sz-sdk-python interface include:
Use
The following example shows how to start a Senzing gRPC server Docker container
and access it using the senzing_grpc
Python package.
-
Run a Senzing gRPC service using Docker.
docker run -it --name senzing-serve-grpc -p 8261:8261 --pull always --read-only --rm senzing/serve-grpc
-
In a separate window, install the senzing-grpc
Python package.
python3 -m pip install --upgrade senzing-grpc
-
Start an interactive Python session.
python3
-
Paste the following into the interactive Python session.
import grpc
from senzing_grpc import SzAbstractFactoryGrpc
sz_abstract_factory = SzAbstractFactoryGrpc(grpc_channel=grpc.insecure_channel("localhost:8261"))
sz_product = sz_abstract_factory.create_product()
print(sz_product.get_version())
More can be seen in Examples.
References
- Development
- Errors
- Examples
- Related artifacts:
- DockerHub
- sz-sdk-python package reference