如何使用 python 在内存中创建对其他进程可见的临时文件
我正在尝试用 python 编写简单的批处理文件生成器。批处理文件由大约 30-50 行文本组成,并传递给其他应用程序。在脚本执行期间,有很多对外部应用程序的调用。我想在内存中创建文件(如 win32 中的命名管道)。有没有平台无关的方法?
更新: 感谢您的建议。最后决定使用 cogen 使用套接字在应用程序之间传递消息。
I'm trying to write simple batch file generator in python. Batch file consist of about 30-50 lines of text and is passed to other applications. During the execution of script there a lot of calls to external applications. I want to create file in memory (like named pipes in win32). Is there any platform-independent way?
UPD:
Thanks for suggestions. Finally decided to use sockets for message passing between applications using cogen.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您不介意运行单独的服务器,我会使用 Memcached。它使用起来非常简单并且非常强大。
http://memcached.org/
If you don't mind running a separate server, I'd use Memcached. It's very simple to use and very robust.
http://memcached.org/