C++ Gcc Python Swig Swig No Module Named _example August 07, 2024 Post a Comment I cannot reproduce the basic SWIG example on windows. My error is stated in the SWIG docs and I am … Read more Swig No Module Named _example
Ctypes Python Swig Combining Ctypes And Swig June 11, 2024 Post a Comment I have been using SWIG for a long time - generally I like it. But doing callback functions seems (… Read more Combining Ctypes And Swig
C Python Swig Wrapping C-enum In A Python Module With Swig May 10, 2024 Post a Comment I have a simple enum in C in myenum.h: enum MyEnum { ONE, TWO, THREE }; The problem is… Read more Wrapping C-enum In A Python Module With Swig
Pointers Python Python C Api Python C Extension Swig Return List Of New Custom-class Objects In Python C Api April 06, 2024 Post a Comment I need to create a new list via the python C API containing new copies of objects of a Quaternion c… Read more Return List Of New Custom-class Objects In Python C Api
C++ Python Swig Wrapping A C++ Class In Python Using Swig March 31, 2024 Post a Comment example.h: #ifndef EXAMPLE_H #define EXAMPLE_H class Math { public: int pi() const; void … Read more Wrapping A C++ Class In Python Using Swig
C Python Swig Running A Swig Bound Python+c Program Gives A Missing Dll Error When Running On Another Computer March 21, 2024 Post a Comment So I have compiled a small testing program that uses SWIG as a bridge between python and C. The mai… Read more Running A Swig Bound Python+c Program Gives A Missing Dll Error When Running On Another Computer
C++ C++11 Python Swig Vector Swig Argument Error When Using "using Std::vector" In Python February 18, 2024 Post a Comment This is very related to this question Regardless of whether or not this is coding practice, I have … Read more Swig Argument Error When Using "using Std::vector" In Python
C++ Python Swig Vector Swig Wrapped Vector Of Vectors (c++ To Python) - How To Recognise The Inner Vector As A Proxy Object? December 11, 2023 Post a Comment I'm facing a similar issue to Wrap std::vector of std::vectors, C++ SWIG Python - but it's … Read more Swig Wrapped Vector Of Vectors (c++ To Python) - How To Recognise The Inner Vector As A Proxy Object?