2020-06-16 13:01:48 +02:00
|
|
|
|
"""
|
2019-08-30 11:32:14 +02:00
|
|
|
|
CLI arguments definition.
|
2012-04-25 01:32:53 +02:00
|
|
|
|
|
2020-06-16 13:01:48 +02:00
|
|
|
|
"""
|
2019-08-31 15:17:10 +02:00
|
|
|
|
from argparse import (FileType, OPTIONAL, SUPPRESS, ZERO_OR_MORE)
|
2016-11-24 00:58:41 +01:00
|
|
|
|
from textwrap import dedent, wrap
|
2012-07-30 10:58:16 +02:00
|
|
|
|
|
2014-04-28 23:33:30 +02:00
|
|
|
|
from httpie import __doc__, __version__
|
2019-08-31 15:17:10 +02:00
|
|
|
|
from httpie.cli.argparser import HTTPieArgumentParser
|
|
|
|
|
from httpie.cli.argtypes import (
|
2020-06-16 12:25:46 +02:00
|
|
|
|
KeyValueArgType, SessionNameValidator,
|
2020-05-27 15:58:15 +02:00
|
|
|
|
readable_file_arg,
|
2019-08-31 15:17:10 +02:00
|
|
|
|
)
|
|
|
|
|
from httpie.cli.constants import (
|
2020-05-27 15:58:15 +02:00
|
|
|
|
DEFAULT_FORMAT_OPTIONS, OUTPUT_OPTIONS,
|
|
|
|
|
OUTPUT_OPTIONS_DEFAULT, OUT_REQ_BODY, OUT_REQ_HEAD,
|
2019-08-31 15:17:10 +02:00
|
|
|
|
OUT_RESP_BODY, OUT_RESP_HEAD, PRETTY_MAP, PRETTY_STDOUT_TTY_ONLY,
|
2020-09-28 12:16:57 +02:00
|
|
|
|
RequestType, SEPARATOR_GROUP_ALL_ITEMS, SEPARATOR_PROXY,
|
2020-09-25 14:44:22 +02:00
|
|
|
|
SORTED_FORMAT_OPTIONS_STRING,
|
2020-06-16 12:54:50 +02:00
|
|
|
|
UNSORTED_FORMAT_OPTIONS_STRING,
|
2016-11-23 22:01:58 +01:00
|
|
|
|
)
|
2018-11-02 14:53:05 +01:00
|
|
|
|
from httpie.output.formatters.colors import (
|
2019-08-31 15:17:10 +02:00
|
|
|
|
AUTO_STYLE, AVAILABLE_STYLES, DEFAULT_STYLE,
|
2018-11-02 14:53:05 +01:00
|
|
|
|
)
|
2016-11-24 00:58:41 +01:00
|
|
|
|
from httpie.plugins.builtin import BuiltinAuthPlugin
|
2020-05-27 15:58:15 +02:00
|
|
|
|
from httpie.plugins.registry import plugin_manager
|
2016-11-24 00:58:41 +01:00
|
|
|
|
from httpie.sessions import DEFAULT_SESSIONS_DIR
|
2020-05-27 15:58:15 +02:00
|
|
|
|
from httpie.ssl import AVAILABLE_SSL_VERSION_ARG_MAPPING, DEFAULT_SSL_CIPHERS
|
2012-03-04 10:48:30 +01:00
|
|
|
|
|
|
|
|
|
|
2016-02-28 12:01:54 +01:00
|
|
|
|
parser = HTTPieArgumentParser(
|
2018-10-30 18:41:56 +01:00
|
|
|
|
prog='http',
|
2019-09-16 13:26:18 +02:00
|
|
|
|
description='%s <https://httpie.org>' % __doc__.strip(),
|
2020-06-16 12:54:50 +02:00
|
|
|
|
epilog=dedent('''
|
2013-08-10 11:56:19 +02:00
|
|
|
|
For every --OPTION there is also a --no-OPTION that reverts OPTION
|
|
|
|
|
to its default value.
|
|
|
|
|
|
|
|
|
|
Suggestions and bug reports are greatly appreciated:
|
|
|
|
|
|
2017-03-10 11:27:38 +01:00
|
|
|
|
https://github.com/jakubroztocil/httpie/issues
|
2013-08-10 11:56:19 +02:00
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''),
|
2012-08-18 05:59:20 +02:00
|
|
|
|
)
|
|
|
|
|
|
2013-08-10 11:56:19 +02:00
|
|
|
|
#######################################################################
|
2012-08-18 05:59:20 +02:00
|
|
|
|
# Positional arguments.
|
2013-08-10 11:56:19 +02:00
|
|
|
|
#######################################################################
|
2012-08-18 05:59:20 +02:00
|
|
|
|
|
|
|
|
|
positional = parser.add_argument_group(
|
2014-04-28 23:33:30 +02:00
|
|
|
|
title='Positional Arguments',
|
2020-06-16 12:54:50 +02:00
|
|
|
|
description=dedent('''
|
2013-08-10 11:56:19 +02:00
|
|
|
|
These arguments come after any flags and in the order they are listed here.
|
|
|
|
|
Only URL is required.
|
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
''')
|
2012-08-18 05:59:20 +02:00
|
|
|
|
)
|
|
|
|
|
positional.add_argument(
|
2019-08-31 15:17:10 +02:00
|
|
|
|
dest='method',
|
2013-02-26 15:12:33 +01:00
|
|
|
|
metavar='METHOD',
|
2012-08-21 15:45:22 +02:00
|
|
|
|
nargs=OPTIONAL,
|
2012-08-18 05:59:20 +02:00
|
|
|
|
default=None,
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2013-08-10 11:56:19 +02:00
|
|
|
|
The HTTP method to be used for the request (GET, POST, PUT, DELETE, ...).
|
|
|
|
|
|
|
|
|
|
This argument can be omitted in which case HTTPie will use POST if there
|
|
|
|
|
is some data to be sent, otherwise GET:
|
|
|
|
|
|
|
|
|
|
$ http example.org # => GET
|
|
|
|
|
$ http example.org hello=world # => POST
|
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2012-08-18 05:59:20 +02:00
|
|
|
|
)
|
|
|
|
|
positional.add_argument(
|
2019-08-31 15:17:10 +02:00
|
|
|
|
dest='url',
|
2013-02-26 15:12:33 +01:00
|
|
|
|
metavar='URL',
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2013-08-10 11:56:19 +02:00
|
|
|
|
The scheme defaults to 'http://' if the URL does not include one.
|
2016-07-02 12:51:35 +02:00
|
|
|
|
(You can override this with: --default-scheme=https)
|
2013-08-10 11:56:19 +02:00
|
|
|
|
|
2013-10-09 22:21:14 +02:00
|
|
|
|
You can also use a shorthand for localhost
|
|
|
|
|
|
|
|
|
|
$ http :3000 # => http://localhost:3000
|
|
|
|
|
$ http :/foo # => http://localhost/foo
|
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2012-08-18 05:59:20 +02:00
|
|
|
|
)
|
|
|
|
|
positional.add_argument(
|
2019-08-31 15:17:10 +02:00
|
|
|
|
dest='request_items',
|
2014-01-25 15:07:22 +01:00
|
|
|
|
metavar='REQUEST_ITEM',
|
2012-09-07 11:58:39 +02:00
|
|
|
|
nargs=ZERO_OR_MORE,
|
2016-09-01 11:14:23 +02:00
|
|
|
|
default=None,
|
2019-08-31 15:17:10 +02:00
|
|
|
|
type=KeyValueArgType(*SEPARATOR_GROUP_ALL_ITEMS),
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help=r'''
|
2013-08-10 11:56:19 +02:00
|
|
|
|
Optional key-value pairs to be included in the request. The separator used
|
|
|
|
|
determines the type:
|
|
|
|
|
|
|
|
|
|
':' HTTP headers:
|
|
|
|
|
|
|
|
|
|
Referer:http://httpie.org Cookie:foo=bar User-Agent:bacon/1.0
|
|
|
|
|
|
|
|
|
|
'==' URL parameters to be appended to the request URI:
|
|
|
|
|
|
|
|
|
|
search==httpie
|
|
|
|
|
|
|
|
|
|
'=' Data fields to be serialized into a JSON object (with --json, -j)
|
|
|
|
|
or form data (with --form, -f):
|
|
|
|
|
|
|
|
|
|
name=HTTPie language=Python description='CLI HTTP client'
|
|
|
|
|
|
2013-09-24 23:41:18 +02:00
|
|
|
|
':=' Non-string JSON data fields (only with --json, -j):
|
|
|
|
|
|
|
|
|
|
awesome:=true amount:=42 colors:='["red", "green", "blue"]'
|
|
|
|
|
|
2020-09-28 12:16:57 +02:00
|
|
|
|
'@' Form file fields (only with --form or --multipart):
|
2013-08-10 11:56:19 +02:00
|
|
|
|
|
2020-06-08 18:02:04 +02:00
|
|
|
|
cv@~/Documents/CV.pdf
|
2020-06-08 17:59:41 +02:00
|
|
|
|
cv@'~/Documents/CV.pdf;type=application/pdf'
|
2013-08-10 11:56:19 +02:00
|
|
|
|
|
2013-09-24 23:41:18 +02:00
|
|
|
|
'=@' A data field like '=', but takes a file path and embeds its content:
|
2013-08-10 11:56:19 +02:00
|
|
|
|
|
2013-09-24 23:41:18 +02:00
|
|
|
|
essay=@Documents/essay.txt
|
|
|
|
|
|
|
|
|
|
':=@' A raw JSON field like ':=', but takes a file path and embeds its content:
|
|
|
|
|
|
|
|
|
|
package:=@./package.json
|
2013-08-10 11:56:19 +02:00
|
|
|
|
|
|
|
|
|
You can use a backslash to escape a colliding separator in the field name:
|
|
|
|
|
|
|
|
|
|
field-name-with\:colon=value
|
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2012-08-18 05:59:20 +02:00
|
|
|
|
)
|
2012-03-04 10:48:30 +01:00
|
|
|
|
|
2013-08-10 11:56:19 +02:00
|
|
|
|
#######################################################################
|
2012-03-04 10:48:30 +01:00
|
|
|
|
# Content type.
|
2013-08-10 11:56:19 +02:00
|
|
|
|
#######################################################################
|
2012-03-04 10:48:30 +01:00
|
|
|
|
|
2012-08-18 05:59:20 +02:00
|
|
|
|
content_type = parser.add_argument_group(
|
2014-04-28 23:33:30 +02:00
|
|
|
|
title='Predefined Content Types',
|
2012-09-07 11:58:39 +02:00
|
|
|
|
description=None
|
2012-09-24 06:49:12 +02:00
|
|
|
|
)
|
2012-09-07 11:58:39 +02:00
|
|
|
|
|
2012-08-18 05:59:20 +02:00
|
|
|
|
content_type.add_argument(
|
2013-02-26 15:12:33 +01:00
|
|
|
|
'--json', '-j',
|
2020-09-25 14:44:22 +02:00
|
|
|
|
action='store_const',
|
2020-09-28 12:16:57 +02:00
|
|
|
|
const=RequestType.JSON,
|
|
|
|
|
dest='request_type',
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2013-08-10 11:56:19 +02:00
|
|
|
|
(default) Data items from the command line are serialized as a JSON object.
|
|
|
|
|
The Content-Type and Accept headers are set to application/json
|
|
|
|
|
(if not specified).
|
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2012-03-04 10:48:30 +01:00
|
|
|
|
)
|
2012-08-18 05:59:20 +02:00
|
|
|
|
content_type.add_argument(
|
2013-02-26 15:12:33 +01:00
|
|
|
|
'--form', '-f',
|
2020-09-25 14:44:22 +02:00
|
|
|
|
action='store_const',
|
2020-09-28 12:16:57 +02:00
|
|
|
|
const=RequestType.FORM,
|
|
|
|
|
dest='request_type',
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2013-08-10 11:56:19 +02:00
|
|
|
|
Data items from the command line are serialized as form fields.
|
|
|
|
|
|
|
|
|
|
The Content-Type is set to application/x-www-form-urlencoded (if not
|
|
|
|
|
specified). The presence of any file fields results in a
|
|
|
|
|
multipart/form-data request.
|
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2012-03-04 10:48:30 +01:00
|
|
|
|
)
|
2020-08-19 10:22:42 +02:00
|
|
|
|
content_type.add_argument(
|
|
|
|
|
'--multipart',
|
2020-09-25 14:44:22 +02:00
|
|
|
|
action='store_const',
|
2020-09-28 12:16:57 +02:00
|
|
|
|
const=RequestType.MULTIPART,
|
|
|
|
|
dest='request_type',
|
2020-08-19 10:22:42 +02:00
|
|
|
|
help='''
|
2020-09-25 14:44:22 +02:00
|
|
|
|
Similar to --form, but always sends a multipart/form-data
|
|
|
|
|
request (i.e., even without files).
|
2020-08-19 10:22:42 +02:00
|
|
|
|
|
|
|
|
|
'''
|
|
|
|
|
)
|
|
|
|
|
content_type.add_argument(
|
|
|
|
|
'--boundary',
|
|
|
|
|
help='''
|
|
|
|
|
Specify a custom boundary string for multipart/form-data requests.
|
|
|
|
|
Only has effect only together with --form.
|
|
|
|
|
|
|
|
|
|
'''
|
|
|
|
|
)
|
|
|
|
|
|
2012-03-04 10:48:30 +01:00
|
|
|
|
|
2019-08-29 10:44:59 +02:00
|
|
|
|
#######################################################################
|
|
|
|
|
# Content processing.
|
|
|
|
|
#######################################################################
|
|
|
|
|
|
|
|
|
|
content_processing = parser.add_argument_group(
|
|
|
|
|
title='Content Processing Options',
|
|
|
|
|
description=None
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
content_processing.add_argument(
|
|
|
|
|
'--compress', '-x',
|
|
|
|
|
action='count',
|
2019-09-01 11:38:14 +02:00
|
|
|
|
default=0,
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2019-08-29 10:44:59 +02:00
|
|
|
|
Content compressed (encoded) with Deflate algorithm.
|
|
|
|
|
The Content-Encoding header is set to deflate.
|
|
|
|
|
|
|
|
|
|
Compression is skipped if it appears that compression ratio is
|
|
|
|
|
negative. Compression can be forced by repeating the argument.
|
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2019-08-29 10:44:59 +02:00
|
|
|
|
)
|
|
|
|
|
|
2013-08-10 11:56:19 +02:00
|
|
|
|
#######################################################################
|
2012-08-18 05:59:20 +02:00
|
|
|
|
# Output processing
|
2013-08-10 11:56:19 +02:00
|
|
|
|
#######################################################################
|
2012-08-18 05:59:20 +02:00
|
|
|
|
|
2014-04-28 23:33:30 +02:00
|
|
|
|
output_processing = parser.add_argument_group(title='Output Processing')
|
2012-03-04 10:48:30 +01:00
|
|
|
|
|
2012-08-18 05:59:20 +02:00
|
|
|
|
output_processing.add_argument(
|
2013-02-26 15:12:33 +01:00
|
|
|
|
'--pretty',
|
|
|
|
|
dest='prettify',
|
|
|
|
|
default=PRETTY_STDOUT_TTY_ONLY,
|
2012-08-17 21:06:53 +02:00
|
|
|
|
choices=sorted(PRETTY_MAP.keys()),
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2013-08-10 11:56:19 +02:00
|
|
|
|
Controls output processing. The value can be "none" to not prettify
|
|
|
|
|
the output (default for redirected output), "all" to apply both colors
|
|
|
|
|
and formatting (default for terminal output), "colors", or "format".
|
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2012-03-04 10:48:30 +01:00
|
|
|
|
)
|
2012-08-18 05:59:20 +02:00
|
|
|
|
output_processing.add_argument(
|
2013-02-26 15:12:33 +01:00
|
|
|
|
'--style', '-s',
|
|
|
|
|
dest='style',
|
|
|
|
|
metavar='STYLE',
|
|
|
|
|
default=DEFAULT_STYLE,
|
2012-08-18 05:59:20 +02:00
|
|
|
|
choices=AVAILABLE_STYLES,
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2020-05-27 15:58:15 +02:00
|
|
|
|
Output coloring style (default is "{default}"). It can be One of:
|
2013-08-10 11:56:19 +02:00
|
|
|
|
|
2020-05-27 15:58:15 +02:00
|
|
|
|
{available_styles}
|
2018-11-02 14:53:05 +01:00
|
|
|
|
|
2018-11-02 16:21:06 +01:00
|
|
|
|
The "{auto_style}" style follows your terminal's ANSI color styles.
|
2013-08-10 11:56:19 +02:00
|
|
|
|
|
2018-11-02 16:21:06 +01:00
|
|
|
|
For non-{auto_style} styles to work properly, please make sure that the
|
2018-11-02 14:53:05 +01:00
|
|
|
|
$TERM environment variable is set to "xterm-256color" or similar
|
2013-08-10 11:56:19 +02:00
|
|
|
|
(e.g., via `export TERM=xterm-256color' in your ~/.bashrc).
|
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''.format(
|
2013-08-10 11:56:19 +02:00
|
|
|
|
default=DEFAULT_STYLE,
|
2018-11-02 14:53:05 +01:00
|
|
|
|
available_styles='\n'.join(
|
2016-07-19 18:23:40 +02:00
|
|
|
|
'{0}{1}'.format(8 * ' ', line.strip())
|
2014-04-28 23:33:30 +02:00
|
|
|
|
for line in wrap(', '.join(sorted(AVAILABLE_STYLES)), 60)
|
2020-05-27 15:58:15 +02:00
|
|
|
|
).strip(),
|
2018-11-02 14:53:05 +01:00
|
|
|
|
auto_style=AUTO_STYLE,
|
2013-08-10 11:56:19 +02:00
|
|
|
|
)
|
2012-08-18 05:59:20 +02:00
|
|
|
|
)
|
2020-06-16 12:54:50 +02:00
|
|
|
|
_sorted_kwargs = {
|
|
|
|
|
'action': 'append_const',
|
|
|
|
|
'const': SORTED_FORMAT_OPTIONS_STRING,
|
|
|
|
|
'dest': 'format_options'
|
|
|
|
|
}
|
|
|
|
|
_unsorted_kwargs = {
|
|
|
|
|
'action': 'append_const',
|
|
|
|
|
'const': UNSORTED_FORMAT_OPTIONS_STRING,
|
|
|
|
|
'dest': 'format_options'
|
|
|
|
|
}
|
|
|
|
|
# The closest approx. of the documented resetting to default via --no-<option>.
|
|
|
|
|
# We hide them from the doc because they act only as low-level aliases here.
|
|
|
|
|
output_processing.add_argument('--no-unsorted', **_sorted_kwargs, help=SUPPRESS)
|
|
|
|
|
output_processing.add_argument('--no-sorted', **_unsorted_kwargs, help=SUPPRESS)
|
|
|
|
|
|
2020-06-16 12:20:13 +02:00
|
|
|
|
output_processing.add_argument(
|
|
|
|
|
'--unsorted',
|
2020-06-16 12:54:50 +02:00
|
|
|
|
**_unsorted_kwargs,
|
|
|
|
|
help=f'''
|
2020-06-16 12:20:13 +02:00
|
|
|
|
Disables all sorting while formatting output. It is a shortcut for:
|
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
--format-options={UNSORTED_FORMAT_OPTIONS_STRING}
|
2012-08-18 05:59:20 +02:00
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2020-06-16 12:20:13 +02:00
|
|
|
|
)
|
2020-06-16 12:54:50 +02:00
|
|
|
|
output_processing.add_argument(
|
|
|
|
|
'--sorted',
|
|
|
|
|
**_sorted_kwargs,
|
|
|
|
|
help=f'''
|
|
|
|
|
Re-enables all sorting options while formatting output. It is a shortcut for:
|
|
|
|
|
|
|
|
|
|
--format-options={SORTED_FORMAT_OPTIONS_STRING}
|
|
|
|
|
|
|
|
|
|
'''
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
2020-05-27 15:58:15 +02:00
|
|
|
|
output_processing.add_argument(
|
|
|
|
|
'--format-options',
|
2020-06-16 12:20:13 +02:00
|
|
|
|
action='append',
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2020-05-27 15:58:15 +02:00
|
|
|
|
Controls output formatting. Only relevant when formatting is enabled
|
|
|
|
|
through (explicit or implied) --pretty=all or --pretty=format.
|
|
|
|
|
The following are the default options:
|
|
|
|
|
|
|
|
|
|
{option_list}
|
|
|
|
|
|
2020-06-16 12:20:13 +02:00
|
|
|
|
You may use this option multiple times, as well as specify multiple
|
|
|
|
|
comma-separated options at the same time. For example, this modifies the
|
|
|
|
|
settings to disable the sorting of JSON keys, and sets the indent size to 2:
|
2020-05-27 15:58:15 +02:00
|
|
|
|
|
2020-06-16 12:20:13 +02:00
|
|
|
|
--format-options json.sort_keys:false,json.indent:2
|
2020-05-27 15:58:15 +02:00
|
|
|
|
|
|
|
|
|
This is something you will typically put into your config file.
|
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''.format(
|
2020-05-27 15:58:15 +02:00
|
|
|
|
option_list='\n'.join(
|
|
|
|
|
(8 * ' ') + option for option in DEFAULT_FORMAT_OPTIONS).strip()
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
|
2013-08-10 11:56:19 +02:00
|
|
|
|
#######################################################################
|
2012-08-18 05:59:20 +02:00
|
|
|
|
# Output options
|
2013-08-10 11:56:19 +02:00
|
|
|
|
#######################################################################
|
2014-04-28 23:33:30 +02:00
|
|
|
|
output_options = parser.add_argument_group(title='Output Options')
|
2012-03-04 10:48:30 +01:00
|
|
|
|
|
2012-12-05 04:39:56 +01:00
|
|
|
|
output_options.add_argument(
|
2013-02-26 15:12:33 +01:00
|
|
|
|
'--print', '-p',
|
|
|
|
|
dest='output_options',
|
|
|
|
|
metavar='WHAT',
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help=f'''
|
2013-08-10 11:56:19 +02:00
|
|
|
|
String specifying what the output should contain:
|
|
|
|
|
|
2019-08-31 15:17:10 +02:00
|
|
|
|
'{OUT_REQ_HEAD}' request headers
|
|
|
|
|
'{OUT_REQ_BODY}' request body
|
|
|
|
|
'{OUT_RESP_HEAD}' response headers
|
|
|
|
|
'{OUT_RESP_BODY}' response body
|
2013-08-10 11:56:19 +02:00
|
|
|
|
|
2019-08-31 15:17:10 +02:00
|
|
|
|
The default behaviour is '{OUTPUT_OPTIONS_DEFAULT}' (i.e., the response
|
|
|
|
|
headers and body is printed), if standard output is not redirected.
|
|
|
|
|
If the output is piped to another program or to a file, then only the
|
|
|
|
|
response body is printed by default.
|
2013-08-10 11:56:19 +02:00
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2012-03-14 00:05:44 +01:00
|
|
|
|
)
|
2012-09-24 06:49:12 +02:00
|
|
|
|
output_options.add_argument(
|
2013-02-26 15:12:33 +01:00
|
|
|
|
'--headers', '-h',
|
|
|
|
|
dest='output_options',
|
|
|
|
|
action='store_const',
|
|
|
|
|
const=OUT_RESP_HEAD,
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help=f'''
|
2019-08-31 15:17:10 +02:00
|
|
|
|
Print only the response headers. Shortcut for --print={OUT_RESP_HEAD}.
|
2013-08-10 11:56:19 +02:00
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2012-03-04 10:48:30 +01:00
|
|
|
|
)
|
2012-09-24 06:49:12 +02:00
|
|
|
|
output_options.add_argument(
|
2013-02-26 15:12:33 +01:00
|
|
|
|
'--body', '-b',
|
|
|
|
|
dest='output_options',
|
|
|
|
|
action='store_const',
|
|
|
|
|
const=OUT_RESP_BODY,
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help=f'''
|
2019-08-31 15:17:10 +02:00
|
|
|
|
Print only the response body. Shortcut for --print={OUT_RESP_BODY}.
|
2013-08-10 11:56:19 +02:00
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2012-03-04 10:48:30 +01:00
|
|
|
|
)
|
2012-03-14 00:05:44 +01:00
|
|
|
|
|
2016-03-05 19:09:52 +01:00
|
|
|
|
output_options.add_argument(
|
|
|
|
|
'--verbose', '-v',
|
|
|
|
|
dest='verbose',
|
|
|
|
|
action='store_true',
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2016-03-05 19:09:52 +01:00
|
|
|
|
Verbose output. Print the whole request as well as the response. Also print
|
|
|
|
|
any intermediary requests/responses (such as redirects).
|
|
|
|
|
It's a shortcut for: --all --print={0}
|
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''.format(''.join(OUTPUT_OPTIONS))
|
2016-03-05 19:09:52 +01:00
|
|
|
|
)
|
|
|
|
|
output_options.add_argument(
|
|
|
|
|
'--all',
|
|
|
|
|
default=False,
|
|
|
|
|
action='store_true',
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2016-03-05 19:09:52 +01:00
|
|
|
|
By default, only the final request/response is shown. Use this flag to show
|
|
|
|
|
any intermediary requests/responses as well. Intermediary requests include
|
|
|
|
|
followed redirects (with --follow), the first unauthorized request when
|
|
|
|
|
Digest auth is used (--auth=digest), etc.
|
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2016-03-05 19:09:52 +01:00
|
|
|
|
)
|
|
|
|
|
output_options.add_argument(
|
2016-07-01 18:49:27 +02:00
|
|
|
|
'--history-print', '-P',
|
|
|
|
|
dest='output_options_history',
|
2016-03-05 19:09:52 +01:00
|
|
|
|
metavar='WHAT',
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2016-03-05 19:09:52 +01:00
|
|
|
|
The same as --print, -p but applies only to intermediary requests/responses
|
|
|
|
|
(such as redirects) when their inclusion is enabled with --all. If this
|
|
|
|
|
options is not specified, then they are formatted the same way as the final
|
|
|
|
|
response.
|
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2016-03-05 19:09:52 +01:00
|
|
|
|
)
|
2012-12-05 04:39:56 +01:00
|
|
|
|
output_options.add_argument(
|
2013-02-26 15:12:33 +01:00
|
|
|
|
'--stream', '-S',
|
|
|
|
|
action='store_true',
|
|
|
|
|
default=False,
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2020-09-28 12:16:57 +02:00
|
|
|
|
Always stream the response body by line, i.e., behave like `tail -f'.
|
2012-08-03 01:01:15 +02:00
|
|
|
|
|
|
|
|
|
Without --stream and with --pretty (either set or implied),
|
|
|
|
|
HTTPie fetches the whole response before it outputs the processed data.
|
|
|
|
|
|
|
|
|
|
Set this option when you want to continuously display a prettified
|
|
|
|
|
long-lived response, such as one from the Twitter streaming API.
|
|
|
|
|
|
|
|
|
|
It is useful also without --pretty: It ensures that the output is flushed
|
|
|
|
|
more often and in smaller chunks.
|
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2012-12-05 04:39:56 +01:00
|
|
|
|
)
|
2013-08-10 11:56:19 +02:00
|
|
|
|
output_options.add_argument(
|
2013-02-26 15:12:33 +01:00
|
|
|
|
'--output', '-o',
|
|
|
|
|
type=FileType('a+b'),
|
|
|
|
|
dest='output_file',
|
|
|
|
|
metavar='FILE',
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2016-03-01 13:24:50 +01:00
|
|
|
|
Save output to FILE instead of stdout. If --download is also set, then only
|
|
|
|
|
the response body is saved to FILE. Other parts of the HTTP exchange are
|
|
|
|
|
printed to stderr.
|
2013-08-10 11:56:19 +02:00
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2012-07-24 01:09:14 +02:00
|
|
|
|
|
2013-02-26 15:12:33 +01:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
output_options.add_argument(
|
|
|
|
|
'--download', '-d',
|
|
|
|
|
action='store_true',
|
|
|
|
|
default=False,
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2013-02-26 15:12:33 +01:00
|
|
|
|
Do not print the response body to stdout. Rather, download it and store it
|
|
|
|
|
in a file. The filename is guessed unless specified with --output
|
|
|
|
|
[filename]. This action is similar to the default behaviour of wget.
|
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2013-02-26 15:12:33 +01:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
output_options.add_argument(
|
|
|
|
|
'--continue', '-c',
|
|
|
|
|
dest='download_resume',
|
|
|
|
|
action='store_true',
|
|
|
|
|
default=False,
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2013-08-10 11:56:19 +02:00
|
|
|
|
Resume an interrupted download. Note that the --output option needs to be
|
|
|
|
|
specified as well.
|
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2013-02-26 15:12:33 +01:00
|
|
|
|
)
|
2012-07-23 19:35:44 +02:00
|
|
|
|
|
2020-06-26 18:28:03 +02:00
|
|
|
|
output_options.add_argument(
|
|
|
|
|
'--quiet', '-q',
|
|
|
|
|
action='store_true',
|
|
|
|
|
default=False,
|
|
|
|
|
help='''
|
|
|
|
|
Do not print to stdout or stderr.
|
2020-08-11 18:35:14 +02:00
|
|
|
|
stdout is still redirected if --output is specified.
|
|
|
|
|
Flag doesn't affect behaviour of download beyond not printing to terminal.
|
2020-06-26 18:28:03 +02:00
|
|
|
|
'''
|
|
|
|
|
)
|
|
|
|
|
|
2013-08-10 11:56:19 +02:00
|
|
|
|
#######################################################################
|
2012-09-07 12:38:52 +02:00
|
|
|
|
# Sessions
|
2013-08-10 11:56:19 +02:00
|
|
|
|
#######################################################################
|
2013-05-13 14:47:44 +02:00
|
|
|
|
|
2019-08-31 15:17:10 +02:00
|
|
|
|
sessions = parser.add_argument_group(title='Sessions') \
|
|
|
|
|
.add_mutually_exclusive_group(required=False)
|
2012-09-07 12:38:52 +02:00
|
|
|
|
|
2013-05-13 14:47:44 +02:00
|
|
|
|
session_name_validator = SessionNameValidator(
|
2013-08-10 11:56:19 +02:00
|
|
|
|
'Session name contains invalid characters.'
|
|
|
|
|
)
|
2013-05-13 14:47:44 +02:00
|
|
|
|
|
2012-09-07 12:38:52 +02:00
|
|
|
|
sessions.add_argument(
|
2013-02-26 15:12:33 +01:00
|
|
|
|
'--session',
|
2013-05-13 14:47:44 +02:00
|
|
|
|
metavar='SESSION_NAME_OR_PATH',
|
|
|
|
|
type=session_name_validator,
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help=f'''
|
2013-08-10 11:56:19 +02:00
|
|
|
|
Create, or reuse and update a session. Within a session, custom headers,
|
|
|
|
|
auth credential, as well as any cookies sent by the server persist between
|
|
|
|
|
requests.
|
|
|
|
|
|
|
|
|
|
Session files are stored in:
|
|
|
|
|
|
2019-08-31 15:17:10 +02:00
|
|
|
|
{DEFAULT_SESSIONS_DIR}/<HOST>/<SESSION_NAME>.json.
|
2013-08-10 11:56:19 +02:00
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2012-08-17 23:23:02 +02:00
|
|
|
|
)
|
2012-09-07 12:38:52 +02:00
|
|
|
|
sessions.add_argument(
|
2013-02-26 15:12:33 +01:00
|
|
|
|
'--session-read-only',
|
2013-05-13 14:47:44 +02:00
|
|
|
|
metavar='SESSION_NAME_OR_PATH',
|
|
|
|
|
type=session_name_validator,
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2013-08-10 11:56:19 +02:00
|
|
|
|
Create or read a session without updating it form the request/response
|
|
|
|
|
exchange.
|
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2012-09-07 12:38:52 +02:00
|
|
|
|
)
|
2012-08-17 23:23:02 +02:00
|
|
|
|
|
2013-08-10 11:56:19 +02:00
|
|
|
|
#######################################################################
|
2012-08-18 05:59:20 +02:00
|
|
|
|
# Authentication
|
2013-08-10 11:56:19 +02:00
|
|
|
|
#######################################################################
|
2013-05-13 14:47:44 +02:00
|
|
|
|
|
2012-03-04 10:48:30 +01:00
|
|
|
|
# ``requests.request`` keyword arguments.
|
2012-08-18 05:59:20 +02:00
|
|
|
|
auth = parser.add_argument_group(title='Authentication')
|
|
|
|
|
auth.add_argument(
|
2013-02-26 15:12:33 +01:00
|
|
|
|
'--auth', '-a',
|
2016-11-23 22:01:58 +01:00
|
|
|
|
default=None,
|
2013-02-26 15:12:33 +01:00
|
|
|
|
metavar='USER[:PASS]',
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2013-08-10 11:56:19 +02:00
|
|
|
|
If only the username is provided (-a username), HTTPie will prompt
|
|
|
|
|
for the password.
|
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
''',
|
2012-03-04 10:48:30 +01:00
|
|
|
|
)
|
2012-03-22 15:40:03 +01:00
|
|
|
|
|
2016-11-23 22:01:58 +01:00
|
|
|
|
|
2019-08-30 11:32:14 +02:00
|
|
|
|
class _AuthTypeLazyChoices:
|
2016-11-23 22:01:58 +01:00
|
|
|
|
# Needed for plugin testing
|
|
|
|
|
|
|
|
|
|
def __contains__(self, item):
|
|
|
|
|
return item in plugin_manager.get_auth_plugin_mapping()
|
|
|
|
|
|
|
|
|
|
def __iter__(self):
|
2016-12-08 05:16:22 +01:00
|
|
|
|
return iter(sorted(plugin_manager.get_auth_plugin_mapping().keys()))
|
2016-11-23 22:01:58 +01:00
|
|
|
|
|
|
|
|
|
|
2013-09-21 23:46:15 +02:00
|
|
|
|
_auth_plugins = plugin_manager.get_auth_plugins()
|
2012-08-18 05:59:20 +02:00
|
|
|
|
auth.add_argument(
|
2016-01-23 01:37:30 +01:00
|
|
|
|
'--auth-type', '-A',
|
2016-11-23 22:01:58 +01:00
|
|
|
|
choices=_AuthTypeLazyChoices(),
|
2016-11-23 23:09:45 +01:00
|
|
|
|
default=None,
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2013-09-21 23:46:15 +02:00
|
|
|
|
The authentication mechanism to be used. Defaults to "{default}".
|
|
|
|
|
|
|
|
|
|
{types}
|
2013-08-10 11:56:19 +02:00
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''.format(default=_auth_plugins[0].auth_type, types='\n '.join(
|
2013-09-21 23:46:15 +02:00
|
|
|
|
'"{type}": {name}{package}{description}'.format(
|
|
|
|
|
type=plugin.auth_type,
|
|
|
|
|
name=plugin.name,
|
|
|
|
|
package=(
|
|
|
|
|
'' if issubclass(plugin, BuiltinAuthPlugin)
|
|
|
|
|
else ' (provided by %s)' % plugin.package_name
|
|
|
|
|
),
|
|
|
|
|
description=(
|
|
|
|
|
'' if not plugin.description else
|
|
|
|
|
'\n ' + ('\n '.join(wrap(plugin.description)))
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
for plugin in _auth_plugins
|
|
|
|
|
)),
|
2012-03-22 15:40:03 +01:00
|
|
|
|
)
|
2019-08-31 12:09:17 +02:00
|
|
|
|
auth.add_argument(
|
|
|
|
|
'--ignore-netrc',
|
|
|
|
|
default=False,
|
|
|
|
|
action='store_true',
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2019-08-31 12:09:17 +02:00
|
|
|
|
Ignore credentials from .netrc.
|
2012-03-22 15:40:03 +01:00
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
''',
|
2019-08-31 12:09:17 +02:00
|
|
|
|
)
|
2012-08-18 05:59:20 +02:00
|
|
|
|
|
2013-08-10 11:56:19 +02:00
|
|
|
|
#######################################################################
|
2012-08-18 05:59:20 +02:00
|
|
|
|
# Network
|
2013-08-10 11:56:19 +02:00
|
|
|
|
#######################################################################
|
2012-08-18 05:59:20 +02:00
|
|
|
|
|
|
|
|
|
network = parser.add_argument_group(title='Network')
|
|
|
|
|
|
2019-09-03 17:14:39 +02:00
|
|
|
|
network.add_argument(
|
|
|
|
|
'--offline',
|
|
|
|
|
default=False,
|
|
|
|
|
action='store_true',
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2019-09-03 17:14:39 +02:00
|
|
|
|
Build the request and print it but don’t actually send it.
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2019-09-03 17:14:39 +02:00
|
|
|
|
)
|
2012-08-18 05:59:20 +02:00
|
|
|
|
network.add_argument(
|
2013-02-26 15:12:33 +01:00
|
|
|
|
'--proxy',
|
|
|
|
|
default=[],
|
|
|
|
|
action='append',
|
2013-09-25 22:02:29 +02:00
|
|
|
|
metavar='PROTOCOL:PROXY_URL',
|
2019-08-31 15:17:10 +02:00
|
|
|
|
type=KeyValueArgType(SEPARATOR_PROXY),
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2013-09-25 22:02:29 +02:00
|
|
|
|
String mapping protocol to the URL of the proxy
|
|
|
|
|
(e.g. http:http://foo.bar:3128). You can specify multiple proxies with
|
2019-08-31 12:31:32 +02:00
|
|
|
|
different protocols. The environment variables $ALL_PROXY, $HTTP_PROXY,
|
|
|
|
|
and $HTTPS_proxy are supported as well.
|
2013-08-10 11:56:19 +02:00
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2012-03-04 10:48:30 +01:00
|
|
|
|
)
|
2012-08-18 05:59:20 +02:00
|
|
|
|
network.add_argument(
|
2016-02-29 06:56:21 +01:00
|
|
|
|
'--follow', '-F',
|
2013-02-26 15:12:33 +01:00
|
|
|
|
default=False,
|
|
|
|
|
action='store_true',
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2016-02-29 06:56:21 +01:00
|
|
|
|
Follow 30x Location redirects.
|
2013-08-10 11:56:19 +02:00
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2012-03-04 10:48:30 +01:00
|
|
|
|
)
|
2016-02-29 06:56:21 +01:00
|
|
|
|
|
|
|
|
|
network.add_argument(
|
|
|
|
|
'--max-redirects',
|
|
|
|
|
type=int,
|
|
|
|
|
default=30,
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2016-02-29 06:56:21 +01:00
|
|
|
|
By default, requests have a limit of 30 redirects (works with --follow).
|
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2016-02-29 06:56:21 +01:00
|
|
|
|
)
|
|
|
|
|
|
2019-08-29 09:39:19 +02:00
|
|
|
|
network.add_argument(
|
|
|
|
|
'--max-headers',
|
|
|
|
|
type=int,
|
|
|
|
|
default=0,
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2019-08-29 09:39:19 +02:00
|
|
|
|
The maximum number of response headers to be read before giving up
|
|
|
|
|
(default 0, i.e., no limit).
|
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2019-08-29 09:39:19 +02:00
|
|
|
|
)
|
|
|
|
|
|
2012-08-18 05:59:20 +02:00
|
|
|
|
network.add_argument(
|
2013-02-26 15:12:33 +01:00
|
|
|
|
'--timeout',
|
|
|
|
|
type=float,
|
2019-08-29 09:57:00 +02:00
|
|
|
|
default=0,
|
2013-02-26 15:12:33 +01:00
|
|
|
|
metavar='SECONDS',
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2019-08-29 10:09:56 +02:00
|
|
|
|
The connection timeout of the request in seconds.
|
2019-08-29 09:57:00 +02:00
|
|
|
|
The default value is 0, i.e., there is no timeout limit.
|
|
|
|
|
This is not a time limit on the entire response download;
|
2019-08-29 10:09:56 +02:00
|
|
|
|
rather, an error is reported if the server has not issued a response for
|
2019-08-29 09:57:00 +02:00
|
|
|
|
timeout seconds (more precisely, if no bytes have been received on
|
2019-08-29 10:09:56 +02:00
|
|
|
|
the underlying socket for timeout seconds).
|
2013-08-10 11:56:19 +02:00
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2012-03-04 10:48:30 +01:00
|
|
|
|
)
|
2012-08-18 05:59:20 +02:00
|
|
|
|
network.add_argument(
|
2013-02-26 15:12:33 +01:00
|
|
|
|
'--check-status',
|
|
|
|
|
default=False,
|
|
|
|
|
action='store_true',
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2013-08-10 11:56:19 +02:00
|
|
|
|
By default, HTTPie exits with 0 when no network or other fatal errors
|
|
|
|
|
occur. This flag instructs HTTPie to also check the HTTP status code and
|
|
|
|
|
exit with an error if the status indicates one.
|
2012-08-18 05:59:20 +02:00
|
|
|
|
|
2013-08-10 11:56:19 +02:00
|
|
|
|
When the server replies with a 4xx (Client Error) or 5xx (Server Error)
|
|
|
|
|
status code, HTTPie exits with 4 or 5 respectively. If the response is a
|
|
|
|
|
3xx (Redirect) and --follow hasn't been set, then the exit status is 3.
|
|
|
|
|
Also an error message is written to stderr if stdout is redirected.
|
2012-08-18 05:59:20 +02:00
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2012-07-30 10:58:16 +02:00
|
|
|
|
)
|
2020-04-13 20:18:01 +02:00
|
|
|
|
network.add_argument(
|
|
|
|
|
'--path-as-is',
|
|
|
|
|
default=False,
|
|
|
|
|
action='store_true',
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2020-04-13 20:18:01 +02:00
|
|
|
|
Bypass dot segment (/../ or /./) URL squashing.
|
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2020-04-13 20:18:01 +02:00
|
|
|
|
)
|
2012-03-04 10:48:30 +01:00
|
|
|
|
|
2020-09-25 13:44:28 +02:00
|
|
|
|
network.add_argument(
|
|
|
|
|
'--chunked',
|
|
|
|
|
default=False,
|
|
|
|
|
action='store_true',
|
|
|
|
|
help="""
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
)
|
|
|
|
|
|
2016-03-02 05:12:05 +01:00
|
|
|
|
#######################################################################
|
|
|
|
|
# SSL
|
|
|
|
|
#######################################################################
|
|
|
|
|
|
|
|
|
|
ssl = parser.add_argument_group(title='SSL')
|
2016-03-02 06:42:42 +01:00
|
|
|
|
ssl.add_argument(
|
|
|
|
|
'--verify',
|
|
|
|
|
default='yes',
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2017-02-17 00:56:07 +01:00
|
|
|
|
Set to "no" (or "false") to skip checking the host's SSL certificate.
|
|
|
|
|
Defaults to "yes" ("true"). You can also pass the path to a CA_BUNDLE file
|
|
|
|
|
for private certs. (Or you can set the REQUESTS_CA_BUNDLE environment
|
|
|
|
|
variable instead.)
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2016-03-02 06:42:42 +01:00
|
|
|
|
)
|
2016-03-02 05:12:05 +01:00
|
|
|
|
ssl.add_argument(
|
2020-06-25 11:36:09 +02:00
|
|
|
|
'--ssl',
|
2016-03-02 05:12:05 +01:00
|
|
|
|
dest='ssl_version',
|
2020-05-23 13:26:06 +02:00
|
|
|
|
choices=list(sorted(AVAILABLE_SSL_VERSION_ARG_MAPPING.keys())),
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2016-03-02 05:12:05 +01:00
|
|
|
|
The desired protocol version to use. This will default to
|
|
|
|
|
SSL v2.3 which will negotiate the highest protocol that both
|
|
|
|
|
the server and your installation of OpenSSL support. Available protocols
|
|
|
|
|
may vary depending on OpenSSL installation (only the supported ones
|
|
|
|
|
are shown here).
|
2016-03-02 06:42:42 +01:00
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2016-03-02 05:12:05 +01:00
|
|
|
|
)
|
2020-05-23 13:26:06 +02:00
|
|
|
|
ssl.add_argument(
|
|
|
|
|
'--ciphers',
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help=f'''
|
2020-05-23 13:26:06 +02:00
|
|
|
|
|
|
|
|
|
A string in the OpenSSL cipher list format. By default, the following
|
|
|
|
|
is used:
|
|
|
|
|
|
|
|
|
|
{DEFAULT_SSL_CIPHERS}
|
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2020-05-23 13:26:06 +02:00
|
|
|
|
)
|
2016-03-02 05:12:05 +01:00
|
|
|
|
ssl.add_argument(
|
|
|
|
|
'--cert',
|
|
|
|
|
default=None,
|
|
|
|
|
type=readable_file_arg,
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2016-03-02 05:12:05 +01:00
|
|
|
|
You can specify a local cert to use as client side SSL certificate.
|
|
|
|
|
This file may either contain both private key and certificate or you may
|
|
|
|
|
specify --cert-key separately.
|
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2016-03-02 05:12:05 +01:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
ssl.add_argument(
|
|
|
|
|
'--cert-key',
|
|
|
|
|
default=None,
|
|
|
|
|
type=readable_file_arg,
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2016-03-02 05:12:05 +01:00
|
|
|
|
The private key to use with SSL. Only needed if --cert is given and the
|
|
|
|
|
certificate file does not contain the private key.
|
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2016-03-02 05:12:05 +01:00
|
|
|
|
)
|
|
|
|
|
|
2013-08-10 11:56:19 +02:00
|
|
|
|
#######################################################################
|
2012-08-18 05:59:20 +02:00
|
|
|
|
# Troubleshooting
|
2013-08-10 11:56:19 +02:00
|
|
|
|
#######################################################################
|
2012-03-04 10:48:30 +01:00
|
|
|
|
|
2012-08-18 05:59:20 +02:00
|
|
|
|
troubleshooting = parser.add_argument_group(title='Troubleshooting')
|
2012-09-17 02:15:00 +02:00
|
|
|
|
|
2013-08-23 10:57:17 +02:00
|
|
|
|
troubleshooting.add_argument(
|
2016-07-02 15:01:46 +02:00
|
|
|
|
'--ignore-stdin', '-I',
|
2013-08-23 10:57:17 +02:00
|
|
|
|
action='store_true',
|
|
|
|
|
default=False,
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2013-08-23 10:57:17 +02:00
|
|
|
|
Do not attempt to read stdin.
|
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2013-08-23 10:57:17 +02:00
|
|
|
|
)
|
2012-08-18 05:59:20 +02:00
|
|
|
|
troubleshooting.add_argument(
|
|
|
|
|
'--help',
|
2013-02-26 15:12:33 +01:00
|
|
|
|
action='help',
|
|
|
|
|
default=SUPPRESS,
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2013-08-10 11:56:19 +02:00
|
|
|
|
Show this help message and exit.
|
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2012-03-04 10:48:30 +01:00
|
|
|
|
)
|
2012-12-05 04:39:56 +01:00
|
|
|
|
troubleshooting.add_argument(
|
2013-02-26 15:12:33 +01:00
|
|
|
|
'--version',
|
|
|
|
|
action='version',
|
2013-08-10 11:56:19 +02:00
|
|
|
|
version=__version__,
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2013-08-10 11:56:19 +02:00
|
|
|
|
Show version and exit.
|
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2013-02-26 15:12:33 +01:00
|
|
|
|
)
|
2012-08-18 05:59:20 +02:00
|
|
|
|
troubleshooting.add_argument(
|
2013-02-26 15:12:33 +01:00
|
|
|
|
'--traceback',
|
|
|
|
|
action='store_true',
|
|
|
|
|
default=False,
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2016-03-01 14:37:26 +01:00
|
|
|
|
Prints the exception traceback should one occur.
|
2013-08-10 11:56:19 +02:00
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2012-03-04 10:48:30 +01:00
|
|
|
|
)
|
2015-10-28 23:06:04 +01:00
|
|
|
|
troubleshooting.add_argument(
|
|
|
|
|
'--default-scheme',
|
|
|
|
|
default="http",
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2016-07-02 12:51:35 +02:00
|
|
|
|
The default scheme to use if not specified in the URL.
|
2015-10-28 23:06:04 +01:00
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2015-10-28 23:06:04 +01:00
|
|
|
|
)
|
2012-08-18 05:59:20 +02:00
|
|
|
|
troubleshooting.add_argument(
|
2013-02-26 15:12:33 +01:00
|
|
|
|
'--debug',
|
|
|
|
|
action='store_true',
|
|
|
|
|
default=False,
|
2020-06-16 12:54:50 +02:00
|
|
|
|
help='''
|
2016-03-01 14:37:26 +01:00
|
|
|
|
Prints the exception traceback should one occur, as well as other
|
|
|
|
|
information useful for debugging HTTPie itself and for reporting bugs.
|
2013-08-10 11:56:19 +02:00
|
|
|
|
|
2020-06-16 12:54:50 +02:00
|
|
|
|
'''
|
2012-03-04 10:48:30 +01:00
|
|
|
|
)
|