位置: IT常识 - 正文
推荐整理分享Python如何利用动态属性处理JSON数据源(python 动态),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:用python做动图,python 动态数据,python 动态数据,python 动态数据,pythondone,如何用python做动图,python 动态,如何用python做动图,内容如对您有帮助,希望把文章链接给更多的朋友!
利用动态属性处理JSON数据源
属性:在Python中,数据的属性和处理数据的方法统称属性。
元编程:用元类进行编程,元类→类→对象,元类比类更抽象,生成类的类。
1、使用动态属性访问JSON类数据
第一版:利用json.load(fp)审查数据
fromurllib.requestimporturlopenimportwarningsimportosimportjsonURL='http://www.oreilly.com/pub/sc/osconfeed'JSON='data/osconfeed.json'defload():ifnotos.path.exists(JSON):msg='downloading{}to{}'.format(URL,JSON)warnings.warn(msg)#如果需要下载就发出提醒。withurlopen(URL)asremote,open(JSON,'wb')aslocal:#在with语句中使用两个上下文管理器分别用于读取和保存远程文件。local.write(remote.read())withopen(JSON)asfp:returnjson.load(fp)#json.load函数解析JSON文件,返回Python原生对象。第二版:使用动态属性访问JSON类数据
第一版查阅深层数据的格式比较冗长,例如feed'Schedule'40,我们希望在读取属性上采用feed.Schedule.events[40].name这类方式来改进。并且第二版的类能递归,自动处理嵌套的映射和列表。
fromcollectionsimportabcclassFronenJSON():def__init__(self,mapping):self.__data=dict(mapping)#创建副本,同时确保处理的是字典。def__getattr__(self,name):#仅当没有指定名称的属性才调用__getattr__方法。ifhasattr(self,name):returngetattr(self.__data,name)else:returnFronenJSON.build(self.__data[name])@classmethoddef__build__(cls,obj):ifisinstance(obj,abc.Mapping):#判断obj是否是映射。returncls(obj)#创建FrozenJSON对象。elifisinstance(obj,abc.MutableSequence):return[cls.build(item)foriteminobj]#递归调用.build()方法,构建一个列表。else:#既不是字典也不是列表,则返回元素本身。returnobj分析: FronenJSON类的关键是__getattr__方法。仅当无法使用常规的方式获取属性(即在实例、类或超类中找不到指定的属性),解释器才会调用特殊的__getattr__方法。
相关推荐:《Python视频教程》
2、处理无效属性名
在Python中,由于关键字被保留,名称为关键字的属性是无效的。因此需要对第二版中的__init__进行改进:
def__init__(self,mapping):self.__data={}forkey,valueinmapping.items():ifkeyword.iskeyword(key):key+='_'#与Python关键字重复的key在尾部加上下划线。self.__data[key]=value3、使用特殊方法__new__
fromcollectionsimportabcclassFronenJSON():def__new__(cls,arg):#__new__是类方法,第一个参数是类本身cls。ifisinstance(arg,abc.Mapping):returnsuper().__new__(cls)#委托给超类object基类的__new__方法处理。elifisinstance(arg,abc.MutableSequence):#余下方法与原先的build方法一致。return[cls(item)foriteminarg]else:returnargdef__init__(self,mapping):self.__data={}forkey,valueinmapping.items():ifkeyword.iskeyword(key):key+='_'self.__data[key]=valuedef__getattr__(self,name):ifhasattr(self,name):returngetattr(self.__data,name)else:returnFronenJSON(self.__data[name])下一篇:Matery主题自定义(一)黑夜模式(华为mate主题)
友情链接: 武汉网站建设