Calling R function (that creates a shiny app) from Python

Hello everyone!

I made up a function in R that makes a shiny dashboard as a function of several arguments.
Everything works well, problem is that (for some reason) some of my colleagues are working from Python!

I want to make my function accessible from Python as well but I'm not sure how to do that, I thought about using plumbeR in order to make a restAPI, but I'm not sure if it can handle shiny apps.

Any ideas?

Just for some context, here is an example for a function that is similar to mine:

shiny_maker <- function(title){
ui <- fluidPage(
titlePanel(title)
)
server <- function(input, output){
}
shinyApp(ui = ui, server = server)
}

shiny_maker("just a title")

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.