摘要: 经过咨询库的作者,在最后留的那个问题的准确解法如下: import glom target = { 'data': { 'name': 'just_test', 'likes': [{'ball': 'basketball'}, {'ball': 'football'}, {'water': 'sw 阅读全文
posted @ 2020-12-06 23:52 阿布_alone 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 当我们要在一个文件夹及其子文件夹里面寻找特定类型的文件,我们可能会这样写代码: 没有子文件夹时 import os all_file = os.listdir('target_folder') target_file = [x for x in all_file if x.endswith('.py 阅读全文
posted @ 2020-12-06 23:36 阿布_alone 阅读(359) 评论(0) 推荐(0) 编辑
摘要: glom模块的使用 简单说下glom模块主要是处理结构化数据用的,安装pip install glom即可,下面就glom的方法参数做例子讲解。 glom 和模块同名的glom方法使用方法: .glom(target, spec, **kwargs) target参数是结构化数据,一般是json嵌套 阅读全文
posted @ 2020-12-06 23:16 阿布_alone 阅读(244) 评论(0) 推荐(0) 编辑
TOP