如何将 Python 的 getpass() 重定向到 stderr?

发布于 2024-11-17 18:08:08 字数 477 浏览 0 评论 0原文

我正在尝试编写一个程序,它将其提示打印到标准错误,并将其输出打印到标准输出,以便我以后可以操作输出。

我对 python 有点陌生,但是 getpass() 的文档 显示我应该能够选择一个流:

getpass.getpass([prompt[, stream]])

我已经尝试了 getpass 的各种参数,但我似乎无法让它在 stderr 中提示。任何帮助将不胜感激,谢谢。

>>> password = getpass.getpass("Password", sys.stderr)
TypeError: unix_getpass() takes at most 1 argument (2 given)

I'm trying to write a program that is going to print its prompts to standard error, and its output to standard out so that I can later manipulate the output.

I'm a bit new to python, but the documentation for getpass() shows I should be able to select a stream:

getpass.getpass([prompt[, stream]])

I have tried a variety of arguments to getpass, but I cant seem to get it to prompt in stderr. Any help would be appreciated, thank you.

>>> password = getpass.getpass("Password", sys.stderr)
TypeError: unix_getpass() takes at most 1 argument (2 given)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我也只是我 2024-11-24 18:08:08

getpass.getpass() 的流参数是在 python 2.5 中添加的,在之前的版本中不可用。

the stream argument to getpass.getpass() was added in python 2.5, and isn't available in prior versions.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文