Select to view content in your preferred language

Python code saved with extension .dll?

911
1
04-10-2013 05:48 AM
MichelleCouden1
Deactivated User
I have a python code that was saved with the extension .dll. How and what program would I open it with to see the program?
Tags (2)
0 Kudos
1 Reply
MikeHunter
Frequent Contributor
A dll is a file which contains functions and/or classes that have been compiled.  Generally these files are written in C or C++, or possibly VB or C#, and then compiled into the binary dll.  You don't open the file, but rather access the functions/classes through code.  In Python, you'd do that with ctypes, swig, or another ffi library.  But you have to have some documentation about what callables are in the dll, what arguments are required, and what the return values are, or the file will be of no use to you. 

good luck,
Mike
0 Kudos