Re: Python:C++ interfacing. Tool selection recommendations

2005-09-19 Thread adsheehan
Thanks to all for your postings. Seems like a spread of opinions here. I guess SWIG, SIP & BOOST are all valid options which I need to vaidate in turn Alan -- http://mail.python.org/mailman/listinfo/python-list

Re: Python:C++ interfacing. Tool selection recommendations

2005-09-18 Thread Mike Meyer
> (I wonder, by the way, if it's a good idea to provide a very rich interface > between an application and embedded Python. I have no experience in the > area, but intuition tells me that simplicity and minimalism is important. So long as you distinguish between minimalist and the bare minimum. M

Re: Python:C++ interfacing. Tool selection recommendations

2005-09-17 Thread Diez B. Roggisch
> (I wonder, by the way, if it's a good idea to provide a very rich interface > between an application and embedded Python. I have no experience in the > area, but intuition tells me that simplicity and minimalism is important. > How well has this worked out in past projects?) Check out SIP and th

Re: Python:C++ interfacing. Tool selection recommendations

2005-09-17 Thread Jorgen Grahn
On Fri, 16 Sep 2005 12:04:40 -0400, Neal Becker <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] wrote: > >> Hi, >> >> I am embedding Python with a C++ app and need to provide the Python >> world with access to objects & data with the C++ world. >> >> I am aware or SWIG, BOOST, SIP. Are there more?

Re: Python:C++ interfacing. Tool selection recommendations

2005-09-16 Thread float_dublin
Neal Becker wrote: > [EMAIL PROTECTED] wrote: > > >>Hi, >> >>I am embedding Python with a C++ app and need to provide the Python >>world with access to objects & data with the C++ world. >> >>I am aware or SWIG, BOOST, SIP. Are there more? >> >>I welcome comments of the pros/cons of each and reco

Re: Python:C++ interfacing. Tool selection recommendations

2005-09-16 Thread Neal Becker
[EMAIL PROTECTED] wrote: > Hi, > > I am embedding Python with a C++ app and need to provide the Python > world with access to objects & data with the C++ world. > > I am aware or SWIG, BOOST, SIP. Are there more? > > I welcome comments of the pros/cons of each and recommendations on when > it a

Re: Python:C++ interfacing. Tool selection recommendations

2005-09-16 Thread Diez B. Roggisch
[EMAIL PROTECTED] wrote: > Hi, > > I am embedding Python with a C++ app and need to provide the Python > world with access to objects & data with the C++ world. > > I am aware or SWIG, BOOST, SIP. Are there more? > > I welcome comments of the pros/cons of each and recommendations on when > it ap

Python:C++ interfacing. Tool selection recommendations

2005-09-16 Thread adsheehan
Hi, I am embedding Python with a C++ app and need to provide the Python world with access to objects & data with the C++ world. I am aware or SWIG, BOOST, SIP. Are there more? I welcome comments of the pros/cons of each and recommendations on when it appropriate to select one over the others. T