Is there an alternative to pickle - save a dictionary (python)

前端 未结 3 1923
一生所求
一生所求 2021-01-14 04:04

I need to save a dictionary to a file, In the dictionary there are strings, integers, and dictionarys.

I did it by my own and it\'s not pretty and n

3条回答
  •  旧时难觅i
    2021-01-14 04:48

    Pickle is not safe when transfered by a untrusted 3rd party. Local files are just fine, and if something can replace files on your filesystem then you have a different problem.

    That said, if your dictionary contains nothing but string keys and the values are nothing but Python lists, numbers, strings or other dictionaries, then use JSON, via the json module.

提交回复
热议问题