breakdef save_file(filename, filedata): with open(filename, "wb") as f: f.write(filedata)def send_all_files(sock, files_queue): while not files_queue.empty(): filepath = files_queue.get() filename = os.path.basename(filepath) print(filename) with open(filepath, "rb") as f: data = f.read() sock.sendall(("#fileData#%s#" % filename).encode() + data)def accept_connections():