24 lines
550 B
Python
Executable File
24 lines
550 B
Python
Executable File
#!/usr/bin/env python3
|
|
# -*- python-mode -*-
|
|
"""Takes care of starting the main function."""
|
|
|
|
from __future__ import absolute_import
|
|
|
|
|
|
def init_paths():
|
|
"""Make the app work in the source tree."""
|
|
import os.path as _path
|
|
import sys
|
|
|
|
src_lib = _path.normpath(_path.join(_path.realpath(sys.path[0]), "..", "lib"))
|
|
init_py = _path.join(src_lib, "hidapi", "__init__.py")
|
|
if _path.exists(init_py):
|
|
sys.path[0] = src_lib
|
|
|
|
|
|
if __name__ == "__main__":
|
|
init_paths()
|
|
from hidapi import hidconsole
|
|
|
|
hidconsole.main()
|