Skip to main content

Phi Suite Data

Project description

Phi Suite Data.py

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

Overview

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

Installation

pip install phisuite.data

Creating the server

from phisuite import data

class EventAPIServicer(data.EventAPIServicer):
    def Publish(self, request, context):
        ...

server = grpc.server(futures.ThreadPoolExecutor(max_workers=10))
data.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 data

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

stub = data.EventAPIStub(channel)
event = stub.Publish(event)

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.data-0.0.2.tar.gz (8.8 kB view hashes)

Uploaded Source

Built Distribution

phisuite.data-0.0.2-py3-none-any.whl (25.3 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