前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >python解析json脚本记录

python解析json脚本记录

作者头像
tea9
发布2023-03-06 08:49:28
4550
发布2023-03-06 08:49:28
举报
文章被收录于专栏:tea9的博客

json解析脚本

代码语言:javascript
复制

# json解析
def json1():
		
    with open("./apk_list",'r') as fp:
        lines = fp.readlines()
    lines = [line.strip() for line in lines]
    #print(lines)
    # 根据编号查询json
    json2="""
    {
        "4": {
                "id": 4,
                "title": "地铁跑酷",
                "url": "https://www.taptap.com/app/4",
                "file_path": "/f/202110/18/a/804698c5a9f73de6f9b75fd7797ed55a",
                "version_code": 32500,
                "version_name": "3.25.0",
                "developer_type": "企业开发者",
                "developer_name": "深圳市创梦天地科技有限公司"
        },
        "2422862": {
                "id": 2422862,
                "title": "压力山大",
                "url": "https://www.taptap.com/app/226725",
                "file_path": "/f/202111/16/a/7f8de9e38cbd5e7be1978749cb2cddd4",
                "version_code": 1,
                "version_name": "1.0",
                "developer_type": "企业开发者",
                "developer_name": "深圳乐乐无限科技有限公司"
        }
    }
    """
    test_str = "".join(lines)
    #print(type(test_str))
    #print(type(json2))
    text = demjson.decode(test_str)
    #print(text)
    #print(text["2422862"])
    #print(text["2422862"]["title"])
    #fp = file('test_json.txt', 'w')
    #json.dump(d, fp)
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档