Hacker News new | ask | show | jobs
by dilawar 1268 days ago
+1 for pybind11. I wrote python bindings using pybind11 for two C++ based simulators: MOOSE and Smoldyn. It was surprisingly easy to use given how badly Python C-API and c++ tooling suck. Though you have to create binary wheels for every version of python and platform separately.
1 comments

> Though you have to create binary wheels for every version of python and platform separately.

cibuildwheel makes this easy.