在 Python 中使用 credstash
Using credstash in Python
我已经在我的电脑上安装了 credstash。我可以在命令提示符下使用 "credstash get [credential]" 等命令。
但是,在 python 解释器中,在我使用 "import credstash" 之后,我在尝试使用 "credstash get [credential]" 命令时遇到语法错误:
>>> import credstash
>>> credstash get credstash
File "<stdin>", line 1
credstash get credstash
^
SyntaxError: invalid syntax
该语法适用于命令行,对于 python 你应该使用 credstash.getAllSecrets()
或 credstash.getSecret()
我已经在我的电脑上安装了 credstash。我可以在命令提示符下使用 "credstash get [credential]" 等命令。
但是,在 python 解释器中,在我使用 "import credstash" 之后,我在尝试使用 "credstash get [credential]" 命令时遇到语法错误:
>>> import credstash
>>> credstash get credstash
File "<stdin>", line 1
credstash get credstash
^
SyntaxError: invalid syntax
该语法适用于命令行,对于 python 你应该使用 credstash.getAllSecrets()
或 credstash.getSecret()