Python Forum
How to send data from a python application to an external application - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: How to send data from a python application to an external application (/thread-34371.html)



How to send data from a python application to an external application - aditya_rajiv - Jul-26-2021

I wanted to know a way to send some data from a python application to another application. The other application i am referring to over here runs on the same machine as that of the python application.
Dtaa should be sent in such a way that the change in data must be reflected on the desired parameter in the external application.
Please help me.


RE: How to send data from a python application to an external application - ndc85430 - Jul-26-2021

This is all a bit vague. We need more information, for example: what is the other application? What OS are you running on? What kind of data? Is there anything else you feel is relevant to know? Try to give us enough information to help you. Are you able to use the facilities your OS provides for inter-process communication (e.g. pipes at least on UNIX)?