Giter Site home page Giter Site logo

Comments (4)

schramm avatar schramm commented on July 28, 2024 1

Ha! I definitely need to learn python. thank you a lot!

from pybind11_json.

martinRenou avatar martinRenou commented on July 28, 2024

Do you mind showing the code of the class? I don't see what's wrong with this code.

from pybind11_json.

schramm avatar schramm commented on July 28, 2024
class myClass
{
public:
    void take_json(const nlohmann::json& json) {
        std::cout << "This function took an nlohmann::json instance as argument: " << json.dump() << std::endl;
    }
};

PYBIND11_MODULE(myModule, module)
{
        py::class_<myClass>(module, "myClass") // for inheritance, we must include the base class
        .def(py::init<>())
        .def("take_json", &myClass::take_json, "pass py::object to a C++ function that takes an nlohmann::json");
}

on python:


a=myModule.myClass
a.take_json({"a": 1})

---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
<ipython-input-5-97ad54179472> in <module>
      1 a=myModule.myClass
----> 2 a.take_json({"a": 1})

TypeError: take_json(): incompatible function arguments. The following argument types are supported:
    1. (self: myModule.myClass, arg0: json) -> None

Invoked with: {'a': 1}

from pybind11_json.

JohanMabille avatar JohanMabille commented on July 28, 2024

Looks like you forgot the parenthesis at the end of the first line of python

from pybind11_json.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.