使用Python将Numpy数组发送到用于Hangouts Chat API的webhook?

时间:2018-06-13 18:25:34

标签: python hangouts-chat

我在Google Hangouts Chat的聊天室中设置了一个webhook。

我可以成功运行他们的示例代码,该代码会从聊天中与webhook相关联的机器人生成消息:

from httplib2 import Http
from json import dumps

#
# Hangouts Chat incoming webhook quickstart
#
def main():
    url = '<INCOMING-WEBHOOK-URL>'
    bot_message = {
        'text' : 'Hello World!'}

    message_headers = { 'Content-Type': 'application/json; charset=UTF-8'}

    http_obj = Http()

    response = http_obj.request(
        uri=url,
        method='POST',
        headers=message_headers,
        body=dumps(bot_message),
    )

    print(response)

if __name__ == '__main__':
    main()

但是当我尝试使用代码发送Numpy数组时:

bot_message = {
            'text' : NumpyArrayObject}

我收到错误:

TypeError: Object of type 'ndarray' is not JSON serializable

使用Python列表我收到错误:

"description": "Invalid JSON payload received. Unknown name \\"text\\" at \'message\': Proto field is not repeating, cannot start list."\n          }\n        ]\n      }\n    ]\n  }\n}\n')

我该怎么办?

1 个答案:

答案 0 :(得分:0)

错误的原因是NumPy数组是一个对象,可能是各种struct / binary / metadata,并且不能直接序列化(转换为字节流)可以保存到JSON格式。为此,您需要先使用ndarray.tolist()之类的内容将数组转换为可以的内容。有关具体信息,请参阅this SO answer