我正在使用Ipython Secrets库(from ipython_secrets import *
)在Jupyter Notebook中隐藏API密钥。
第一次调用时效果很好。
第一个get_secrets()
呼叫...
from ipython_secrets import *
AzureMapsSubscriptionKey = get_secret('AzureMapsSubscriptionKey')
print('AzureMapsSubscriptionKey has', len(AzureMapsSubscriptionKey), 'characters')
文档指出"Subsequent calls to get_secret use the saved value."
,但我没有得到这些结果。
此代码在下一个Jupyter单元中,还会提示我输入API密钥...
我希望单元在不提示的情况下执行。
您能看到我所缺少的吗?也向Ipython Github Issue发布了问题。