You should use at least except Exception:
to avoid catching system exceptions like SystemExit
or KeyboardInterrupt
. Here's link to docs.
In general you should define explicitly exceptions you want to catch, to avoid catching unwanted exceptions. You should know what exceptions you ignore.