1
0
mirror of https://github.com/httpie/cli.git synced 2025-02-19 19:00:14 +02:00
httpie-cli/httpie/__main__.py

11 lines
156 B
Python
Raw Normal View History

2012-02-25 13:39:38 +01:00
#!/usr/bin/env python
"""
The main entry point. Invoke as `http' or `python -m httpie'.
2012-04-26 14:48:38 +02:00
"""
from .core import main
2012-02-25 13:39:38 +01:00
2012-03-04 11:29:55 +01:00
2012-02-25 13:39:38 +01:00
if __name__ == '__main__':
main()