Skip to main content

No project description provided

Project description

polywrap-client

Python implementation of the polywrap client.

Usage

Configure and Instantiate

Use the polywrap-uri-resolvers package to configure resolver and build config for the client.

from polywrap_uri_resolvers import (
    FsUriResolver,
    SimpleFileReader
)
from polywrap_core import Uri, ClientConfig
from polywrap_client import PolywrapClient
from polywrap_client_config_builder import PolywrapClientConfigBuilder

builder = (
    PolywrapClientConfigBuilder()
    .add_resolver(FsUriResolver(file_reader=SimpleFileReader()))
    .set_env(Uri.from_str("ens/foo.eth"), {"foo": "bar"})
    .add_interface_implementations(
        Uri.from_str("ens/foo.eth"), [
            Uri.from_str("ens/bar.eth"),
            Uri.from_str("ens/baz.eth")
        ]
    )
)
config = builder.build()
client = PolywrapClient(config)

Invoke

Invoke a wrapper.

uri = Uri.from_str(
    'fs/<path to wrapper>'  # Example uses simple math wrapper
)
args = {
    "arg1": "123",  # The base number
    "obj": {
        "prop1": "1000",  # multiply the base number by this factor
    },
}
result = client.invoke(uri=uri, method="method", args=args, encode_result=False)
assert result == "123000"

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

polywrap_client-0.1.0a35.tar.gz (3.7 kB view hashes)

Uploaded Source

Built Distribution

polywrap_client-0.1.0a35-py3-none-any.whl (4.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