You've already forked httpie-cli
mirror of
https://github.com/httpie/cli.git
synced 2026-04-24 19:53:55 +02:00
02622a4135
It is now possible to print any combination of the following
request-response bits:
- Request headers (H)
- Request body (B)
- Response headers (h)
- Response body (b)
The output is controlled by the --print / -p option which
defaults to "hb" (i.e., response headers and response body).
Note that -p was previously shortcut for --prety.
Closes #29.
8 lines
111 B
Python
8 lines
111 B
Python
"""
|
|
HTTPie - cURL for humans.
|
|
|
|
"""
|
|
__author__ = 'Jakub Roztocil'
|
|
__version__ = '0.1.7-dev'
|
|
__licence__ = 'BSD'
|