Ipython秘密未正确存储API密钥

时间:2019-04-21 17:57:31

标签: python jupyter-notebook ipython api-key

我正在使用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')

...提示我输入API密钥... enter image description here

...然后正确显示响应。 enter image description here

文档指出"Subsequent calls to get_secret use the saved value.",但我没有得到这些结果。

此代码在下一个Jupyter单元中,还会提示我输入API密钥... enter image description here

我希望单元在不提示的情况下执行。

您能看到我所缺少的吗?也向Ipython Github Issue发布了问题。

0 个答案:

没有答案