mirror of
https://github.com/httpie/cli.git
synced 2024-11-25 17:23:25 +01:00
c6f2b32e36
Relates to #531, but doesn't solve it completely.
14 lines
247 B
Python
14 lines
247 B
Python
#!/usr/bin/env python
|
|
"""The main entry point. Invoke as `http' or `python -m httpie'.
|
|
|
|
"""
|
|
import sys
|
|
|
|
|
|
if __name__ == '__main__':
|
|
try:
|
|
from .core import main
|
|
sys.exit(main())
|
|
except KeyboardInterrupt:
|
|
sys.exit(1)
|