7#ifndef PXR_BASE_TF_PY_INTERPRETER_H
8#define PXR_BASE_TF_PY_INTERPRETER_H
15#include "pxr/base/tf/api.h"
16#include <boost/python/handle.hpp>
17#include <boost/python/object.hpp>
20PXR_NAMESPACE_OPEN_SCOPE
57extern boost::python::handle<>
59 boost::python::object
const &globals = boost::python::object(),
60 boost::python::object
const &locals = boost::python::object()
78extern boost::python::handle<>
80 boost::python::object
const &globals = boost::python::object(),
81 boost::python::object
const &locals = boost::python::object()
84PXR_NAMESPACE_CLOSE_SCOPE
TF_API int TfPyRunSimpleString(const std::string &cmd)
Runs the given string using PyRun_SimpleString().
TF_API boost::python::handle TfPyRunFile(const std::string &filename, int start, boost::python::object const &globals=boost::python::object(), boost::python::object const &locals=boost::python::object())
Runs the given file using PyRun_File().
TF_API boost::python::handle TfPyRunString(const std::string &cmd, int start, boost::python::object const &globals=boost::python::object(), boost::python::object const &locals=boost::python::object())
Runs the given string using PyRun_String().
TF_API void TfPyInitialize()
Starts up the python runtime.