Update vdiclient.py

Fallback to Tkinter if QT not available.
This commit is contained in:
jpattWPC 2022-04-20 08:56:30 -05:00
parent 21c061ebfc
commit 2368e7c4a5

View File

@ -1,6 +1,9 @@
#!/usr/bin/python3
import proxmoxer # pip install proxmoxer
try:
import PySimpleGUIQt as sg # pip install PySimpleGUIQt
except ImportError:
import PySimpleGUI as sg # pip install PySimpleGUI
import requests
from configparser import ConfigParser
import random