aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/__main__.py
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2021-06-09 17:54:27 -0500
committerJesús <heckyel@hyperbola.info>2021-06-09 17:54:27 -0500
commit27fe903c511691c078942bef5ee9a05a43b15c8f (patch)
tree50f30ab2ec749b965869518c0a28651f8677f0d3 /hypervideo_dl/__main__.py
downloadhypervideo-27fe903c511691c078942bef5ee9a05a43b15c8f.tar.lz
hypervideo-27fe903c511691c078942bef5ee9a05a43b15c8f.tar.xz
hypervideo-27fe903c511691c078942bef5ee9a05a43b15c8f.zip
initial
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()