httpie-cli/httpie/__init__.py

17 lines
250 B
Python
Raw Normal View History

"""
HTTPie - cURL for humans.
"""
__author__ = 'Jakub Roztocil'
2012-07-26 10:03:34 +02:00
__version__ = '0.2.7dev'
2012-07-17 01:11:01 +02:00
__licence__ = 'BSD'
class EXIT:
OK = 0
ERROR = 1
# Used only when requested:
ERROR_HTTP_3XX = 3
ERROR_HTTP_4XX = 4
ERROR_HTTP_5XX = 5