Working with the `authzed-py` client library, it a...
# spicedb
h
Working with the
authzed-py
client library, it appears that the
LookupResources
method on
authzed.api.v1.Client
is of type
grpc.UnaryStreamMultiCallable
. How do I select the async interface to have access to
grpc.aio.UnaryStreamMultiCallable
so that
LookupResources
returns an
AsyncIterator
instead of a synchronous
Iterator
? There appears to be an async interface available in the code, but it's not immediately evident to me how it's exposed.