作者热门文章
- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我正在尝试从 Python 中进行比特币支付。在 bash 中,我通常会这样做:
bitcoin sendtoaddress <bitcoin address> <amount>
例如:
bitcoin sendtoaddress 1HoCUcbK9RbVnuaGQwiyaJGGAG6xrTPC9y 1.4214
如果成功,我会得到一个交易 ID 作为输出,但如果我尝试转移一个大于我的比特币余额的金额,我会得到以下输出:
error: {"code":-4,"message":"Insufficient funds"}
在我的 Python 程序中,我现在尝试按如下方式付款:
import subprocess
try:
output = subprocess.check_output(['bitcoin', 'sendtoaddress', address, str(amount)])
except:
print "Unexpected error:", sys.exc_info()
如果有足够的余额,它可以正常工作,但如果没有足够的余额,sys.exc_info()
会打印出来:
(<class 'subprocess.CalledProcessError'>, CalledProcessError(), <traceback object at 0x7f339599ac68>)
它不包括我在命令行上遇到的错误。所以我的问题是;如何从 Python 中获取输出的错误({"code":-4,"message":"Insufficient fund"}
)?
最佳答案
根据subprocess.check_output()
docs ,错误引发的异常有 output
可用于访问错误详细信息的属性:
try:
subprocess.check_output(...)
except subprocess.CalledProcessError as e:
print(e.output)
然后您应该能够分析此字符串并使用 json
模块解析错误详细信息:
if e.output.startswith('error: {'):
error = json.loads(e.output[7:]) # Skip "error: "
print(error['code'])
print(error['message'])
关于python - 如何从 Python subprocess.check_output() 捕获异常输出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24849998/
我是一名优秀的程序员,十分优秀!