how do you know you're not getting errors when your except clause is ignoring any errors?
replace the pass (temporarilly ... replace exception with actual exception later) with:
replace the pass (temporarilly ... replace exception with actual exception later) with:
#at start or program import sys # ... #Replace pass with: print("Unexpected error:", sys.exc_info()[0])This will show all errors.