How to pass arguments (query_args) to a python shiny app ?

Hi, is there a way to get the query arguments for a pyhton shiny app sitting on shinyapps.io, like https://shinyapps.io/myapp/?q=something&s=somethingelse ???

I see R version can extract this from the session$userData$query_args, but I can't find any similar way for python.

I need something like this: Shiny - Learn about your user with session$clientData.._ga_2C0WZ1JHG0MTY4OTM1NTEwOS4xNC4xLjE2ODkzNTUzMjUuMC4wLjA.

but for python

thanks a lot

In Python, you can pass arguments (query_args) to a Shiny app using the shiny package from the reticulate library, which allows you to integrate R and Python code seamlessly.