I did program in tkinter. So far I succeeded to do frontend. How to grab information to my clon server monitor? This is just screenshot but in tkinter I did excact copy of this.
Asked
Active
Viewed 202 times
0

RObertos12
- 87
- 1
- 6
-
Well if you did, it means you accomplish it. What is your question then? Please take a look at this: https://stackoverflow.com/tour – Thingamabobs Sep 04 '20 at 14:17
-
I didnt do backend it's only frontend – RObertos12 Sep 04 '20 at 14:18
-
https://stackoverflow.com/questions/37897393/simple-server-client-monitoring-tool-through-sockets-in-python – Thingamabobs Sep 04 '20 at 14:22
-
I don't know how to start with – RObertos12 Sep 04 '20 at 14:22
1 Answers
1
Go for it like this:
- write your code to gather the information in another script.
- use threading to run this script in your GUI-script.
- Use a queue.Queue to share the informations in your scripts.

Thingamabobs
- 7,274
- 5
- 21
- 54