Settings

Theme

Cppyy – Automatic Python-C++ bindings

cppyy.readthedocs.io

68 points by d3k 7 years ago · 24 comments

Reader

kazinator 7 years ago

How does this know the difference between:

  const char *cls::func(void)
  {
     return "abc"; // static: caller must not free
  }
and

  const char *cls::func(void)
  {
     return strdup("abc"); // caller must free
  }
Edit: I see: designed for large scale programs in high performance computing that use modern C++.

Modern C++ meaning, no pointers anywhere.

malkia 7 years ago

There is also the less known https://github.com/google/clif (but not automatic)

backslash_16 7 years ago

From the comments below, it sounds like interfacing my C++ code with python using Cppyy would sacrifice performance.

Even so this will be awesome for unit testing. I really like the testing interface pytest provides, along with its parametrized tests.

Anyone else using python to test the logic their C/C++ code? I can't think of how I would test the memory allocation and freeing portion. Anyone think it's a bad idea?

  • rightbyte 7 years ago

    The fuzz converting data types back and forth is probably not worth it.

    But one can test the interface to the program nicely from python (i.e. text or socket i/o).

gshulegaard 7 years ago

This is super interesting but if I am looking to bring C++ into my Python code base it would be because performance is important enough to do so. With that in mind I am not sure how this stacks up against compiled half steps like Cython or foreign function interfaces likes ctypes or CFFI instead.

jrussino 7 years ago

I need to create Python bindings for a C++ library and after a brief survey of the available options was planning on using SWIG (http://www.swig.org/tutorial.html). How does this compare?

  • mochomocha 7 years ago

    SWIG is not always smooth to use, and you need to write interface files manually which in my experience are hard to debug. In Cppyy it looks like you don't have to do any of that.

  • orbifold 7 years ago

    Use pybind11 super easy to get startet with and reasonably easy to automate with libclang if your C++ API is simple.

hatred 7 years ago

Does anyone know of any well known tools that generate bindings in other languages e.g., Python from C++ code?

IIUC, this tool does the opposite i.e., generate C++/other language bindings from Python

  • dangerbird2 7 years ago

    The entirety of cpython’s runtime is exposed as a C api, so you can easily manipulate python objects in c or any language with a ffi. boost::python provides a c++ wrapper for cpython, which can be used to call both c/c++ in python and vice versa

corysama 7 years ago

> PyPy 5.7 and 5.8 have a built-in module cppyy.

Nice.

adenner 7 years ago

How does this compare to pybind11?

  • carlsonmark 7 years ago

    If you have a C++ project, you want to have Python bindings, and you don't want to share your header files, pybind11 is the way to go.

    If you want to / can share your header files, cppyy is a very convenient way of being able to call your C++ code from Python. I'm not sure if there is a way to use it without headers.

    • d3kOP 7 years ago

      One thing I wanted to do for a project at work is to add python bindings to our c++ library, having the least effort for having a decent python binding. Two features I am looking for are support for return values of custom objects of arbitrary size and c++ exceptions raising python exceptions. Cppyy seems to support these, do you know if/how they work on pybind11?

    • rightbyte 7 years ago

      How do you link any cpp binary without headers without guessing the calling convention?

      • carlsonmark 7 years ago

        It's not so much that you never have the headers... more that you don't always want to provide the headers to everyone (since they may contain things you don't want to share.)

        I looked into it a bit further, and cppyy does have provisions for this: https://cppyy.readthedocs.io/en/latest/bindings_generation.h...

        I may have misread that page, but it looks like you can create a .rootmap and .pcm file and distribute that instead of the C++ headers.

ttul 7 years ago

Google PyInline

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection