pythonのSOAPクライアントであるsudsを使ってSOAPしていたら、返ってくるデータが巨大すぎて、ファイルに吐いて眺めたくなったので
with open(file, "w") as f: f.write(soap_result)
をしたら表題のエラーが出た。
with open(file, "w") as f: f.write(str(soap_result))
ってやらないといけなかった。
pythonのSOAPクライアントであるsudsを使ってSOAPしていたら、返ってくるデータが巨大すぎて、ファイルに吐いて眺めたくなったので
with open(file, "w") as f: f.write(soap_result)
をしたら表題のエラーが出た。
with open(file, "w") as f: f.write(str(soap_result))
ってやらないといけなかった。