Tagged Questions
The py++ tag has no wiki summary.
2
votes
3answers
2k views
Using code generated by Py++ as a Python extension
I have a need to wrap an existing C++ library for use in Python. After reading through this answer on choosing an appropriate method to wrap C++ for use in Python, I decided to go with Py++.
I walked ...
1
vote
1answer
1k views
Python non-trivial C++ Extension
I have fairly large C++ library with several sub-libraries that support it, and I need to turn the whole thing into a python extension. I'm using distutils because it needs to be cross-platform, but ...
0
votes
2answers
276 views
Calling IB API from Python
IB = Interactive Brokers
There seem to be two main choices
SWIG
Boost.Python + Py++
I understand the relative merits or demerits of using these two methods to some extent. But almost all ...