Convert Python bytes to an R character vector
# S3 method for python.builtin.bytes
as.character(x, encoding = "utf-8", errors = "strict", ...)
object to be coerced or tested.
Encoding to use for conversion (defaults to utf-8)
Policy for handling conversion errors. Default is 'strict' which raises an error. Other possible values are 'ignore' and 'replace'.
further arguments passed to or from other methods.