Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 python 将 json 对象发送到 Solace 队列。Python 中是否有任何库可以与 Solace 队列一起使用。如果是,请让我知道图书馆以及如何使用它。谢谢你。-普拉文
您可以使用JSONPython 中的库,文档。假设您已经有了这个例子的发送者和接收者。下面给出一个简单的代码:
JSON
import json # Create a json object sample_data = {'name':'Praveen'} json_data = json.dumps(sample_data) # Use sender event.sender.send(json_data)
您还可以查看另一个示例并链接到Github上的代码。