luca72 wrote:

> Can you tell me how load a list of library

from ctypes.util import find_library
from ctypes import CDLL

for name in list_of_libraries:
    lib = CDLL(find_library(name))

Do you actually read the documentation of ctypes? Or python, for that
matter?

Diez
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to