You are viewing a single comment's thread from:
RE: Project txJsonRpcQueue: (Non-Low-level-API-compatible) rewrite of asyncsteem/asyncsteem3 Python STEEM JSON-RPC client lib.
A small but important update for the txjsonrpcqueue API.
For Twisted, instead of
from txjsonrpcqueue import TxWildcardQueue as WildcardQueue
from txjsonrpcqueue import TxRpcForwarder as RpcForwarder
the import should now look like:
from txjsonrpcqueue import WildcardQueue, RpcForwarder
For Python 3 asyncio, instead of:
from txjsonrpcqueue import AioWildcardQueue as WildcardQueue
from txjsonrpcqueue import AioRpcForwarder as RpcForwarder
the import should now look like:
from txjsonrpcqueue.asyncio import WildcardQueue, RpcForwarder