文件名称:jsonget:用于从 JSON 中提取值的命令行工具
文件大小:154KB
文件格式:ZIP
更新时间:2024-07-27 10:53:24
Go
获取 jsonget是一个命令行工具,用于从 JSON 中提取值。 这很有用,例如,当您curl JSON api 并且只想从中获取单个值时: % curl http://openweathermap.org/data/2.0/weather/city/524901 | jsonget main.temp 259.92 或多个换行符分隔的值: % curl http://openweathermap.org/data/2.0/weather/city/524901 | jsonget name main.temp wind.speed Moscow 259.92 2 安装 go get github.com/stvp/jsonget 用法 鉴于my.json : { " foo " : true , " bar " : { " baz " : 5 }, "
【文件预览】:
jsonget-master
----.gitignore(28B)
----main.go(1KB)
----README.md(2KB)
----json.go(5KB)
----CHANGELOG.md(438B)
----version.go(38B)
----test_json()
--------bad.json(18B)
--------good.json(225B)
--------big.json(772KB)
--------wildcards.json(206B)
--------array.json(110B)
--------empty.json(0B)
----json_test.go(6KB)