A Dummy JupyterHub Authenticator to make testing easy
Python
Switch branches/tags
Nothing to show
Latest commit 4d2c39f Apr 30, 2017 @yuvipanda Update author email
Also 0.2 version didn't seem to 'take' properly, so uploading
again
Permalink
Failed to load latest commit information.
dummyauthenticator
.gitignore Initial commit Feb 14, 2016
LICENSE Initial commit Feb 14, 2016
README.md
setup.py

README.md

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"