Run python code in server with client files using sockets [closed]

I created a Django project that prints a sentence when a button clicks. Here instead of printing the sentence, I want to run a python function that updates an excel file in the client machine. I can run the function but I don't know how to update the excel file on the client machine. As of now, I have hard-coded the client address and I have also created a small exe file that runs in the background of the client machine, that listens to the particular IP address of the server. I am not able to figure out given the client excel location, client, and server connected via sockets, how to update the excel sheet in the client.

Back to Top