First commit

This commit is contained in:
Ignacio Serantes
2026-03-22 18:13:22 +01:00
commit 3fb55ee4f3
19 changed files with 1928 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import ctypes
import glob
import os
_current_dir = os.path.dirname(__file__)
_so_files = glob.glob(os.path.join(_current_dir, "baloo_wrapper*.so"))
if _so_files:
baloo_lib = ctypes.CDLL(_so_files[0])