1
0
mirror of https://github.com/httpie/cli.git synced 2024-11-24 08:22:22 +02:00
httpie-cli/httpie/__main__.py

21 lines
380 B
Python
Raw Normal View History

2012-02-25 15:39:38 +03:00
#!/usr/bin/env python
2012-07-26 07:37:03 +03:00
"""The main entry point. Invoke as `http' or `python -m httpie'.
2012-04-26 15:48:38 +03:00
"""
import sys
2012-02-25 15:39:38 +03:00
2012-03-04 13:29:55 +03:00
2016-10-26 11:21:30 +02:00
def main():
try:
from .core import main
exit_status = main()
except KeyboardInterrupt:
2019-09-16 13:26:18 +02:00
from httpie.status import ExitStatus
exit_status = ExitStatus.ERROR_CTRL_C
sys.exit(exit_status.value)
2016-10-26 11:21:30 +02:00
if __name__ == '__main__':
main()