mirror of
https://github.com/httpie/cli.git
synced 2024-11-23 00:03:18 +01:00
17 lines
250 B
Python
17 lines
250 B
Python
"""
|
|
HTTPie - cURL for humans.
|
|
|
|
"""
|
|
__author__ = 'Jakub Roztocil'
|
|
__version__ = '0.2.7dev'
|
|
__licence__ = 'BSD'
|
|
|
|
|
|
class EXIT:
|
|
OK = 0
|
|
ERROR = 1
|
|
# Used only when requested:
|
|
ERROR_HTTP_3XX = 3
|
|
ERROR_HTTP_4XX = 4
|
|
ERROR_HTTP_5XX = 5
|