How to check which authenticator_class is used by jupyterhub without reading jupyterhub_config file?

Viewed 119

I'm dynamically setting different authenticator class in jupyterhub_config file.

jupyterhub_config.py

c.JupyterHub.authenticator_class = "authenticator_A"

Now i want to check which autheticator is used in notebook cell. How can i get this class without reading the file?

1 Answers
Related