新聞中心
這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
分享一個Linux下的強力Python工具
Linux 用戶經(jīng)常需要在終端查看一些數(shù)據(jù),從文件里看或者網(wǎng)絡協(xié)議獲取數(shù)據(jù)并查看。比如,查看文件里的json數(shù)據(jù);比如,查看 etcd里存下的數(shù)據(jù)。

目前成都創(chuàng)新互聯(lián)公司已為近千家的企業(yè)提供了網(wǎng)站建設、域名、網(wǎng)站空間、網(wǎng)站運營、企業(yè)網(wǎng)站設計、讓胡路網(wǎng)站維護等服務,公司將堅持客戶導向、應用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。
如果直接看 cat或者curl得到的數(shù)據(jù),如果格式亂掉了 會很痛苦的,而 Python 的json.tool可以在終端里把得到的數(shù)據(jù)格式化。
形如:cat json.file|python-m json.tool
用法及示例
- # 終端操作 ,
- vim json.file
- # 寫入 如下內(nèi)容:{ "code": 0,"data": "fine","error": "success" }
此時 cat json.file 看到的內(nèi)容是 :
- { "code": 0,"data": "fine","error": "success" }
寫進去啥樣,就啥樣!
此時用上這個工具試試
- #終端執(zhí)行
- cat json.file | python -m json.tool
- # 看到的內(nèi)容會變成這樣:
- {
- "code": 0,
- "data": "fine",
- "error": "success"
- }
接下來再試試 etcd 的數(shù)據(jù)查看。
- # 直接 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"
- }
- ]
- }
- }
可見,這個小工具,在終端環(huán)境下的幫助還是很大的,值得一學。
分享題目:分享一個Linux下的強力Python工具
文章分享:http://www.fisionsoft.com.cn/article/cccspdj.html


咨詢
建站咨詢
