Sample code for 30+ languages & platforms
CkPython

Windows Certificate Stores - Find Certificate by Common Name

See more Certificates Examples

Searches the Windows certificate stores for a certificate that matches the specified common name (CN).

Note: This example requires Chilkat v10.0.0 or greater.

Chilkat CkPython Downloads

CkPython
import sys
import chilkat

success = False

cert = chilkat.CkCert()
success = cert.LoadByCommonName("Chilkat Software, Inc.")
if (success == False):
    print(cert.lastErrorText())
    sys.exit()

print(cert.subjectDN())
print("Success.")