How To Call A DLL?

Fredrik Lundh fredrik at pythonware.com
Mon Feb 13 03:25:24 EST 2006


"Anand" <anand.pasoria at in.bosch.com> wrote:

> Can I get a code snippet of how to call a DLL and it's functionalities from
> Python?

start here:

    http://starship.python.net/crew/theller/ctypes/

(there's no standard mechanism in Python for calling functions in
DLLs, unless they're explicitly designed for Python, in which case
you can simply import them)

</F>






More information about the Python-list mailing list