| 224 | void EmbeddedPython::eval_file(const std::string &pyfile) const { py::eval_file(pyfile); } |
| 225 | |
| 226 | nlohmann::json EmbeddedPython::eval(const std::string &pystring) const { |
| 227 | return py::eval(pystring); |
| 228 | } |
| 229 | |
| 230 | nlohmann::json |
| 231 | EmbeddedPython::eval(const std::string &pystring, const nlohmann::json &locals) const { |