Nothing
PythonClass <- R6::R6Class(
classname = "PythonClass",
public = list(
set_python_class = function(py_class) {
private$python_class = py_class
},
get_python_class = function() {
private$python_class
}
),
private = list(
python_class = NULL
)
)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.