python 中类似窗口的命令提示符

发布于 2024-11-19 23:19:04 字数 89 浏览 1 评论 0 原文

我需要一个像命令提示符一样的 python 窗口来在 Windows 操作系统中运行 ssh 客户端程序。我只需要一个窗口来接受用户输入并显示命令提示符之类的输出。

I need a window in python like a command prompt to run ssh client program in windows os. I just need a window to accept user input and show output like command prompt.

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

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

发布评论

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

评论(1

热鲨 2024-11-26 23:19:04

确实没有这样的小部件。我只需创建一个或两个文本控件来接受用户的输入,然后创建一个按钮来运行它。如果您使用子进程,您也许可以使用本文中介绍的过程将输出重定向到您的程序:

http://www.blog.pythonlibrary.org/2010/06/05/python-running-ping-traceroute-and-more/

或者您可能需要查看wx.PyOnDemandOutputWindow 类。

There really isn't a widget like that. I would just create a text control or two to accept the user's input and then a button to run it. If you use subprocess, you might be able to use the process that's explained in this article to redirect the output to your program:

http://www.blog.pythonlibrary.org/2010/06/05/python-running-ping-traceroute-and-more/

Or you might need to take a look at the wx.PyOnDemandOutputWindow class.

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