Just a quick and dirty hack to "solve" HTTPS issues with self-signed certs. Simply add the following two lines to `gwtenum.py`: ``` python import ssl ssl._create_default_https_context = ssl._create_unverified_context ``` Happy hacking!