httpie-cli/httpie/__main__.py
Jakub Roztocil 87042f65c9 Added models.Environment().
Refactoring and general cleanup.
2012-07-21 03:14:01 +02:00

11 lines
156 B
Python

#!/usr/bin/env python
"""
The main entry point. Invoke as `http' or `python -m httpie'.
"""
from .core import main
if __name__ == '__main__':
main()