httpie-cli/httpie/cli/definition.py

797 lines
21 KiB
Python
Raw Normal View History

2020-06-16 13:01:48 +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
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,
readable_file_arg,
2019-08-31 15:17:10 +02:00
)
from httpie.cli.constants import (
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-25 14:44:22 +02:00
RequestContentType, SEPARATOR_GROUP_ALL_ITEMS, SEPARATOR_PROXY,
SORTED_FORMAT_OPTIONS_STRING,
UNSORTED_FORMAT_OPTIONS_STRING,
)
from httpie.output.formatters.colors import (
2019-08-31 15:17:10 +02:00
AUTO_STYLE, AVAILABLE_STYLES, DEFAULT_STYLE,
)
2016-11-24 00:58:41 +01:00
from httpie.plugins.builtin import BuiltinAuthPlugin
from httpie.plugins.registry import plugin_manager
2016-11-24 00:58:41 +01:00
from httpie.sessions import DEFAULT_SESSIONS_DIR
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(
prog='http',
2019-09-16 13:26:18 +02:00
description='%s <https://httpie.org>' % __doc__.strip(),
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
'''),
)
2013-08-10 11:56:19 +02:00
#######################################################################
# Positional arguments.
2013-08-10 11:56:19 +02:00
#######################################################################
positional = parser.add_argument_group(
title='Positional Arguments',
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.
''')
)
positional.add_argument(
2019-08-31 15:17:10 +02:00
dest='method',
metavar='METHOD',
2012-08-21 15:45:22 +02:00
nargs=OPTIONAL,
default=None,
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
'''
)
positional.add_argument(
2019-08-31 15:17:10 +02:00
dest='url',
metavar='URL',
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
You can also use a shorthand for localhost
$ http :3000 # => http://localhost:3000
$ http :/foo # => http://localhost/foo
'''
)
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),
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'
':=' Non-string JSON data fields (only with --json, -j):
awesome:=true amount:=42 colors:='["red", "green", "blue"]'
2013-08-10 11:56:19 +02:00
'@' Form file fields (only with --form, -f):
2020-06-08 18:02:04 +02:00
cv@~/Documents/CV.pdf
cv@'~/Documents/CV.pdf;type=application/pdf'
2013-08-10 11:56:19 +02:00
'=@' A data field like '=', but takes a file path and embeds its content:
2013-08-10 11:56:19 +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
'''
)
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
content_type = parser.add_argument_group(
title='Predefined Content Types',
2012-09-07 11:58:39 +02:00
description=None
)
2012-09-07 11:58:39 +02:00
content_type.add_argument(
'--json', '-j',
2020-09-25 14:44:22 +02:00
action='store_const',
const=RequestContentType.JSON,
dest='request_content_type',
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).
'''
2012-03-04 10:48:30 +01:00
)
content_type.add_argument(
'--form', '-f',
2020-09-25 14:44:22 +02:00
action='store_const',
const=RequestContentType.FORM,
dest='request_content_type',
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.
'''
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',
const=RequestContentType.MULTIPART,
dest='request_content_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
#######################################################################
# 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,
help='''
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.
'''
)
2013-08-10 11:56:19 +02:00
#######################################################################
# Output processing
2013-08-10 11:56:19 +02:00
#######################################################################
output_processing = parser.add_argument_group(title='Output Processing')
2012-03-04 10:48:30 +01:00
output_processing.add_argument(
'--pretty',
dest='prettify',
default=PRETTY_STDOUT_TTY_ONLY,
choices=sorted(PRETTY_MAP.keys()),
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".
'''
2012-03-04 10:48:30 +01:00
)
output_processing.add_argument(
'--style', '-s',
dest='style',
metavar='STYLE',
default=DEFAULT_STYLE,
choices=AVAILABLE_STYLES,
help='''
Output coloring style (default is "{default}"). It can be One of:
2013-08-10 11:56:19 +02:00
{available_styles}
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
$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).
'''.format(
2013-08-10 11:56:19 +02:00
default=DEFAULT_STYLE,
available_styles='\n'.join(
2016-07-19 18:23:40 +02:00
'{0}{1}'.format(8 * ' ', line.strip())
for line in wrap(', '.join(sorted(AVAILABLE_STYLES)), 60)
).strip(),
auto_style=AUTO_STYLE,
2013-08-10 11:56:19 +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)
output_processing.add_argument(
'--unsorted',
**_unsorted_kwargs,
help=f'''
Disables all sorting while formatting output. It is a shortcut for:
--format-options={UNSORTED_FORMAT_OPTIONS_STRING}
'''
)
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}
'''
)
output_processing.add_argument(
'--format-options',
action='append',
help='''
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}
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:
--format-options json.sort_keys:false,json.indent:2
This is something you will typically put into your config file.
'''.format(
option_list='\n'.join(
(8 * ' ') + option for option in DEFAULT_FORMAT_OPTIONS).strip()
)
)
2013-08-10 11:56:19 +02:00
#######################################################################
# Output options
2013-08-10 11:56:19 +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(
'--print', '-p',
dest='output_options',
metavar='WHAT',
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
'''
)
output_options.add_argument(
'--headers', '-h',
dest='output_options',
action='store_const',
const=OUT_RESP_HEAD,
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
'''
2012-03-04 10:48:30 +01:00
)
output_options.add_argument(
'--body', '-b',
dest='output_options',
action='store_const',
const=OUT_RESP_BODY,
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
'''
2012-03-04 10:48:30 +01:00
)
output_options.add_argument(
'--verbose', '-v',
dest='verbose',
action='store_true',
help='''
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}
'''.format(''.join(OUTPUT_OPTIONS))
)
output_options.add_argument(
'--all',
default=False,
action='store_true',
help='''
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.
'''
)
output_options.add_argument(
'--history-print', '-P',
dest='output_options_history',
metavar='WHAT',
help='''
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.
'''
)
2012-12-05 04:39:56 +01:00
output_options.add_argument(
'--stream', '-S',
action='store_true',
default=False,
help='''
Always stream the output by line, i.e., behave like `tail -f'.
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.
'''
2012-12-05 04:39:56 +01:00
)
2013-08-10 11:56:19 +02:00
output_options.add_argument(
'--output', '-o',
type=FileType('a+b'),
dest='output_file',
metavar='FILE',
help='''
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
'''
)
output_options.add_argument(
'--download', '-d',
action='store_true',
default=False,
help='''
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.
'''
)
output_options.add_argument(
'--continue', '-c',
dest='download_resume',
action='store_true',
default=False,
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-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.
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
#######################################################################
# Sessions
2013-08-10 11:56:19 +02:00
#######################################################################
2019-08-31 15:17:10 +02:00
sessions = parser.add_argument_group(title='Sessions') \
.add_mutually_exclusive_group(required=False)
session_name_validator = SessionNameValidator(
2013-08-10 11:56:19 +02:00
'Session name contains invalid characters.'
)
sessions.add_argument(
'--session',
metavar='SESSION_NAME_OR_PATH',
type=session_name_validator,
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
'''
)
sessions.add_argument(
'--session-read-only',
metavar='SESSION_NAME_OR_PATH',
type=session_name_validator,
help='''
2013-08-10 11:56:19 +02:00
Create or read a session without updating it form the request/response
exchange.
'''
)
2013-08-10 11:56:19 +02:00
#######################################################################
# Authentication
2013-08-10 11:56:19 +02:00
#######################################################################
2012-03-04 10:48:30 +01:00
# ``requests.request`` keyword arguments.
auth = parser.add_argument_group(title='Authentication')
auth.add_argument(
'--auth', '-a',
default=None,
metavar='USER[:PASS]',
help='''
2013-08-10 11:56:19 +02:00
If only the username is provided (-a username), HTTPie will prompt
for the password.
''',
2012-03-04 10:48:30 +01:00
)
2012-03-22 15:40:03 +01:00
class _AuthTypeLazyChoices:
# 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()))
2013-09-21 23:46:15 +02:00
_auth_plugins = plugin_manager.get_auth_plugins()
auth.add_argument(
'--auth-type', '-A',
choices=_AuthTypeLazyChoices(),
2016-11-23 23:09:45 +01:00
default=None,
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
'''.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
)
auth.add_argument(
'--ignore-netrc',
default=False,
action='store_true',
help='''
Ignore credentials from .netrc.
2012-03-22 15:40:03 +01:00
''',
)
2013-08-10 11:56:19 +02:00
#######################################################################
# Network
2013-08-10 11:56:19 +02:00
#######################################################################
network = parser.add_argument_group(title='Network')
network.add_argument(
'--offline',
default=False,
action='store_true',
help='''
Build the request and print it but dont actually send it.
'''
)
network.add_argument(
'--proxy',
default=[],
action='append',
metavar='PROTOCOL:PROXY_URL',
2019-08-31 15:17:10 +02:00
type=KeyValueArgType(SEPARATOR_PROXY),
help='''
String mapping protocol to the URL of the proxy
(e.g. http:http://foo.bar:3128). You can specify multiple proxies with
different protocols. The environment variables $ALL_PROXY, $HTTP_PROXY,
and $HTTPS_proxy are supported as well.
2013-08-10 11:56:19 +02:00
'''
2012-03-04 10:48:30 +01:00
)
network.add_argument(
'--follow', '-F',
default=False,
action='store_true',
help='''
Follow 30x Location redirects.
2013-08-10 11:56:19 +02:00
'''
2012-03-04 10:48:30 +01:00
)
network.add_argument(
'--max-redirects',
type=int,
default=30,
help='''
By default, requests have a limit of 30 redirects (works with --follow).
'''
)
network.add_argument(
'--max-headers',
type=int,
default=0,
help='''
The maximum number of response headers to be read before giving up
(default 0, i.e., no limit).
'''
)
network.add_argument(
'--timeout',
type=float,
default=0,
metavar='SECONDS',
help='''
2019-08-29 10:09:56 +02:00
The connection timeout of the request in seconds.
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
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
'''
2012-03-04 10:48:30 +01:00
)
network.add_argument(
'--check-status',
default=False,
action='store_true',
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.
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.
'''
)
2020-04-13 20:18:01 +02:00
network.add_argument(
'--path-as-is',
default=False,
action='store_true',
help='''
2020-04-13 20:18:01 +02:00
Bypass dot segment (/../ or /./) URL squashing.
'''
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="""
"""
)
#######################################################################
# SSL
#######################################################################
ssl = parser.add_argument_group(title='SSL')
2016-03-02 06:42:42 +01:00
ssl.add_argument(
'--verify',
default='yes',
help='''
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.)
'''
2016-03-02 06:42:42 +01:00
)
ssl.add_argument(
2020-06-25 11:36:09 +02:00
'--ssl',
dest='ssl_version',
2020-05-23 13:26:06 +02:00
choices=list(sorted(AVAILABLE_SSL_VERSION_ARG_MAPPING.keys())),
help='''
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-05-23 13:26:06 +02:00
ssl.add_argument(
'--ciphers',
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-05-23 13:26:06 +02:00
)
ssl.add_argument(
'--cert',
default=None,
type=readable_file_arg,
help='''
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.
'''
)
ssl.add_argument(
'--cert-key',
default=None,
type=readable_file_arg,
help='''
The private key to use with SSL. Only needed if --cert is given and the
certificate file does not contain the private key.
'''
)
2013-08-10 11:56:19 +02:00
#######################################################################
# Troubleshooting
2013-08-10 11:56:19 +02:00
#######################################################################
2012-03-04 10:48:30 +01: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(
'--ignore-stdin', '-I',
2013-08-23 10:57:17 +02:00
action='store_true',
default=False,
help='''
2013-08-23 10:57:17 +02:00
Do not attempt to read stdin.
'''
2013-08-23 10:57:17 +02:00
)
troubleshooting.add_argument(
'--help',
action='help',
default=SUPPRESS,
help='''
2013-08-10 11:56:19 +02:00
Show this help message and exit.
'''
2012-03-04 10:48:30 +01:00
)
2012-12-05 04:39:56 +01:00
troubleshooting.add_argument(
'--version',
action='version',
2013-08-10 11:56:19 +02:00
version=__version__,
help='''
2013-08-10 11:56:19 +02:00
Show version and exit.
'''
)
troubleshooting.add_argument(
'--traceback',
action='store_true',
default=False,
help='''
2016-03-01 14:37:26 +01:00
Prints the exception traceback should one occur.
2013-08-10 11:56:19 +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",
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
'''
2015-10-28 23:06:04 +01:00
)
troubleshooting.add_argument(
'--debug',
action='store_true',
default=False,
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
'''
2012-03-04 10:48:30 +01:00
)