Metadata-Version: 1.0
Name: curljson
Version: 0.9.0
Summary: curl with pretty json outputs
Home-page: https://github.com/mitnk/curljson
Author: mitnk
Author-email: w@mitnk.com
License: MIT
Description: 
        Home Page: https://github.com/mitnk/curljson
        
        Install
        -------
        ::
            $ pip install curljson
        
        Usages
        ------
        ::
            $ curljson -i https://httpbin.org/get
            HTTP/1.1 200 OK
            Connection: keep-alive
            Server: gunicorn/19.8.1
            Date: Mon, 23 Jul 2018 22:46:53 GMT
            Content-Type: application/json
            Content-Length: 166
            Access-Control-Allow-Origin: *
            Access-Control-Allow-Credentials: true
            Via: 1.1 vegur
        
            {
                "headers": {
                    "Accept": "*/*",
                    "Host": "httpbin.org",
                    "User-Agent": "curl/7.43.0",
                    "Connection": "close"
                },
                "origin": "12.13.7.19",
                "args": {},
                "url": "https://httpbin.org/get"
            }
        
            $ echo '{"bin": "curl", "lang": "Python"}' | curljson
            {
                "lang": "Python",
                "bin": "curl"
            }
        
Keywords: curl json pretty
Platform: UNKNOWN
