1
0
mirror of https://github.com/httpie/cli.git synced 2026-04-26 20:02:11 +02:00
Files
httpie-cli/httpie/__main__.py
T

20 lines
394 B
Python
Raw Normal View History

2012-07-26 06:37:03 +02:00
"""The main entry point. Invoke as `http' or `python -m httpie'.
2012-04-26 14:48:38 +02:00
2012-07-21 02:59:43 +02:00
"""
2012-02-25 13:39:38 +01:00
2012-03-04 11:29:55 +01:00
2016-10-26 11:21:30 +02:00
def main():
2016-10-26 11:16:34 +02:00
try:
2021-05-05 14:13:39 +02:00
from httpie.core import main
exit_status = main()
2016-10-26 11:16:34 +02:00
except KeyboardInterrupt:
2019-09-16 13:26:18 +02:00
from httpie.status import ExitStatus
exit_status = ExitStatus.ERROR_CTRL_C
return exit_status.value
2016-10-26 11:21:30 +02:00
if __name__ == '__main__': # pragma: nocover
import sys
sys.exit(main())