After catching aiohttp.ClientConnectorCertificateError it seems logical to be able to get hold of the certificate that caused that error or of its fingerprint. Can one do it with aiohttp?
try:
...
except aiohttp.ClientConnectorCertificateError as e:
...what can be done here to get info about the offending certificate?