1. Samantha Groves

    Python tkinter doesnt start

    Hi.I have this code: import socket import threading from tkinter import * from tkinter import messagebox port = 2222 filename = 'records.txt' file = open(filename, 'a') clients = [] window = Tk() window.maxsize(100, 100) sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)...
  2. Khisraw

    Running Python App on multiple Machines via Google Drive

    Hi, I have built a Python GUI app with Tkinter that I aim to run on multiple Mac OS machines via google drive. The purpose of the app is to retrieve info from a spreadsheet that is stored on google drive or any other shared drive. There will be multiple apps on multiple machines on google drive...
Top