aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/__main__.py
diff options
context:
space:
mode:
Diffstat (limited to 'hypervideo_dl/__main__.py')
-rwxr-xr-xhypervideo_dl/__main__.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/hypervideo_dl/__main__.py b/hypervideo_dl/__main__.py
new file mode 100755
index 0000000..e3b35e2
--- /dev/null
+++ b/hypervideo_dl/__main__.py
@@ -0,0 +1,19 @@
+#!/usr/bin/env python
+from __future__ import unicode_literals
+
+# Execute with
+# $ python hypervideo_dl/__main__.py (2.6+)
+# $ python -m hypervideo_dl (2.7+)
+
+import sys
+
+if __package__ is None and not hasattr(sys, 'frozen'):
+ # direct call of __main__.py
+ import os.path
+ path = os.path.realpath(os.path.abspath(__file__))
+ sys.path.insert(0, os.path.dirname(os.path.dirname(path)))
+
+import hypervideo_dl
+
+if __name__ == '__main__':
+ hypervideo_dl.main()