Hello, I'm new with Zeppelin and I wanted to create environment properties for
a multi-user platform. I'll use zeppelin to access my postgres database and I
want my users to just use the url string as a variable (POSTGRES_URL for
example) instead of declaring it everytime.
My idea was creating a property in the python interpreter and then access it
throught a notebook but I am unable to achieve it. I also investigated about
using z.put("url", "http://....") and z.get("url") as global variables but it
only works if my interpreter is set to global access and I am using per user
scoped process