Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 245 Bytes

README.rst

File metadata and controls

13 lines (7 loc) · 245 Bytes

### Example usage

ssl_checker = SSLChecker(url_to_check)

if __name__ == "__main__":

url_to_check = "https://www.google.com"

ssl_checker = SSLChecker(url_to_check)

ssl_info = ssl_checker.check_ssl_security()

print(ssl_info)