Also, and sometimes google does kind of fail you, but straight from your
question, I just type in this section of what you wrote:
'Python code that I would like to compile into a dll'
Yours comes up as well within that search,but so do quite a few others
related to it.
>
>
--
Best Regards,
Da
Thank you all for your help. I'm going to try Cython.
Regards
Rolf
On 10/09/12 14:15, Rolf Wester wrote:
Hi,
I have Python code that I would like to compile into a dll (I have to
deliver a C/C++ callable dll and I don't want to reimpelement the Python
code in C/C++). It's not for extending Py
On 9/10/2012 8:15 AM, Rolf Wester wrote:
I have Python code that I would like to compile into a dll (I have to
deliver a C/C++ callable dll and I don't want to reimpelement the Python
code in C/C++). It's not for extending Python but I want to call the
Python functions and classes from C/C++. It
> I have Python code that I would like to compile into a dll (I have to
See http://docs.python.org/extending/embedding.html. You can pack your code in
a zip file and load it from the DLL entry point (something like what py2exe
does).
See also the Freeze tool - http://wiki.python.org/moin/Freeze
On Monday, 10 September 2012 17:45:11 UTC+5:30, Rolf Wester wrote:
> Hi,
>
>
>
> I have Python code that I would like to compile into a dll (I have to
>
> deliver a C/C++ callable dll and I don't want to reimpelement the Python
>
> code in C/C++). It's not for extending Python but I want to
Hi,
I have Python code that I would like to compile into a dll (I have to
deliver a C/C++ callable dll and I don't want to reimpelement the Python
code in C/C++). It's not for extending Python but I want to call the
Python functions and classes from C/C++. It's more like extending C/C++
with