From ecca731104af5a0ecbe041b6737d85160cdef82e Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 26 Feb 2025 23:59:24 -0500 Subject: [PATCH] Make python import relative --- Python/btui.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Python/btui.py b/Python/btui.py index 9b39bc0..7ff35b4 100644 --- a/Python/btui.py +++ b/Python/btui.py @@ -2,12 +2,13 @@ import ctypes import enum import functools import time +import os.path from contextlib import contextmanager __all__ = ['open', 'TextAttr', 'ClearType', 'CursorType', 'BTUIMode'] # Load the shared library into c types. -libbtui = ctypes.CDLL("./libbtui.so") +libbtui = ctypes.CDLL(os.path.dirname(os.path.abspath(__file__)) + os.path.sep + "libbtui.so") class FILE(ctypes.Structure): pass