You are viewing a single comment's thread from:

RE: Introducing Heisenberg, A Python framework to play Drugwars

in #utopian-io6 years ago

Sending custom_json is much easier using beem:

from beem import Steem
s = Steem()
s.wallet.unlock("my_wallet_password")
account = "holger80"
json_data =  {"username": account,"amount": "100"}
s.custom_json('dw-heist', json_data, required_posting_auths=[account])
Sort:  

You mean compared to steem-python? Because this one line in heisenberg :)

yes, compared to steem-python.