1
0
mirror of https://github.com/httpie/cli.git synced 2025-01-10 00:28:12 +02:00
httpie-cli/httpie/__init__.py

19 lines
296 B
Python
Raw Normal View History

"""
HTTPie - cURL for humans.
"""
__author__ = 'Jakub Roztocil'
2012-08-17 22:24:34 +03:00
__version__ = '0.2.8-alpha'
2012-07-17 02:11:01 +03:00
__licence__ = 'BSD'
class EXIT:
OK = 0
ERROR = 1
ERROR_TIMEOUT = 2
# Used only when requested with --check-status:
ERROR_HTTP_3XX = 3
ERROR_HTTP_4XX = 4
ERROR_HTTP_5XX = 5