I would like to migrate a PyGtk (&PyUSB) application using GLADE and CSS files from a Debian9 (linux) PC into a Windows10 PC. What would be the recommendation? a) rewrite in PyQt? b) rewrite in C++ & Qt? c) .. just implement a Python and Gtk environment in Windows10? Perhaps there is not a general answer and I should try c) before I rewrite the whole application? Any recommendation is welcome (I dont know Qt and C++.. so, it could be time consuming to do a) or b) for me). Any new recommendation is welcome.
The PyGtk application starts with
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk as gtk, Gdk as gdk, GLib, GObject as gobject
gobject.threads_init()
from datetime import datetime, timedelta
import time
import threading