我已经在我的计算机上安装了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()

08-08 01:30