vote up 1 vote down star

Anybody knows if actually exists a wrapper or ported library to access to Unix dynamic linker on Python?

flag

2 Answers

vote up 4 vote down check

Would ctypes do what you want?

link|flag
vote up 1 vote down

The module is called dl:

>>> import dl
>>> dl.open("libfoo.so")
<dl.dl object at 0xb7f580c0>
>>> dl.open("libfoo.so").sym('bar')
1400432

... though it's nasty and you might want to consider using ctypes or an extension module.

Edit

Apparently, dl is deprecated in 2.6 so you'll want to use ctypes which has a better API anyhow.

link|flag
deprecation of dl in favor of ctypes confirms that my near-guess of an answer was correct. phew. – Devin Jeanpierre Mar 9 at 20:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.