Anybody knows if actually exists a wrapper or ported library to access to Unix dynamic linker on Python?
|
|
Would ctypes do what you want? |
||
|
|
|
|
The module is called dl:
... 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. |
||
|
