Skip to content Skip to sidebar Skip to footer
Showing posts with the label Boost Python

Pass A Type Object (class, Not An Instance) From Python To C++

I would like to have a boost::python-wrapped c++ function which is able to receive type (rather tha… Read more Pass A Type Object (class, Not An Instance) From Python To C++

Managing Python 3 Code With Scons

at work I have the task to convert a large library with Python 2.7 Code to Python 3.x. This library… Read more Managing Python 3 Code With Scons

Configuring Visual Studio To Work With Boost.python And Python 3

I had Microsoft Visual Studio Community 2013 (Version 12.0.31101.00 Update 4) and Python 3.6.1 (v3.… Read more Configuring Visual Studio To Work With Boost.python And Python 3

How To Write A Wrapper Over Functions And Member Functions That Executes Some Code Before And After The Wrapped Function?

I'm trying to write some wrapper class or function that allows me to execute some code before a… Read more How To Write A Wrapper Over Functions And Member Functions That Executes Some Code Before And After The Wrapped Function?

How Can I Declare A Boost.python C++ Class With Pyobjects

i want to write a c++ class with PyObjects to access them from Python to reference them with an exi… Read more How Can I Declare A Boost.python C++ Class With Pyobjects

Using Unique_ptr With Boost Python - Boost::shared_ptr Works But Unique_ptr Doesnt

This may be the same issue as Boost Python No to_python for std::unique_ptr However, i haven't … Read more Using Unique_ptr With Boost Python - Boost::shared_ptr Works But Unique_ptr Doesnt

Dependencies Between Compiled Modules In Python

Let's say I have two modules in a python project that are written in C++ and exposed with boost… Read more Dependencies Between Compiled Modules In Python

Is There A Good Way To Send Data From Python Context To C++ Without Too Much Copy Involved

The title could be confusing. Here I will state my question more clearly. I want to create a websit… Read more Is There A Good Way To Send Data From Python Context To C++ Without Too Much Copy Involved