我无法将我的 api 密钥导入到网络浏览器上的 jupyter 笔记本中,我尝试导入它,但显示 None 。我该怎么办?
我没有打印 api 密钥,因为这就是我尝试导入的内容,但它没有打印任何内容。
我 90% 确定这是一个在其他地方有答案的问题,但在这里:
# os for accessing the env
import os
from dotenv import load_dotenv, dotenv_values
# loading variables from .env file
load_dotenv() # pass a path if it's not a .env in the current working directory
# accessing and printing value
print(os.getenv("VARIABLE_NAME"))