道歉,如果这是一个菜鸟问题,因为我完全或是重复。
我在网络服务器上有一个我需要解析的文件。
该文件的位置为/var/www/html
,名为test.json
。
我想用python脚本解析它并返回version
{
"commit_id": "d44f19c",
"environment": "test",
"package_build_date": "15/05/2015",
"project": "devopstest",
"tags_at_commit": [
"v1.6.0-rc.1"
],
"version": "v1.6.0-rc.1"
}
任何帮助/指导赞赏
答案 0 :(得分:0)
只需使用导入json :
import json
with open('file.json', 'r') as f:
json_data = json.load(f)