Metadata-Version: 2.1
Name: phisuite.schema
Version: 0.0.0
Summary: Phi Suite Schema
Home-page: https://github.com/phisuite/schema.py
Author: Phi Skills
Author-email: phisuite@phiskills.com
License: GNU GPLv3
Project-URL: Project website, https://phisuite.com
Project-URL: Company website, https://phiskills.com
Project-URL: Documentation, https://phisuite.com/doc
Project-URL: Source, https://github.com/phisuite/schema.py
Keywords: Phi Suite Data Engineering
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development
Requires-Python: >=3.8, <4
Description-Content-Type: text/markdown
Requires-Dist: protobuf
Requires-Dist: grpcio

# Phi Suite Schema.py

| **Homepage** | [https://phisuite.com][0]        |
| ------------ | -------------------------------- | 
| **GitHub**   | [https://github.com/phisuite][1] |

## Overview

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

## Installation

```bash
pip install phisuite.schema
```

## Creating the server

```python
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][10].

## Creating the client

```python
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][11].

[0]: https://phisuite.com
[1]: https://github.com/phisuite
[2]: https://github.com/phisuite/schema
[10]: https://www.grpc.io/docs/tutorials/basic/python/#server
[11]: https://www.grpc.io/docs/tutorials/basic/python/#client


