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.
我刚刚安装了 ultrajson (ujson),看看我是否不能让 json 解码更快(字符串到对象)。但是,我没有看到任何有关如何使用它的示例。
用普通的 json 它只是
import json my_object = json.loads(my_string)
将导入语句更改为import ujson as json
import ujson as json
然后,您可以保留程序的其他部分。