Its unclear what you are trying to achieve; in a client-server architecture, the clients will call the server, which in turn may start up processes on their behalf and return responses to them. The reverse is not true. A server cannot install or startup up processes on independent client machines.
I assume what you meant was: a client will install your desktop GUI on their machine, run it, and then want to return the results to a central location (the server). In this case, the GUI could (behind the scenes) make a call to, say, the Django DRF (https://www.django-rest-framework.org/ ) to send those results. You could then have a front-end (also developed using Django) running on that same server which could analyse and present those results e.g. aggregate them for all your clients. The DRF could of course also be called on by the desktop to provide information (e.g. your special parameters or other data that can be used by the GUI). On Wednesday, 22 April 2020 15:22:07 UTC+2, Sharanagouda Biradar wrote: > > HI, > > I have developed a python application(GUI using Tkinter) which triggers > python test scripts automatically and gives the result But now I want to > launch this GUI App on multiple machines using a single machine(something > like server-client model), also I want to set required config parameters in > client machine using server itself. Can I achieve all this using Django? I > am very much new to Django and need to know if I can achieve this using > Django. if not kindly let me know what tool I can use to achieve this? > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/956c6935-f773-405a-ab0e-5b2aae6f1eec%40googlegroups.com.