Tagged Questions
Library for intuitive and tight integration between c++ and python.
14
votes
1answer
474 views
Boost Python No to_python converter found for std::string
So, I am trying to create a to_python converter that will allow me to return a boost::optional from an exposed function and have it treated as T if the optional is set and None if not. Based on a ...
11
votes
2answers
483 views
what is wrong with c++ streams when using boost.python?
UPDATE: Perhaps C++ streams need to be initialized in order to format numbers, and the initialization is not happening when the shared library is loaded in Python?
I am calling
cout << 1 ...
10
votes
1answer
500 views
Class-scoped enum
I have a c++ class with an enum inside, and I wanted to mimick that with boost::python, so that I can write MyClass.value in python. boost::python::class_ does not have an enum_ method, and I was ...
10
votes
2answers
276 views
how to extract a unicode string with boost.python
It seems that the code will crash when I do extract<const char*>("a unicode string")
Anyone know how to solve this?
8
votes
3answers
696 views
std::vector to boost::python::list
I have a method in c++ that gets called from python and needs to return a python list object.
I have already created the method, and its attached to an exposed class and callable from python right ...
8
votes
1answer
584 views
Python to C++ function conversion using Boost.Python
I have a bunch of classes and APIs written in C++ and exposed to Python with help of Boost.Python
I am currently investigating the possibilities of creating the following architecture.
In python:
...
7
votes
1answer
276 views
Problems regarding Boost::Python and Boost::Threads
Me and a friend are developing an application which uses Boost::Python. I have defined an interface in C++ (well a pure virtual class), exposed through Boost::Python to the users, who have to inherit ...
6
votes
2answers
369 views
Pure virtual function call
I'm using boost.python to make python-modules written in c++. I have some base class with pure virtual functions which I have exported like this:
class Base
{
virtual int getPosition() = 0;
};
...
6
votes
3answers
548 views
Boost::python Exposing C++ functions using and returning templates
I need to build python bindings for a C++ codebase. I use boost::python and I ran into problems trying to expose classes containing functions using and returning templates. Here is a typical example
...
6
votes
2answers
283 views
How does Boost.Python work?
How is Python able to call C++ objects when the interpreter is C and has been built w/ a C compiler?
6
votes
1answer
1k views
boost::python Export Custom Exception
I am currently writing a C++ extension for Python using Boost::Python. A function in this extension may generate an exception containing information about the error (beyond just a human-readable ...
6
votes
4answers
2k views
Python embedded in CPP: how to get data back to CPP
While working on a C++ project, I was looking for a third party library for something that is not my core business. I found a really good library, doing exactly what's needed, but it is written in ...
5
votes
1answer
101 views
True multithreading with boost.python
I'm trying to test a multi-threaded C++ DLL. This DLL is supposed to be thread-safe. I have it wrapped with boost.python, and I'd like to create multiple python threads to exercise the DLL through ...
5
votes
2answers
270 views
Boost python on mac os x lion with custom python
I'm trying to get boost python to work with a custom python library. I have a python source and build boost.python using :
./bootstrap.sh --with-python-root=../Python-2.7.2 --with-libraries=python
...
5
votes
1answer
369 views
5
votes
1answer
230 views
Return python unicode instances from UTF-8 encoded char* using boost.python
I'm trying to do something which should be very simple, but I'm not having much luck figuring out how from the existing documentation.
For a python 2 project I am trying to return a list ...
5
votes
2answers
579 views
Passing Python list to C++ vector using Boost.python
How do I pass a Python list of my object type ClassName to a C++ function that accepts a vector<ClassName>?
The best I found is something like this: example. Unfortunately, the code crashes ...
5
votes
3answers
192 views
Language choices for writing very fast abstractions interfacing with Python?
I have a system currently written in Python that can be separated into backend and frontend layers. Python is too slow, so I want to rewrite the backend in a fast compiled language while keeping the ...
5
votes
2answers
804 views
passing C++ classes instances to python with boost::python
I have a library which creates objects (instances of class A) and pass them to a python program which should be able to call their methods.
Basically I have C++ class instances and I want to use them ...
5
votes
2answers
460 views
Boost.Python on Mac OS X: “TypeError: Attribute name must be string”
I recently installed Boost using MacPorts, with the intent to do some Python embedding in C++. I then decided to check if I configured Xcode correctly with an example found on Python's website:
...
5
votes
1answer
353 views
C++ iostreams and python
Is it possible to interoperate with a C++ iostream and python? I'm using boost-python and want to wrap a function that has istream and ostream as arguments.
5
votes
2answers
1k views
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 and after the wrapped function.
float foo(int x, float y)
{
return x * y;
}
...
5
votes
3answers
1k views
building boost python examples using Visual Studio 2008
I'm using Boost Python library to create python extensions to my C++ code. I'd like to be able to invoke from python the 'greet' function from the C++ code shown below:
#include ...
5
votes
4answers
642 views
How to build a boost dependent project using regular makefiles?
I'm working on a c++ project, and we recently needed to include a small part of boost in it. The boost part is really minimal (Boost::Python), thus, using bjam to build everything looks like an ...
5
votes
1answer
510 views
Are CPython, IronPython, Jython scripts compatible with each other?
I am pretty sure that python scripts will work in all three, but I want to make sure. I have read here and there about editors that can write CPython, Jython, IronPython and I am hoping that I am ...
5
votes
3answers
2k views
How do I import modules in boost::python embedded python code?
I'm using boost::python to embed some python code into an app. I was able to get print statements or other expressions to be evaluated properly, but when I try to import modules, it is not importing ...
4
votes
1answer
69 views
boost::python and set::erase -> weird behaviour
I'm trying to store objects in a std::set. Those objects are boost::shared_ptr<>, coming from the python environment. adding values to the set won't cause any troubles. But when I try to erase a ...
4
votes
2answers
132 views
How to pass a raw pointer to Boost.Python?
I'm trying to use Boost.Python as a wrapper for a C++ function that receives a pointer, modifies the data (managed on Python side as numpy array for example) and returns. How do I get Python numpy and ...
4
votes
1answer
90 views
boost.python not supporting parallelism?
I am trying to wrap a piece of C++ code into python lib using boost.python, however, I found out that multiple instances cannot run at the same time:
code (C++):
class Foo{
public:
Foo(){}
...
4
votes
1answer
72 views
Boost.Python: Take possession of argument
If I have a function that takes possession of one of the arguments, are there any call policies that I should use when I expose that function with Boost.Python?
void func(MyClass* obj)
{
// Code ...
4
votes
1answer
149 views
why is __init__ module in django project loaded twice In the same process?
I'm trying to wrap a c library in a high-level python interface with Boost.Python. One of the client contracts of the c library is that one of the handles can only be allocated once per-process. I was ...
4
votes
1answer
134 views
Inter-module exception name resolution through boost python does not work?
Here is my problem:
I have two C++ modules, A and B, which are built as dynamically-linked libraries. A offers basic math functions, and custom exception types. B is a higher level module that uses ...
4
votes
1answer
402 views
Build problems when adding `__str__` method to Boost Python C++ class
I have started to play around with boost python a bit and ran into a problem. I tried to expose a C++ class to python which posed no problems. But I can't seem to manage to implement the __str__ ...
4
votes
1answer
363 views
How to add a property to a module in boost::python?
You can add a property to a class using a getter and a setter (in a simplistic case):
class<X>("X")
.add_property("foo", &X::get_foo, &X::set_foo);
So then you can use it from ...
4
votes
1answer
445 views
Exposing a pointer in Boost.Python
I have this very simple C++ class:
class Tree {
public:
Node *head;
};
BOOST_PYTHON_MODULE(myModule)
{
class_<Tree>("Tree")
.def_readwrite("head",&Tree::head)
;
...
3
votes
1answer
94 views
Namespaces mixed up when returning scoped enum from class method
I have the following code in C++:
class Person
{
public:
enum Gender {Male, Female};
Gender GetGender() const;
}
I wrapped it in boost::python in this way:
#define ...
3
votes
2answers
166 views
Exposing a C++ class instance to a python embedded interpreter
I am looking for a simple way to expose a C++ class instance to a python embedded interpreter.
I have a C++ library. This library is wrapped (using swig for the moment) and I am able to use it from ...
3
votes
2answers
95 views
Saving state of complex, scripted objects
In C++ I have the following two classes that I expose (using Boost) to Python:
struct Foo {
// Empty
};
struct FooContainer {
// I use boost::shared_ptr for compatibility with Boost.Python
...
3
votes
1answer
130 views
pass callback from python to c++ using boost::python
I want to pass callback from my python code to c++
I want my code look something like this:
In C++ :
typedef void (*MyCallback_t) (CallbackInfo);
class MyClass
{...
void setcallback(MyCallback_t ...
3
votes
1answer
72 views
Pickling boost python functions
For the use with joblib.Parallel, I need to be able to pickle a boost::python function.
When I try to do so, I get a
TypeError: can't pickle builtin_function_or_method objects
As far as I ...
3
votes
1answer
280 views
boost.python “DLL load failed” on WinXP, VisualStudio 2005
I have problems importing a boost-python module on WinXP-32.
I'm using python 2.6.6, boost.python 1.41 precompiled libs by boostpro and VC++8 (VisualStudio 2005).
After compiling the piece of code ...
3
votes
2answers
142 views
exposing boost::tuple part of class to boost python
I've been trying to figure out how to expose a property in my class that is a boost::tuple. The tuple is defined as follows:
typedef boost::shared_ptr<Action> action_ptr;
typedef ...
3
votes
1answer
138 views
How to automatically infer the return type from a function type?
I'm using boost::python to create a Python wrapper of a C++ library. At some point, boost::python needs a pointer to a member function (or something compatible), like:
template <class MyClass, ...
3
votes
3answers
509 views
Boost::Python- possible to automatically convert from dict --> std::map?
I've got a C++ class, with a member function that can take a small-to-large number of parameters. Lets name those parameters, a-f. All parameters have default values. As a part of the python ...
3
votes
2answers
485 views
hello world python extension in c++ using boost?
Here's my simple first attempt at a python extension using boost. Can someone help me to understand what's causing the compilation error?
#include <iostream>
using namespace std;
void ...
3
votes
2answers
224 views
Python method resolution mystery
I can't figure out why this program is failing.
#!/usr/bin/env python
from __future__ import division, print_function
from future_builtins import *
import types
import libui as ui
from PyQt4 import ...
3
votes
1answer
167 views
Boost.Python and CMake Link and Load Errors
I have a main.cpp like so:
#include <boost/python.hpp>
const char* greeting()
{
return "Hello world?";
}
BOOST_PYTHON_MODULE(test)
{
using namespace boost::python;
...
3
votes
1answer
401 views
Boost-python How to pass a c++ class instance to a python class
I am new to boost python. I have to first init a cpp class instance in cpp code, and then pass this cpp instance to python code, use a python class instance to invoke it(the cpp instance). I have ...
3
votes
1answer
115 views
Create and access frozenset with Boost Python
I have some C++ methods that have std::set<std::string> as argument or return value.
I would like to map this to a Python frozenset (or regular set) but there does not seem to be a ...
3
votes
4answers
599 views
Calling Python functions from C++
I am trying to achieve call Python functions from C++. I thought it could be achieved through function pointers, but it does not seem to be possible. I have been using boost.python to accomplish this. ...