Library for communication with microservices developed by phonexia using grpc application interface.
Project description
Phonexia microservice communication via grpc library
This library contains defined interfaces for all microservices developed by Phonexia.
To use this library you will first need a running instance of any Phonexia microservice. If you don't yet have any running instance, don't hesitate to contact our sales department.
On this page, you may find a gRPC API reference for all microservices.
Example
Examples require microservice running on local machine at port 8080.
Health check
You can invoke health check
method of any microservice like this:
import grpc
from phonexia.grpc.common.health_check_pb2 import HealthCheckRequest
from phonexia.grpc.common.health_check_pb2_grpc import HealthStub
def health_check(stub: HealthStub):
"""Create request and call the service.
Invoke Info method of the health stub.
Args:
stub (LicensingStub): Created stub for communication with service.
"""
request = HealthCheckRequest()
response = stub.Check(request)
print(response)
def main():
"""Create a gRPC channel and connect to the service."""
with grpc.insecure_channel(target="localhost:8080") as channel:
"""Create channel to the service.
The target parameter is the service address and port.
insecure channel is used for connection without TLS.
To use SSl/TLS see the grpc_secure_channel function.
"""
stub = HealthStub(channel)
health_check(stub)
if __name__ == "__main__":
main()
If the microservice is running, it should return: status: SERVING
.
Check license
Each microservice has licensed model which is required to run the service. You can fetch information about licensed models like this:
import grpc
from phonexia.grpc.common.licensing_pb2 import LicensingInfoRequest
from phonexia.grpc.common.licensing_pb2_grpc import LicensingStub
def licensing_check(stub: LicensingStub):
"""Create request and call the service.
Invoke Info method of the Licensing stub.
Args:
stub (LicensingStub): Created stub for communication with service.
"""
request = LicensingInfoRequest()
response = stub.Info(request)
print(
f"The license for technology '{response.technology_name}' with model"
f" '{response.model_info.name}:{response.model_info.version}'"
f" {'is' if response.is_valid else 'was'} valid until {response.valid_until}."
)
def main():
"""Create a gRPC channel and connect to the service."""
with grpc.insecure_channel(target="localhost:8080") as channel:
"""Create channel to the service.
The target parameter is the service address and port.
insecure channel is used for connection without TLS.
To use SSl/TLS see the grpc_secure_channel function.
"""
stub = LicensingStub(channel=channel)
licensing_check(stub)
if __name__ == "__main__":
main()
Returned message should contain information about technology name, model name with version and time validity of license.
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 Distribution
Built Distribution
File details
Details for the file phonexia_grpc-2.1.0.tar.gz
.
File metadata
- Download URL: phonexia_grpc-2.1.0.tar.gz
- Upload date:
- Size: 22.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.3 Linux/5.14.0-362.8.1.el9_3.x86_64
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f76d5c57319ee68eec9e872f65fa2e429dd568993f61c1851b4dbac60b6039b5 |
|
MD5 | b7da4feca048572069e9a05db2768925 |
|
BLAKE2b-256 | 2211de48749577cdf863ae187e050ca835353feb282169e6d445db03f5e5c88c |
File details
Details for the file phonexia_grpc-2.1.0-py3-none-any.whl
.
File metadata
- Download URL: phonexia_grpc-2.1.0-py3-none-any.whl
- Upload date:
- Size: 44.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.3 Linux/5.14.0-362.8.1.el9_3.x86_64
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a7bf01b243c1143bfc28e96843e565af0e291298ae722064a3ff6e85719b0b1f |
|
MD5 | a6503c7c0d461c55700afda6ad43d678 |
|
BLAKE2b-256 | ed17d90969c0c9eae577bf526c028c1f0e97f1d154c4eaf71727296d1e478820 |