Re: adding python engine into c++ application

2010-01-01 Thread bobicanprogram
On Dec 29 2009, 6:25 am, griwes wrote: > Hello, I am going to write an application in C++, application which > should be easy to extend by scripts. I chose python for script > language in this application. I'd like to have own API for python. And > here the question arises: how do I implement a py

Re: adding python engine into c++ application

2009-12-29 Thread griwes
Great thanks ;) I will try to combine cython and embedding python interpreter soon. -- http://mail.python.org/mailman/listinfo/python-list

Re: adding python engine into c++ application

2009-12-29 Thread Stefan Behnel
griwes, 29.12.2009 12:25: Hello, I am going to write an application in C++, application which should be easy to extend by scripts. I chose python for script language in this application. I'd like to have own API for python. And here the question arises: how do I implement a python engine within a

Re: adding python engine into c++ application

2009-12-29 Thread griwes
TY ;) -- http://mail.python.org/mailman/listinfo/python-list

Re: adding python engine into c++ application

2009-12-29 Thread Diez B. Roggisch
griwes schrieb: Hello, I am going to write an application in C++, application which should be easy to extend by scripts. I chose python for script language in this application. I'd like to have own API for python. And here the question arises: how do I implement a python engine within an applicat

adding python engine into c++ application

2009-12-29 Thread griwes
Hello, I am going to write an application in C++, application which should be easy to extend by scripts. I chose python for script language in this application. I'd like to have own API for python. And here the question arises: how do I implement a python engine within an application written in C++