如何用python解析来自websocket的数据?
Posted
技术标签:
【中文标题】如何用python解析来自websocket的数据?【英文标题】:how to parse data from websocket with python? 【发布时间】:2016-06-10 03:05:09 【问题描述】:我想要一些通过 websocket 发送的数据。 我可以使用像 urllib 这样的 python 我怎样才能做到这一点? 抱歉我的英语很差,感谢您阅读我的问题
【问题讨论】:
【参考方案1】:如果只是解析数据,则取决于数据的格式。如果您收到 JSON 作为响应,您可以执行 json.loads() 并将检索到的值视为 python 字典。
如果您正在查看一些处理 websockets 的 python 库/示例,请查看: https://github.com/makaimc/python-websockets-example
【讨论】:
以上是关于如何用python解析来自websocket的数据?的主要内容,如果未能解决你的问题,请参考以下文章
如何用熊猫解析大量txt文件并以某种方式了解表格的每个原始文件来自哪个文件[重复]