Python 连接到 Solace 队列的库

Python Library to Connect to Solace Queue

我想使用 python 将 json 个对象发送到 Solace 队列。 Python 中是否有任何库可用于 Solace 队列。 如果是,请让我知道图书馆以及如何使用它。 谢谢你。 -普拉文

您可以使用 Python、documentation 中的 JSON 库。 假设您已经有了这样的发送者和接收者 example。下面给出一个简单的代码:

import json

# Create a json object
sample_data = {'name':'Praveen'}
json_data = json.dumps(sample_data)
# Use sender
event.sender.send(json_data)

你也可以看看另一个example and link to code on Github