Create a python class — PyClass (original) (raw)
Create a python class
PyClass(classname, defs = list(), inherit = NULL)
Arguments
Name of the class. The class name is useful for S3 method dispatch.
A named list of class definitions - functions, attributes, etc.
A list of Python class objects. Usually these objects have the python.builtin.type
S3 class.
Examples
if (FALSE) { # \dontrun{
Hi <- PyClass("Hi", list(
name = NULL,
`__init__` = function(self, name) {
self$name <- name
NULL
},
say_hi = function(self) {
paste0("Hi ", self$name)
}
))
a <- Hi("World")
} # }