Hello. I would like to be able to access a query string within my app, and then store it in a session state, such that all of my functions can access it.
Example: I would like to open http://localhost:8000/?pizza=margarita, and then store "margarita" with a session variable, such that all my functions know that we are dealing with a margarita.
I have found some relevant information for R (getQueryString), but so far nothing for Python. I have inspected the server()'s session.http_conn object and all of its attributes, but unfortunately I can't find anything.
I suppose there are two questions: 1) how can I access a query string (pizza=margarita) and 2) what is the best way to store a session variable in Shiny for Python?