All Projects → jupyterhub → dummyauthenticator

jupyterhub / dummyauthenticator

Licence: BSD-3-Clause license
A Dummy JupyterHub Authenticator to make testing easy

Programming Languages

python
139335 projects - #7 most used programming language

DEPRECATED

DummyAuthenticator is now a part of JupyterHub core. You can migrate to it by setting:

c.JupyterHub.authenticator_class = "dummy"

The JupyterHub documentation has more information on how to setup a development environment

Dummy JupyterHub Authenticator

Simple authenticator for JupyterHub that allows all user logins regardless of password. Useful only for testing, do not use for anything actually serious!

Installation

pip install jupyterhub-dummyauthenticator

Should install it. It has no additional dependencies beyond JupyterHub.

You can then use this as your authenticator by adding the following line to your jupyterhub_config.py:

c.JupyterHub.authenticator_class = 'dummyauthenticator.DummyAuthenticator'

Configuration

If you want, you can set a static global password for all users. This provides slightly more security, but not that much more than having no password set :)

c.DummyAuthenticator.password = "your strong password"
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].