I have a C++ application with different STL containers (vector, unordered_map, queue etc).
I would like to embed Python within this C++ application and I would like to pass these containers through to the Python class.
I am aware Boost Python allows calling C++ from Python, but how do I call Python from C++ and pass these STL containers, so Python can process them?