reorganise python interface

This commit is contained in:
Vitor Santos Costa
2017-05-08 18:49:00 +01:00
parent 6e7846e210
commit d1e39368f4
15 changed files with 173 additions and 39 deletions

View File

@@ -0,0 +1,17 @@
import imp
import os
import ctypes
import glob
import os.path
import sys
global yap_lib_path
yap_lib_path = os.path.dirname(__file__)
def load( dll ):
dll = glob.glob(os.path.join(yap_lib_path,dll))[0]
dll = os.path.abspath(dll)
ctypes.CDLL(dll, mode=ctypes.RTLD_GLOBAL)
load('libYap*')