httpie-cli/httpie/__main__.py
Mickaël Schoentgen 4ff22defe4
Rework __main__.py to follow best practices (#1124)
It also simplifies how the `main()` function could be tested.
2021-08-06 16:57:19 +02:00

20 lines
394 B
Python

"""The main entry point. Invoke as `http' or `python -m httpie'.
"""
def main():
try:
from httpie.core import main
exit_status = main()
except KeyboardInterrupt:
from httpie.status import ExitStatus
exit_status = ExitStatus.ERROR_CTRL_C
return exit_status.value
if __name__ == '__main__': # pragma: nocover
import sys
sys.exit(main())