LoginSignup
1
1

More than 5 years have passed since last update.

JSONを整形して見やすくするワンライナー

Posted at

概要

JSONを整形して見やすくするワンライナーです。
pythonがインストールされているMacならターミナルからすぐに使えます。

コマンド

curl -s "<url>"|python -m json.tool

整形前

$ curl -s "https://auctions.yahooapis.jp/AuctionWebService/V2/json/search?appid=dj0zaiZpPU1aMWppaDVwUFFSTSZzPWNvbnN1bWVyc2VjcmV0Jng9MTc-&results=20&query=ipad"
loaded({"ResultSet":{"@attributes":{"totalResultsAvailable":"32269","totalResultsReturned":"20","firstResultPosition":"1"},"Result":{"UnitsWord":["iPad air2","iPad MINI","iPad Pro","iPad mini4","iPad AIR"],"Item":[{"AuctionID":"f181174186","Title":"\u25cf\u65b0\u54c1\u540c\u69d8\u25cfiPad mini Retina Wi-Fi 32GB \u30b7\u30eb\u30d0\u30fc\u25cf","CategoryId":"2084259337","Seller":{"Id":"mtm_store333","ItemListUrl":"http:\/\/auctions.yahooapis.jp\/AuctionWebService\/V2\/sellingList?sellerID=mtm_store333","RatingUrl":"http:\/\/auctions.yahooapis.jp\/AuctionWebService\/V1\/ShowRating?id=mtm_store333"},"ItemUrl":"http:\/\/auctions.yahooapis.jp\/AuctionWebService\/V2\/auctionItem?auctionID=f181174186","AuctionItemUrl":"http:\/\/page6.auctions.yahoo.co.jp\/jp\/auction\/f181174186","Image":"http:\/\/auctions.c.yimg.jp\/images.auctions.yahoo.co.jp\/image\/dr147\/auc0206\/users\/2\/9\/0\/8\/mtm_store333-thumb-1
  :

整形後

$ curl -s "https://auctions.yahooapis.jp/AuctionWebService/V2/json/search?appid=dj0zaiZpPU1aMWppaDVwUFFSTSZzPWNvbnN1bWVyc2VjcmV0Jng9MTc-&results=20&query=ipad"|sed -e "s/^loaded(//" -e "s/)$//"|python -m json.tool
{
    "ResultSet": {
        "@attributes": {
            "firstResultPosition": "1",
            "totalResultsAvailable": "32269",
            "totalResultsReturned": "20"
        },
        "Result": {
            "Item": [
                {
                    "AuctionID": "f181174186",
                    "AuctionItemUrl": "http://page6.auctions.yahoo.co.jp/jp/auction/f181174186",
                    "BidOrBuy": "24800.00",
                    "Bids": "0",
                    "CategoryId": "2084259337",
                    "CharityOption": {
                        "Proportion": "0"
                    },
  :
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1