httpie-cli/README.rst

152 lines
6.0 KiB
ReStructuredText
Raw Normal View History

2012-03-05 00:48:06 +01:00
HTTPie: cURL for humans
=======================
2012-02-25 13:39:38 +01:00
2012-03-05 00:48:06 +01:00
**HTTPie is a CLI HTTP utility** built out of frustration with existing tools. The goal is to make CLI interaction with HTTP-based services as human-friendly as possible.
2012-03-04 11:54:27 +01:00
2012-03-05 00:48:06 +01:00
HTTPie does so by providing an ``http`` command that allows for issuing arbitrary HTTP requests using a **simple and natural syntax** and displaying **colorized responses**:
2012-03-04 11:54:27 +01:00
2012-03-05 00:48:06 +01:00
.. image:: https://github.com/jkbr/httpie/raw/master/httpie.png
:alt: HTTPie compared to cURL
2012-02-25 13:39:38 +01:00
2012-03-05 00:48:06 +01:00
Under the hood, HTTPie uses the excellent `Requests <http://python-requests.org>`_ and `Pygments <http://pygments.org/>`_ Python libraries.
2012-02-25 14:42:06 +01:00
2012-03-05 00:48:06 +01:00
Installation
------------
2012-02-25 13:39:38 +01:00
2012-03-05 00:48:06 +01:00
The latest **stable version** of HTTPie can always be installed (or updated to) via `pip <http://www.pip-installer.org/en/latest/index.html>`_::
pip install -U httpie
2012-03-05 00:48:06 +01:00
Or, you can install the **development version** directly from GitHub:
.. image:: https://secure.travis-ci.org/jkbr/httpie.png
:target: http://travis-ci.org/jkbr/httpie
:alt: Build Status of the master branch
::
pip install -U https://github.com/jkbr/httpie/tarball/master
2012-02-25 13:39:38 +01:00
2012-03-05 00:48:06 +01:00
Usage
-----
Hello world::
http GET httpie.org
Synopsis::
http [flags] METHOD URL [items]
2012-02-25 13:39:38 +01:00
2012-03-05 00:48:06 +01:00
There are three types of key-value pair items available:
2012-02-25 13:47:23 +01:00
2012-03-05 00:48:06 +01:00
Headers
Arbitrary HTTP headers. The ``:`` character is used to separate a header's name from its value, e.g., ``X-API-Token:123``.
2012-02-25 13:47:23 +01:00
2012-03-05 00:48:06 +01:00
Simple data items
Data items are included in the request body. Depending on the ``Content-Type``, they are automatically serialized as a JSON ``Object`` (default) or ``application/x-www-form-urlencoded`` (the ``-f`` flag). Data items use ``=`` as the separator, e.g., ``hello=world``.
2012-02-25 13:47:23 +01:00
2012-03-05 00:48:06 +01:00
Raw JSON items
This item type is needed when ``Content-Type`` is JSON and a field's value is a ``Boolean``, ``Number``, nested ``Object`` or an ``Array``, because simple data items are always serialized as ``String``. E.g. ``pies=[1,2,3]``.
Examples
^^^^^^^^
::
http PATCH api.example.com/person/1 X-API-Token:123 name=John email=john@example.org age:=29
The following request is issued::
2012-02-25 13:47:23 +01:00
PATCH /person/1 HTTP/1.1
User-Agent: HTTPie/0.1
X-API-Token: 123
Content-Type: application/json; charset=utf-8
2012-03-05 00:48:06 +01:00
{"name": "John", "email": "john@example.org", "age": 29}
2012-02-27 11:54:41 +01:00
2012-03-05 00:48:06 +01:00
It can easily be changed to a 'form' request using the ``-f`` (or ``--form``) flag, which produces::
2012-03-05 00:48:06 +01:00
PATCH /person/1 HTTP/1.1
User-Agent: HTTPie/0.1
X-API-Token: 123
Content-Type: application/x-www-form-urlencoded; charset=utf-8
2012-03-05 00:48:06 +01:00
age=29&name=John&email=john%40example.org
2012-03-05 00:48:06 +01:00
A whole request body can be passed in via ``stdin`` instead::
2012-02-25 13:39:38 +01:00
2012-03-05 00:48:06 +01:00
echo '{"name": "John"}' | http PATCH example.com/person/1 X-API-Token:123
# Or:
http POST example.com/person/1 X-API-Token:123 < person.json
2012-02-25 13:47:23 +01:00
2012-02-27 11:54:41 +01:00
2012-03-05 00:48:06 +01:00
Flags
^^^^^
Most of the flags mirror the arguments understood by ``requests.request``. See ``http -h`` for more details::
2012-03-04 11:22:09 +01:00
usage: http [-h] [--version] [--json | --form] [--traceback]
[--pretty | --ugly] [--headers | --body] [--style STYLE]
[--auth AUTH] [--verify VERIFY] [--proxy PROXY]
[--allow-redirects] [--file PATH] [--timeout TIMEOUT]
METHOD URL [items [items ...]]
2012-03-04 02:48:31 +01:00
HTTPie - cURL for humans.
positional arguments:
2012-03-04 11:22:09 +01:00
METHOD HTTP method to be used for the request (GET, POST,
2012-03-04 02:48:31 +01:00
PUT, DELETE, PATCH, ...).
URL Protocol defaults to http:// if the URL does not
include it.
2012-03-04 11:22:09 +01:00
items HTTP header (key:value), data field (key=value) or raw
JSON field (field:=value).
2012-03-04 02:48:31 +01:00
optional arguments:
-h, --help show this help message and exit
2012-03-04 11:22:09 +01:00
--version show program's version number and exit
2012-03-04 02:48:31 +01:00
--json, -j Serialize data items as a JSON object and set Content-
Type to application/json, if not specified.
--form, -f Serialize data items as form values and set Content-
Type to application/x-www-form-urlencoded, if not
specified.
2012-03-04 11:22:09 +01:00
--traceback Print exception traceback should one occur.
--pretty, -p If stdout is a terminal, the response is prettified by
default (colorized and indented if it is JSON). This
flag ensures prettifying even when stdout is
redirected.
2012-03-04 02:48:31 +01:00
--ugly, -u Do not prettify the response.
--headers, -t Print only the response headers.
--body, -b Print only the response body.
--style STYLE, -s STYLE
Output coloring style, one of autumn, borland, bw,
colorful, default, emacs, friendly, fruity, manni,
monokai, murphy, native, pastie, perldoc, solarized,
tango, trac, vim, vs. Defaults to solarized.
--auth AUTH, -a AUTH username:password
--verify VERIFY Set to "yes" to check the host's SSL certificate. You
can also pass the path to a CA_BUNDLE file for private
certs. You can also set the REQUESTS_CA_BUNDLE
environment variable.
--proxy PROXY String mapping protocol to the URL of the proxy (e.g.
http:foo.bar:3128).
--allow-redirects Set this flag if full redirects are allowed (e.g. re-
POST-ing of data at new ``Location``)
--file PATH File to multipart upload
--timeout TIMEOUT Float describes the timeout of the request (Use
socket.setdefaulttimeout() as fallback).
2012-03-04 13:33:18 +01:00
2012-03-05 00:48:06 +01:00
Contributors
------------
2012-03-05 00:48:06 +01:00
`View contributors on GitHub <https://github.com/jkbr/httpie/contributors>`_.
2012-03-05 00:48:06 +01:00
Changelog
---------
2012-03-04 13:33:18 +01:00
2012-03-05 00:48:06 +01:00
* `0.1.6 <https://github.com/jkbr/httpie/compare/0.1.4...0.1.6>`_ (2012-03-04)