分享一個 Linux 環境下,強力的Python 小工具
阿新 • • 發佈:2019-07-25
場景
- 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" } ] } }
可見,這個小工具,在終端環境下的幫助還是很大的,值得一學