From 27fe903c511691c078942bef5ee9a05a43b15c8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Wed, 9 Jun 2021 17:54:27 -0500 Subject: initial --- hypervideo_dl/__main__.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 hypervideo_dl/__main__.py (limited to 'hypervideo_dl/__main__.py') 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() -- cgit v1.2.3