Communicating between Autohotkey and python

℡╲_俬逩灬. 提交于 2019-12-03 12:45:34

The way you got it working is the easiest, and probably best, method of accomplishing what you want.

Communication between applications can be done with more methods then you probably can imagine, but as long as it doesn't have to be realtime you can call your programs with arguments, as it is easy and reliable.

Inter-process communication would be capable of sending the information while the Python script is already running.

Forum thread: http://www.autohotkey.com/forum/topic21699.html (there's a nice documentation link in that post)

You could also use TCP/IP Network communication (like in the post below), but that probably wouldn't be quite as slick as using IPC.

Forum thread: http://www.autohotkey.com/forum/topic13829.html

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!