Skip to main content

Phi Suite Schema

Project description

Phi Suite Schema.py

Homepage https://phisuite.com
GitHub https://github.com/phisuite

Overview

This project contains the Python module to create the Schema API server & client.
For more details, see Phi Suite Schema.

Installation

pip install phisuite.schema

Creating the server

from phisuite import schema

class EventAPIServicer(schema.EventAPIServicer):
    def Get(self, request, context):
        ...

server = grpc.server(futures.ThreadPoolExecutor(max_workers=10))
schema.add_EventAPIServicer_to_server(EventAPIServicer(), server)
server.add_insecure_port('[::]:50051')
server.start()

For more details, see gRPC Basics - Python: Creating the server.

Creating the client

from phisuite import schema

channel = grpc.insecure_channel('localhost:50051')

stub = schema.EventAPIStub(channel)
event = stub.Get(options)

For more details, see gRPC Basics - Python: Creating the client.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

phisuite.schema-0.0.2.tar.gz (8.4 kB view hashes)

Uploaded Source

Built Distribution

phisuite.schema-0.0.2-py3-none-any.whl (25.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page