分享一個 Linux 下的強力 Python 工具
作者:佚名
Linux 用戶經常需要在終端查看一些數據,從文件里看或者網絡協議獲取數據并查看。比如,查看文件里的json數據;比如,查看 etcd里存下的數據。
Linux 用戶經常需要在終端查看一些數據,從文件里看或者網絡協議獲取數據并查看。比如,查看文件里的json數據;比如,查看 etcd里存下的數據。
如果直接看 cat或者curl得到的數據,如果格式亂掉了 會很痛苦的,而 Python 的json.tool可以在終端里把得到的數據格式化。
形如:cat json.file|python-m json.tool
用法及示例
- # 終端操作 ,
- vim json.file
- # 寫入 如下內容:{ "code": 0,"data": "fine","error": "success" }
此時 cat json.file 看到的內容是 :
- { "code": 0,"data": "fine","error": "success" }
寫進去啥樣,就啥樣!
此時用上這個工具試試
- #終端執行
- cat json.file | python -m json.tool
- # 看到的內容會變成這樣:
- {
- "code": 0,
- "data": "fine",
- "error": "success"
- }
接下來再試試 etcd 的數據查看。
- # 直接 curl 一下:
- curl localhost:2379/v2/keys
- # 拿到這個
- {"action":"get","node":{"dir":true,"nodes":[{"key":"/NSQMetaData","dir":true,"modifiedIndex":5,"createdIndex":5},{"key":"/b2c_systech_nsq","dir":true,"modifiedIndex":6726335,"createdIndex":6726335},{"key":"/hello","value":"world","modifiedIndex":4,"createdIndex":4}]}}
- # 加上工具
- curl localhost:2379/v2/keys |python -m json.tool
- # 拿到這個
- {
- "action": "get",
- "node": {
- "dir": true,
- "nodes": [
- {
- "createdIndex": 5,
- "dir": true,
- "key": "/NSQMetaData",
- "modifiedIndex": 5
- },
- {
- "createdIndex": 6726335,
- "dir": true,
- "key": "/b2c_systech_nsq",
- "modifiedIndex": 6726335
- },
- {
- "createdIndex": 4,
- "key": "/hello",
- "modifiedIndex": 4,
- "value": "world"
- }
- ]
- }
- }
可見,這個小工具,在終端環境下的幫助還是很大的,值得一學。
責任編輯:華軒
來源:
cnblogs