I am making my way through python. Currently, I have a software where users will input some data and based on the data they enter they will get some output. At the moment, the software will be distributed as an exe file for windows users.
What I hope I can do now, is to let the software communicate with me over internet. I want the user input values that they put to be sent to me online. This will allow me to monitor my software performance and improve the service overtime with new releases.
Are there suggestions how to achieve this effeciently and in a relatively easy and straight forward manner?
Thank you in advance!
requestsmodule or similar, which will work in a separate thread for not block your program execution oraiohttpin case if you use asyncio. if you wanna make communication-based on TCP or UDP sockets are the way to go also you can check the library (twisted). Another option is to use a WebSockets with thattornadokan help you