I read the doc and was able to send transaction by message(). But I couldn't find how to add output
as SigLockedDustAllowanceOutput. It seems the default is SigLockedSingleOutput. The following the code I used to build tx. Please help, thanks.
for to_address in to_address_list:
outputs_list.append({
'address': to_address,
'amount': amount
})
client = iota_client.Client()
message = client.message(
seed=seed,
outputs=outputs_list
)