Write in Python and R on same Dash project

Hi everyone, I’m new to Dash and web development and I am trying to understand if it will fit my needs correctly before using it. Maybe my question is very naive but I will still try.

My question: Is it possible to run both an R and python script on the same web-app? I know you can develop your dash web app in python or R but I wanted to know if I could combine both on the same web-app.

Thank you very much :slight_smile:

Hi @Mikado,

I would use 2 approach:

1- Run dash using python, and if any additional R library is necessary, I would use rpy2.

2- Use Shinyproxy, then you can run on the same domain, different applications using dash and shiny (on separated containers).