如何通过更改输入来启动 python 程序?
我有一个用 python 制作的应用程序,该应用程序从一个名为 input.txt 的单独文本文件获取输入,我必须以这样的方式设计该应用程序:应用程序会自动运行 input.txt 的任何输入。这样我就不需要进入命令提示符并运行程序,如果我给出输入,或者更改 input.txt 中存在的文本,python 程序应该自动开始执行。
请帮我解决这个问题:)
谢谢:) :)
I have an application made in python, this application takes input from a separate text file called input.txt, i have to design the application in such a way that application runs automatically with any input to input.txt. Such that i need not go to command prompt and run the program, if i give the input, or change the text present in input.txt, python program should start execute automatically.
Please help me out with this :)
Thank you :) :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以运行一次程序并观察新文件或修改文件的文件系统更改。尝试在 Linux 上使用 python-inotify:
https://github.com/seb-m/pyinotify
You can run your program once and watch the filesystem changes for new or modified file. Try using python-inotify for linux:
https://github.com/seb-m/pyinotify