2

我已经在我的电脑上安装了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
4

1 回答 1

3

该语法适用于命令行,对于python,您应该使用credstash.getAllSecrets()credstash.getSecret()

于 2016-11-23T13:41:24.930 回答