woodglue.client¶
Async JSON-RPC 2.0 client with typed responses.
Async JSON-RPC 2.0 client for woodglue servers.
WoodglueClient makes typed RPC calls, optionally resolving return types
from x-global-ref in the OpenAPI spec. Uses Tornado's AsyncHTTPClient.
WoodglueRpcError
¶
Bases: Exception
Raised when the server returns a JSON-RPC error response.
Source code in src/woodglue/client.py
WoodglueClient
¶
Async client for woodglue JSON-RPC servers.
Optionally loads the OpenAPI spec to auto-resolve return types from
x-global-ref vendor extensions.
Resolution priority on call():
1. Explicit return_type parameter
2. resolver callable (receives the x-global-ref string)
3. Type from load_spec() if loaded
4. Return raw dict/primitive
Source code in src/woodglue/client.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 | |
load_spec(strict=False)
async
¶
Fetch /docs/openapi.json and resolve x-global-ref types.
With strict=True, raises ImportError if any gref cannot be
resolved. With strict=False, skips unresolvable grefs.
Source code in src/woodglue/client.py
call(method, *, return_type=None, resolver=None, **kwargs)
async
¶
Call a JSON-RPC method and return the deserialized result.
kwargs are sent as the JSON-RPC params object. BaseModel
values in kwargs are serialized via model_dump(mode="json").