How to install SimpleJson Package for Python

前端 未结 5 1751
名媛妹妹
名媛妹妹 2021-02-05 01:06

http://pypi.python.org/pypi/simplejson

I am just diving into the Python world and want to make a simple twitter application which requires the installation of simplejson

5条回答
  •  时光说笑
    2021-02-05 01:57

    You can import json as simplejson like this:

    import json as simplejson
    

    and keep backward compatibility.

提交回复
热议问题