Azure Modded Script Gui Page

root = tk.Tk() root.title("Azure Modded Script GUI")

# Create credentials and client credential = DefaultAzureCredential() compute_client = ComputeManagementClient(credential, subscription_id) Azure Modded Script Gui

start_button = tk.Button(root, text="Start Server", command=start_server) start_button.pack() root = tk