glom模組的使用(一)

公號_python學習開發發表於2018-10-25

glom模組的使用

簡單說下glom模組主要是處理結構化資料用的,安裝簡單pip install glom即可,下面就glom的方法引數做例子講解。

glom

和模組同名的glom方法使用方法:

.glom(target, spec, **kwargs)
target引數是結構化資料,一般是json巢狀型別。
spec引數是定義模板
**kwargs包含鍵值型別的引數:default,skip_exc,scope

我們來看個簡單的例子、

target = {'a': {'b':{'c':{'d':{'e':[1,2,3,4,5,6,7]}}}}}spec = 'a.b.c.d.e'output = glom(target, spec)print(output)#輸出[1, 2, 3, 4, 5, 6, 7]複製程式碼

我們嘗試下更多玩法:

target = {'a': {'b':{'c':{'d':{'e':[1,2,3,4,5,6,7]}}}}}spec = {'aa':'a.b.c.d.e'}output = glom(target, spec)print(output)#輸出{'aa': [1, 2, 3, 4, 5, 6, 7]}target2 = {'a': {'b':{'c':[{'d':[1,2,3,4]},{'d':[4,5,6,7]}]}}}spec2 = {'test':('a.b.c',['d'])}output2=glom(target2, spec2)print(output2)#輸出{'test': [[1, 2, 3, 4], [4, 5, 6, 7]]}複製程式碼

再來一個官方的例子,綜合運用一下:

target = {'system': {'planets': [{'name': 'earth', 'moons': 1},                                 {'name': 'jupiter', 'moons': 69}]}}spec = {'names': ('system.planets', ['name']),            'moons': ('system.planets', ['moons'])}輸出:{'moons': [1, 69], 'names': ['earth', 'jupiter']}複製程式碼

通過上面的一些例子可以看出,spec基礎用法就是''裡面依次寫鍵名.鍵名.鍵名.鍵名,

另外需要注意的一點,如果列表裡有字典取其值的話要求是鍵名必須相同就上面的'd'鍵。

.
可以看出glom和json的取得相比省去了很多的[].使用方便,另外spec的表示式還支援運用表示式比如lambda。
再來看一個運用引數比較全的例子

target = {'a': [0, 1, 2]} #給定一個結構化資料spec = {'a': ('a', [lambda x:x/x])}#獲取a的值裡面元素的每個元素除以本身的值。output = glom(target, spec,default='666',skip_exc=ZeroDivisionError)print(output)#輸出666複製程式碼

上面的結果主要演示的是spec的高階用法和第三個引數的用法。上面計算0/0的時候報錯,錯誤型別ZeroDivisionError,所以我們讓ZeroDivisionError跳過了錯誤,同時配合default給定一個錯誤時的預設值。
但是如果出現下面的情況怎麼辦呢?

t={'a': {'b.c':{'c':{'d':{'e':[1,2,3,4,5,6,7]}}}}}s= {'aa':'a.b.c.c'}print(glom(t,s))複製程式碼

接下來讓我們看Path方法

Path

glom.Path(*path_parts)
Path objects specify explicit paths when the default 'a.b.c'-style general access syntax won’t work or isn’t desirable. Use this to wrap ints, datetimes, and other valid keys, as well as strings with dots that shouldn’t be expanded,下面具體的看例子。

from glom import glom,Pathtarget2 = {'a': {'b':{'c':[{'d':[1,2,3,4]},{'d':[4,5,6,7]}],'w':{'3.c':'e'}}}}output2_1=Path(glom(target2,Path('a','b','w','3.c')))print(output2_1)#輸出e複製程式碼

然後我們回過頭來看看上面使用spec的方式時出現的錯誤

t={'a': {'b.c':{'c':{'d':{'e':[1,2,3,4,5,6,7]}}}}}print(glom(t,{'aa':Path('a','b.c','c')}))#輸出{'aa': {'d': {'e': [1, 2, 3, 4, 5, 6, 7]}}}複製程式碼

注意點:

1.path的路徑的層次關係必須是緊挨著。比如上面我是直接Path('a','c')就會報錯了。
2.path不能取類似下面這種的列表裡的鍵需要配合glom處理。
Path('system','planets','name')或者Path('system','planets',['name'])都不行。

target = {'system': {'planets': [{'name': 'earth', 'moons': 1},                                 {'name': 'jupiter', 'moons': 69}]}}複製程式碼

Literal

class glom.Literal(value)

更多文章關注公眾號:python學習開發

部落格園地址:www.cnblogs.com/c-x-a


相關文章