Skip to main content

oaas_simple

Project description

A transport for OaaS that uses a single grpc function. It should work out of the box for most simple scenarios.

Installation

pip install oaas_simple

Usage

To get a process that does both the client and the server:

oaas.register_server_provider(OaasGrpcTransportServer(port=9000))
oaas.register_client_provider(OaasGrpcTransportClient())

oaas.serve()

Exposing services is done via regular oaas decorators:

@oaas.service("test-service")
class TestCallService:
    def echo_data(self, *, data: str) -> str:
        return data

Again for consumers:

@oaas.client("test-service")
class TestCallClient:
    def echo_data(self, *, data: str) -> str:
        ...

In order to make the services find each other you need a registry. You can fire up the embedded registry:

python -m oaas_simple.registry

The only requirement is that the registry listens on port 8999

Minimal Client

import oaas
import oaas_simple


@oaas.client("swag")
class Swag:
    def print_stuff(message: str) -> str:
        ...


oaas.register_client_provider(oaas_simple.OaasSimpleClient())


swag = oaas.get_client(Swag)

print(swag.print_stuff("abc"))

Minimal Server

import oaas
import oaas_simple


@oaas.service("swag")
class Swag:
    def print_stuff(self, message: str) -> str:
        print(message)
        return f"from server {message}"

# it needs the client to find the registry, since the registry is also an
# oaas.service("oaas-registry")
oaas.register_client_provider(oaas_simple.OaasSimpleClient())
oaas.register_server_provider(oaas_simple.OaasSimpleServer(port=9000))

oaas.serve()
oaas.join()

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

oaas_simple-1.3.0.tar.gz (8.6 kB view details)

Uploaded Source

File details

Details for the file oaas_simple-1.3.0.tar.gz.

File metadata

  • Download URL: oaas_simple-1.3.0.tar.gz
  • Upload date:
  • Size: 8.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Python-urllib/3.8

File hashes

Hashes for oaas_simple-1.3.0.tar.gz
Algorithm Hash digest
SHA256 6d342f122328fafc4c00df3f100d009f0b37717a3560e02a9eae3a9d5865236c
MD5 7ead6fe39dd98bf658db5cccee69463d
BLAKE2b-256 458ac2b4e823623ca4a35447b094f154ed72ce860921832ff8a3464bb517d6ce

See more details on using hashes here.

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