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])
You mean compared to steem-python? Because this one line in heisenberg :)
yes, compared to steem-python.