From 81798ad537be2e2f2b0133e5c46e47ac85739555 Mon Sep 17 00:00:00 2001 From: Chris Faulkner Date: Sat, 3 Mar 2012 14:09:13 -0800 Subject: [PATCH 1/2] Typo. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d9d92ed2..d3d18401 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ## HTTPie: cURL for humans -HTTPie is a CLI frontend for [python-requests](http://python-requests.org) built out of frustration. It provides an `http` command that can be used to easily issue HTTP requests. It is meant to be used by humans to interact with HTTP-based APIs and web servers. The response headers are colorized and the body is syntax-highlighed if its `Content-Type` is known to [Pygments](http://pygments.org/) (unless the output is redirected). +HTTPie is a CLI frontend for [python-requests](http://python-requests.org) built out of frustration. It provides an `http` command that can be used to easily issue HTTP requests. It is meant to be used by humans to interact with HTTP-based APIs and web servers. The response headers are colorized and the body is syntax-highlighted if its `Content-Type` is known to [Pygments](http://pygments.org/) (unless the output is redirected). ![httpie](https://github.com/jkbr/httpie/raw/master/httpie.png) From 5d3176115a0d8792620730c2ab67066b99d46109 Mon Sep 17 00:00:00 2001 From: Chris Faulkner Date: Sat, 3 Mar 2012 14:12:49 -0800 Subject: [PATCH 2/2] Correct usage string in README. --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index d3d18401..55ba5c13 100644 --- a/README.md +++ b/README.md @@ -35,11 +35,10 @@ The data to be sent can also be passed via `stdin`: Most of the flags mirror the arguments you would use with `requests.request`. See `http -h`: - usage: httpie.py [-h] [--json | --form] [--traceback] [--ugly] - [--headers | --body] [--style STYLE] [--auth AUTH] - [--verify VERIFY] [--proxy PROXY] [--allow-redirects] - [--file PATH] [--timeout TIMEOUT] - method URL [item [item ...]] + usage: http [-h] [--json | --form] [--traceback] [--ugly] [--headers | --body] + [--style STYLE] [--auth AUTH] [--verify VERIFY] [--proxy PROXY] + [--allow-redirects] [--file PATH] [--timeout TIMEOUT] + method URL [item [item ...]] HTTPie - cURL for humans.