Metadata-Version: 2.1
Name: verify-domain-cert
Version: 0.1.4
Summary: Verify if a domain certificate has expired
Home-page: https://github.com/zhaifg/check_ssl
Author: JenGuo Zhai
Author-email: zhaifengguo@gmail.com
Requires-Python: >=3.11,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: idna (>=3.6,<4.0)
Requires-Dist: pyopenssl (>=24.0.0,<25.0.0)
Project-URL: Repository, https://github.com/zhaifg/check_ssl
Description-Content-Type: text/markdown

## install 
```bash
pip install verify_domain_cert

```

## usage

```bash
verify_domain_cert https://www.google.com https://www.baidu.com

```

```python

from verify_domain_cert.check import get_certificate

get_certificate("https://www.google.com")

```
