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

config = ClientConfig(
    resolver=FsUriResolver(file_reader=SimpleFileReader())
)

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
    },
}
options: InvokerOptions[UriPackageOrWrapper] = InvokerOptions(
    uri=uri, method="method", args=args, encode_result=False
)
result = await client.invoke(options)
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.0a19.tar.gz (3.1 kB view hashes)

Uploaded Source

Built Distribution

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