在 jupyter notebook 中处理密码
Handling password in jupyter notebook
如何在 jupyter notebook 中不以明文形式存储密码?
使用 input()
和 remove-output
标签?
最简单的方法是使用getpass标准库:
from getpass import getpass
pw = getpass('Input password: ')
如何在 jupyter notebook 中不以明文形式存储密码?
使用 input()
和 remove-output
标签?
最简单的方法是使用getpass标准库:
from getpass import getpass
pw = getpass('Input password: ')