json & pickle 模塊
阿新 • • 發佈:2018-05-15
反序列化 write 字符 tor clas 轉換 模塊 cat img
json模塊
Json模塊提供了四個功能:dumps、dump、loads、load
#!/usr/bin/env python # -*- coding:utf-8 -*- import json dic = {‘k1‘:1,‘k2‘:2,‘k3‘:3} str_dic = json.dumps(dic) ##序列化:將一個字典轉換成一個字符串 print(type(str_dic),str_dic) #<class ‘str‘> {"k1": 1, "k2": 2, "k3": 3} #註意,json轉換完的字符串類型的字典中的字符串是由""表示的 dic2 = json.loads(str_dic)#loads和dumps反序列化:將一個字符串格式的字典轉換成一個字典 print(dic2)#{‘k1‘: 1, ‘k2‘: 2, ‘k3‘: 3} #註意,要用json的loads功能處理的字符串類型的字典中的字符串必須由""表示 list_dic = [1,[‘k1:1‘],‘a‘,‘b‘,‘c‘,[1,2,3]] #也可以處理嵌套的數據類型 str_dic = json.dumps(list_dic) print(type(list_dic),list_dic) #<class ‘list‘> [1, [‘k1:1‘], ‘a‘, ‘b‘, ‘c‘, [1, 2, 3]] str_dic2 = json.loads(str_dic)print(type(str_dic2),str_dic2) #<class ‘list‘> [1, [‘k1:1‘], ‘a‘, ‘b‘, ‘c‘, [1, 2, 3]]
import json f = open(‘json_file‘,‘w‘) dic = {‘k1‘:‘v1‘,‘k2‘:‘v2‘,‘k3‘:‘v3‘} json.dump(dic,f) #dump方法接收一個文件句柄,直接將字典轉換成json字符串寫入文件 f.close() f = open(‘json_file‘) dic2 = json.load(f) #load方法接收一個文件句柄,直接將文件中的json字符串轉換成數據結構返回load和dumpf.close() print(type(dic2),dic2) load和dump
import json f = open(‘file‘,‘w‘) json.dump({‘國籍‘:‘中國‘},f) ret = json.dumps({‘國籍‘:‘中國‘}) f.write(ret+‘\n‘) json.dump({‘國籍‘:‘美國‘},f,ensure_ascii=False) ret = json.dumps({‘國籍‘:‘美國‘},ensure_ascii=False) f.write(ret+‘\n‘) f.close()ensure_ascii關鍵字參數
Serialize obj to a JSON formatted str.(字符串表示的json對象) Skipkeys:默認值是False,如果dict的keys內的數據不是python的基本類型(str,unicode,int,long,float,bool,None),設置為False時,就會報TypeError的錯誤。此時設置成True,則會跳過這類key ensure_ascii:,當它為True的時候,所有非ASCII碼字符顯示為\uXXXX序列,只需在dump時將ensure_ascii設置為False即可,此時存入json的中文即可正常顯示。) If check_circular is false, then the circular reference check for container types will be skipped and a circular reference will result in an OverflowError (or worse). If allow_nan is false, then it will be a ValueError to serialize out of range float values (nan, inf, -inf) in strict compliance of the JSON specification, instead of using the JavaScript equivalents (NaN, Infinity, -Infinity). indent:應該是一個非負的整型,如果是0就是頂格分行顯示,如果為空就是一行最緊湊顯示,否則會換行且按照indent的數值顯示前面的空白分行顯示,這樣打印出來的json數據也叫pretty-printed json separators:分隔符,實際上是(item_separator, dict_separator)的一個元組,默認的就是(‘,’,’:’);這表示dictionary內keys之間用“,”隔開,而KEY和value之間用“:”隔開。 default(obj) is a function that should return a serializable version of obj or raise TypeError. The default simply raises TypeError. sort_keys:將數據根據keys的值進行排序。 To use a custom JSONEncoder subclass (e.g. one that overrides the .default() method to serialize additional types), specify it with the cls kwarg; otherwise JSONEncoder is used.其他參數說明
import json data = {‘username‘:[‘李華‘,‘二楞子‘],‘sex‘:‘male‘,‘age‘:16} json_dic2 = json.dumps(data,sort_keys=True,indent=2,separators=(‘,‘,‘:‘),ensure_ascii=False) print(json_dic2)json的格式化輸出
用於序列化的兩個模塊
- json,用於字符串 和 python數據類型間進行轉換
- pickle,用於python特有的類型 和 python的數據類型間進行轉換
pickle模塊提供了四個功能:dumps、dump(序列化,存)、loads(反序列化,讀)、load (不僅可以序列化字典,列表...可以把python中任意的數據類型序列化)
import pickle dic = {‘k1‘:‘v1‘,‘k2‘:‘v2‘,‘k3‘:‘v3‘} str_dic = pickle.dumps(dic) print(str_dic) #一串二進制內容 dic2 = pickle.loads(str_dic) print(dic2) #字典 import time struct_time = time.localtime(1000000000) print(struct_time) f = open(‘pickle_file‘,‘wb‘) pickle.dump(struct_time,f) f.close() f = open(‘pickle_file‘,‘rb‘) struct_time2 = pickle.load(f) print(struct_time2.tm_year)pickle
這時候機智的你又要說了,既然pickle如此強大,為什麽還要學json呢?
這裏我們要說明一下,json是一種所有的語言都可以識別的數據結構。
如果我們將一個字典或者序列化成了一個json存在文件裏,那麽java代碼或者js代碼也可以拿來用。
但是如果我們用pickle進行序列化,其他語言就不能讀懂這是什麽了~
所以,如果你序列化的內容是列表或者字典,我們非常推薦你使用json模塊
但如果出於某種原因你不得不序列化其他的數據類型,而未來你還會用python對這個數據進行反序列化的話,那麽就可以使用pickle
json & pickle 模塊