基于字段声明构建新dict的简单方法

preparer的Python项目详细描述


TravisCI Build StatusCoverage StatusRequirements Status


基于字段声明构建新dict的简单方法。

如何安装

pip install preparer

如何使用

frompreparerimportFieldsPreparer,SubPreparer,CollectionSubPreparerxfiles_game={'description':'As an extension of one of the most long-running...','game_id':1,'genres':[{'genre_category':'Basic Genres','genre_category_id':1,'genre_id':2,'genre_name':'Adventure'},{'genre_category':'Perspective','genre_category_id':2,'genre_id':7,'genre_name':'1st-person'},{'genre_category':'Narrative Theme/Topic','genre_category_id':8,'genre_id':55,'genre_name':'Detective / Mystery'},{'genre_category':'Setting','genre_category_id':10,'genre_id':8,'genre_name':'Sci-Fi / Futuristic'},{'genre_category':'Other Attributes','genre_category_id':6,'genre_id':82,'genre_name':'Licensed Title'}],'moby_score':3.8,'moby_url':'http://www.mobygames.com/game/x-files-game','num_votes':53,'official_url':None,'platforms':[{'first_release_date':'1998','platform_id':3,'platform_name':'Windows'},{'first_release_date':'1998-06','platform_id':74,'platform_name':'Macintosh'},{'first_release_date':'1999','platform_id':6,'platform_name':'PlayStation'}],'sample_cover':{'height':927,'image':'http://www.mobygames.com/images/covers/l/3-the-x-files-game...','platforms':['Windows'],'thumbnail_image':'http://www.mobygames.com/images/covers/s/3-the-x-files...','width':800},'sample_screenshots':[{'caption':'Mulder and Special Agent Willmore','height':480,'image':'http://www.mobygames.com/images/shots/l/86087-the-x-files...','thumbnail_image':'http://www.mobygames.com/images/shots/s/86087-the...','width':640},{'caption':'Title screen (from intro)','height':480,'image':'http://www.mobygames.com/images/shots/l/313897-the-x-files-game...','thumbnail_image':'http://www.mobygames.com/images/shots/s/313897-the-x...','width':640},{'caption':'Gillian Anderson (from intro)','height':480,'image':'http://www.mobygames.com/images/shots/l/313919-the-x-files-game...','thumbnail_image':'http://www.mobygames.com/images/shots/s/313919-the-x...','width':640},{'caption':'David Duchovny (from intro)','height':480,'image':'http://www.mobygames.com/images/shots/l/313908-the-x-files-game-windows...','thumbnail_image':'http://www.mobygames.com/images/shots/s/313908-the-x-files...','width':640}],'title':'The X-Files Game'}preparer=FieldsPreparer(fields={'id':'game_id','title':'title','description':'description'})cover_preparer=FieldsPreparer(fields={'image':'image','thumbnail':'thumbnail_image'})preparer_with_cover=FieldsPreparer(fields={'id':'game_id','title':'title','description':'description','cover':SubPreparer('sample_cover',cover_preparer)})screenshot_preparer=FieldsPreparer(fields={'caption':'caption','image':'image','thumbnail':'thumbnail_image'})preparer_with_cover_and_screenshots=FieldsPreparer(fields={'id':'game_id','title':'title','description':'description','cover':SubPreparer('sample_cover',cover_preparer),'screenshots':CollectionSubPreparer('sample_screenshots',screenshot_preparer)})
>>>importpprint>>>pp=pprint.PrettyPrinter(indent=4)>>>pp.pprint(preparer.prepare(xfiles_game)){'description':'As an extension of one of the most long-running...','id':1,'title':'The X-Files Game'}>>>pp.pprint(preparer_with_cover.prepare(xfiles_game)){'cover':{'image':'http://www.mobygames.com/images/covers/l/3-the-x-files-game...','thumbnail':'http://www.mobygames.com/images/covers/s/3-the-x-files...'},'description':'As an extension of one of the most long-running...','id':1,'title':'The X-Files Game'}>>>pp.pprint(preparer_with_cover_and_screenshots.prepare(xfiles_game)){'cover':{'image':'http://www.mobygames.com/images/covers/l/3-the-x-files-game...','thumbnail':'http://www.mobygames.com/images/covers/s/3-the-x-files...'},'description':'As an extension of one of the most long-running...','id':1,'screenshots':[{'caption':'Mulder and Special Agent Willmore','image':'http://www.mobygames.com/images/shots/l/86087-the-x-files...','thumbnail':'http://www.mobygames.com/images/shots/s/86087-the...'},{'caption':'Title screen (from intro)','image':'http://www.mobygames.com/images/shots/l/313897-the-x-files-game...','thumbnail':'http://www.mobygames.com/images/shots/s/313897-the-x...'},{'caption':'Gillian Anderson (from intro)','image':'http://www.mobygames.com/images/shots/l/313919-the-x-files-game...','thumbnail':'http://www.mobygames.com/images/shots/s/313919-the-x...'},{'caption':'David Duchovny (from intro)','image':'http://www.mobygames.com/images/shots/l/313908-the-x-files-game-windows...','thumbnail':'http://www.mobygames.com/images/shots/s/313908-the-x-files...'}],'title':'The X-Files Game'}

有关更多代码示例,请检查https://github.com/allisson/python-preparer/tree/master/examples

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
将小时和分钟添加到特定时间   java计算三维椭圆轨道上的点   java在JXDatePicker中禁用未来日期   尝试从数据库检索密码值时出现java错误   文本区域中的swing格式。JAVA   ColdFusion 10中的java BouncyCastle库   java HBase mapreduce部分未运行   java为什么公共类需要导入到包中而不是自己的包中?   java如何使用Gson为多个JSON对象编写TypeAdapter?   函数式编程Java 8添加元素的方法   java部署TextFairy,但在构建渐变时看到错误   java FindBugs EI_EXPOSE_REP bug是否只关注日期?   http Java URLConnection:如何确定web文件的大小?   jndi从LDAP条目(名称相同)中获取所有值,并将它们存储在带有Java的Lotus Notes中   筛选结果为HBase时的java OutofOrdersCannerExtenception   java Apache POI SXSSFSheet。getRow()返回null假阳性   关于星型模式的java   在Java中生成链表时出现异常