Comment on page
Jupyter
Interact with Jupyter app

Project Jupyter
Website
You must Connect before any other methods
You should get your token here :
In Naas cloud you can connect without any argument it will find your token alone
token = "*****"
jp = naas_drivers.jupyter.connect(token)
me = jp.get_me()
Only Naas admin can do it.
users = jp.get_users()
email = "[email protected]"
user = jp.get_user(email)
Get one Authorization for user.
email = "[email protected]"
is_authorize = jp.get_authorize_user(email)
Authorize one user.
check if user has running server
email = "[email protected]"
active = jp.is_user_active(email)
change password of one user
email = "[email protected]"
uptime = jp.get_server_uptime(email)
email = "[email protected]"
jp.stop_user(email)
email = "[email protected]"
jp.start_user(email)
email = "[email protected]"
jp.restart_user(email)