httpie-cli/httpie/__init__.py

33 lines
622 B
Python
Raw Normal View History

"""
2012-09-21 05:43:34 +02:00
HTTPie - a CLI, cURL-like tool for humans.
"""
__author__ = 'Jakub Roztocil'
2016-12-09 00:26:55 +01:00
__version__ = '1.0.0-dev'
2012-07-17 01:11:01 +02:00
__licence__ = 'BSD'
2012-12-05 05:03:18 +01:00
class ExitStatus:
"""Exit status code constants."""
OK = 0
ERROR = 1
2016-12-08 04:42:17 +01:00
PLUGIN_ERROR = 7
# 128+2 SIGINT <http://www.tldp.org/LDP/abs/html/exitcodes.html>
ERROR_CTRL_C = 130
ERROR_TIMEOUT = 2
ERROR_TOO_MANY_REDIRECTS = 6
# Used only when requested with --check-status:
ERROR_HTTP_3XX = 3
ERROR_HTTP_4XX = 4
ERROR_HTTP_5XX = 5
2016-03-02 06:16:41 +01:00
EXIT_STATUS_LABELS = dict(
(value, key)
for key, value in ExitStatus.__dict__.items()
if key.isupper()
)