Library for intuitive and tight integration between c++ and python.
0
votes
1answer
35 views
Extracting arguments from kwargs in boost::python
I have a C++ class that I'm building into a python module using boost::python. I have a few functions that I want to take keyword arguments. I've set up wrapper functions to pass to raw_arguments and ...
0
votes
0answers
16 views
Error while running bjam in Boost Python
I have installed boostpro (boost 1.47) in my system. (Windows 7 32-bit)
when I run bjam command on "C:\Program Files\boost\boost_1_47\libs\python\example" I get the following error
C:\Program ...
0
votes
1answer
23 views
Error in building boost:python code
I've the following boost:python code(gona.cpp).
#include <iostream>
using namespace std;
void say_hello(const char* name) {
cout << "Hello " << name << "!\n";
}
...
0
votes
2answers
55 views
boost python, using a namespace other than main global
I am embedding python in my C++ application using boost python. I am a C++ programmer, with very limited knowledge of Python.
I have a C++ class, PyExpression. Each instance of this class has a ...
0
votes
1answer
33 views
How to expose std::pair to python using boost::python?
How to expose std::pair to python using boost::python? When I expose for example vector<string> I simply write:
class_<std::vector<std::string> >("StringVec")
...
0
votes
1answer
51 views
Boost python, calling function objects with a namespace
I am embedding python in my C++ application, using boost python.
I would like to be able to call a boost python function object, and associate a global name space with that function call. ...
1
vote
1answer
66 views
Getting argument list in a Boost:Python function
In CPython we can get the argument list of a function by following methods.
function name is 'aMethod'
import inspect
inspect.getargspec(aMethod)
or
aMethod.func_code.co_varnames
How can I ...
0
votes
0answers
37 views
Is there an equivalent to Boost::Python for Node.js to develop modules? [closed]
Some of you are aware of how easy it is to do a python wrapper of C++ code with Boost::Python with all the templates.
I was wondering if there was a similar API that exists for Node.js.
1
vote
2answers
51 views
Boost Python callback returning auto_ptr deletes the object
I'm creating bindings for a 3rd party library that takes ownership of objects so I'm trying to use auto_ptr as documented in the FAQ.
Here's an example of two classes I've wrapped:
typedef ...
1
vote
1answer
46 views
Having troubles with mixing library types (static vs. dynamic)
After battling my makefile woes I'm now onto problems with how the two libraries are supposed to interact. So, this is on Linux (CentOS 6.2 - 6.4, not that that seems to make much difference in terms ...
1
vote
0answers
32 views
How to expose raw byte buffers with Boost::Python?
I've got third party C++ library in which some class methods use raw byte buffers. I'm not quite sure how to deal in Boost::Python with it.
C++ library header is something like:
class CSomeClass
{
...
0
votes
1answer
40 views
How do I return a reference to a dynamic type from C++ and hold it in Python?
I'm writing some code that returns a column value from a row based on the column index. The row is updated from time to time in C++, and I'd like the python code to keep a reference to the column ...
0
votes
0answers
47 views
Linker error when building Boost.Python from source
Since I need the Boost.Python library linked with Python 3.3., I am trying to build it from source as described here, using the bjam command. The following error stops me:
cls ...
3
votes
0answers
102 views
Optimising boost::python::object instances
I recently started using Boost's Python library to wrap parts of a rather large C++ library.
Quite by chance, I discovered that every Python object created by Boost Python, is at least bigger than ...
1
vote
1answer
123 views
Boost.Python custom converter
I have a class taking a vector as parameter (a binary file content).
I would like to convert python 'str' type into vector of unsigned char but only for one of my class method.
...
0
votes
1answer
32 views
RandomForest.Writehdf5 gives boost.python argument mismatch errror
I am new to python programming. When function Vigra.learning.RandomForest.Writehdf5 is called in the python code, it gives a error as below:
self.RF.writeHDF5(fileName, pathInFile, overwriteFlag)
...
2
votes
1answer
153 views
Creating a const char* const* array
I wish to call a 3rd party library function, which accepts a const char* const* as argument type:-
class Arguments
{
public:
Arguments(int argc, const char* const* p_argv = 0);
private:
...
0
votes
0answers
15 views
Coercion from boost::python::object to C++ type
Is there a standard way to coerce a boost::python::object to a C++ datatype? I'm looking for something that behaves similarly to the old version of boost::python::extract. For example, when I want a ...
6
votes
5answers
369 views
Need help getting started with Boost.Python
I'm trying to build my first Boost.Python example.
#include <iostream>
#include <boost/python.hpp>
using namespace boost::python;
class Hello {
public:
std::string greet() {
...
1
vote
1answer
111 views
Feeding a Python list into a function taking in a vector with Boost Python
I've got a function with the signature:
function(std::vector<double> vector);
And I've exposed it, but it doesn't take in Python lists. I've looked through the other SO answers, and most ...
1
vote
1answer
95 views
boost::python - call a c++ function that takes pointer to an array
I'm a newbie to c++ and boost::python so apologies in advance.
I want to call a c++ function that takes a pointer to an array on a python list using boost::python. I have a solution like this:
//a ...
0
votes
0answers
32 views
Boost.Python invalid keyword argument crashing the interpreter
I'm trying to define a class with multiple constructors methods, some of which take keyword arguments. Everything works as expected/intended until the constructor is passed a bad parameter list, in ...
1
vote
1answer
119 views
How to expose C++ classes with const_iterator
I am using Boost.Python to expose a 3rd party C++ API.
A header file I've come to declares an iterable class (has begin and end methods), and a custom iterator class with which to do the iteration:-
...
1
vote
1answer
77 views
Define a boost::function with a docstring (Boost::Python)
I simply have a function object:
boost::function<int(int)> func = /** ... **/;
And want to expose it to Python with a docstring.
But the obvious:
def("func", func, "Some boring documentation ...
1
vote
1answer
167 views
Boost Python Hello World example not working in Python, AGAIN
I have the same problem than the guy here
Boost Python Hello World example not working in Python
who solved his problem, without indicating how. The posts there being quite old, after having posted ...
0
votes
1answer
46 views
strange timing of the python extension execusion or building boost.python with --threading=single
I got very strange behavior of my python extension built with the boost.python library. Namely, in the piece of code:
import my_ext
j = 0
while j<5:
print j
my_ext.do_something(j)
j = ...
1
vote
0answers
143 views
Error compiling Boost.Python quickstart
I've been trying to compile the Boost.Python 'quickstart' ($BOOST_PATH\libs\python\examples\quickstart) examples and have run into an issue.
First, my environment:
OS: Windows 7 Ultimate 64 bit
...
2
votes
1answer
112 views
manually building a python extension in cygwin with boost.python
Sorry for such a general title, but i'm not quite sure what exactly i'm missing or what i'm doing wrong. My aim is to build a python extension using boost.python under cygwin and avoiding boost.build ...
0
votes
0answers
37 views
Boost python: linking problems
i have created a program in C++, and i have a shared library (_gua.so) in which i use some boost python stuff. When i try to import the library in python import _gua.so i get an error :
In [1]: ...
0
votes
0answers
39 views
how to encapsulate union type (C++code ) to python using boost.python
I'm using boost.pyhon to encapsulate my C++ code into python code. There exists a union type in my code.
This is the code:
class Items
{
public:
int ParaID;
int DataType;
USS_Data value;
...
0
votes
0answers
64 views
Shared pointer to a vector..in boost::python?
I'm trying to expose a class with a method that takes a boost::shared_ptr< std::vector < MyClass > > using boost::python, and I'm not entirely sure how to do so...
The ideal interface ...
0
votes
1answer
93 views
How does boost::python work?Any ideas about the realisation details?
I'm a newbie to boost and one of its libraries which I can't understand it is Boost.Python. Can anyone explain me in details how does this interoperability achieved?In the documentation there only a ...
0
votes
1answer
105 views
Boost.Python - How to re-enter module scope?
I'm exposing some C++ classes to Python that have nested enum's. Looking at the example documentation at boost.org and wiki.python.org, I can't see how to leave a scope once it has been entered, in ...
0
votes
1answer
153 views
Unable to build Boost.Python
I am trying to build boost.python. Following this link for building it.
Earlier, when I ran to compile using ./b2 or ./bjam, I was getting error like
error: No best alternative for ...
0
votes
2answers
145 views
Expose a non-const but noncopyable member in Boost Python
Here's my problem:
I have two classes like these:
class Signal {
public:
void connect(...) { sig.connect(...); }
private:
boost::signal2::signal sig;
};
class MyClass {
public:
Signal ...
2
votes
1answer
103 views
How to assign in c++ an object created in python?
I've basically have a very simple node test case I'm trying to fix.
I have a simple Node class with a getChild and a getParent
The child can be assigned via the addChild function
Then this function ...
0
votes
1answer
39 views
Prevent automatic hash function for mutable classes
Python allows hash values only for immutable objects. For example,
hash((1,2,3))
works, but
hash([1,2,3])
raises a TypeError: unhashable type: 'list'. See the Python documentation. However, when ...
0
votes
0answers
58 views
wrapping a string/shared_ptr unordered_map with map_indexing_suite in boost python
I'm trying to wrap a boost::unordered_map using the map_indexing_suite utility in boost python. However, anytime I attempt to do so, I'm encountering the error
Error 26 error C2039: 'key_comp' : ...
0
votes
0answers
28 views
Access STL/Boost parts of application with Boost::Python
I have an application to which I'm adding Python extensions using Boost::Python. Previously I linked to the extension library statically and that worked as expected. But I want to build the Python ...
1
vote
1answer
50 views
How do I get boost-bjam to properly id my libraries when they build?
On Debian/squeeze in /usr/lib I have:
/usr/lib/libboost_python-py25.so /usr/lib/libboost_python-py26.so
I'm trying to build
/usr/lib/libboost_python-py27.so
to go with a pythonbrewed ...
0
votes
0answers
54 views
Boost loads all registered exception with every method/function call
I saw in my call stack that Boost translates ALL my registered(register_exception_translator) exceptions always before executing class method. Every time!
That is madness and not good for ...
0
votes
0answers
47 views
Building PyV8 (a C++/Python project) from source in Windows
How do you get started running (and debugging) a C++/Python combined project?
So far I've started with the basics:
Checking out the project from source ...
0
votes
0answers
77 views
Expose C++ dynamically in boost.python
I'm wondering if boost.python allows C++ functionality to be exposed to python after the module has loaded. For example it would be nice if something like this might work:
#include ...
0
votes
0answers
121 views
boost::python::exec_file not closing file descriptor with python 2.7
I am trying to execute a python script in my c++ code using python2.7 and boost1.47.0
Here is the code:
#include "boost/python.hpp"
#include <iostream>
int main(int argc, char** argv)
{
...
0
votes
2answers
109 views
A error about converting Python binary to C++ binary in boost.python
I have to convert some binary from Python to C++ by boost::python.The binary maybe come from image or text file.But some error occur for converting the image file's binary into c++.The following is an ...
2
votes
1answer
79 views
Amending a Boost Python wrapper class?
How do I access the boost::python::class_ object that's been registered for a given C++ class? I'm importing a boost::python module which defines a wrapper for boost::property_tree::ptree, but I would ...
2
votes
3answers
179 views
boost python explicit typecast needed
I have hybrid system (c++, boost python).
In my c++ code there is very simple hierarchy
class Base{...}
class A : public Base{...}
class B : public Base{...}
2 more business (on c++) methods
...
1
vote
2answers
158 views
Make Boost Python not delete the C++ object in destructor
I'm creating bindings for a subset of wxWidgets using Boost Python. Window objects in wxWidgets should not be deleted manually since they handle their own deletion: for example, when a top level ...
1
vote
2answers
95 views
Several virtual member functions with different signature
I'm using Boost Python to provide a python interface to some classes in C++.
I have found this situation that I'm not sure how to solve:
I have a class that has this member functions:
virtual void ...
0
votes
1answer
291 views
Runtime error R6034 in embedded Python application
I am working on an application which uses Boost.Python to embed the Python interpreter. This is used to run user-generated "scripts" which interact with the main program.
Unfortunately, one user is ...