-
Holger Nahrstaedt authored
Formatting of all doc parts improved Logo and icon added Doc structure improved quickstart improved
Holger Nahrstaedt authoredFormatting of all doc parts improved Logo and icon added Doc structure improved quickstart improved
beemapi.websocket.rst 487 B
beemapi.websocket
This class allows subscribe to push notifications from the Steem node.
from pprint import pprint
from beemapi.websocket import SteemWebsocket
ws = SteemWebsocket(
"wss://gtg.steem.house:8090",
accounts=["test"],
on_block=print,
)
ws.run_forever()