Metadata-Version: 2.1
Name: pycheck_domain
Version: 1.0.1
Summary: 域名助手
Home-page: https://github.com/buyfakett
Author: buyfakett
Author-email: buyfakett@vip.qq.com
License: MIT
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: dnspython
Requires-Dist: pyOpenSSL

<h1 align="center">pycheck_domain</h1>

- check_domain.py

检测域名是否做了dns解析，使用示例：

```python
if not check_domain(domain):
	return resp_400()
else:
	return resp_200()
```

检测ssl证书的开始时间和到期时间，使用示例：

```python
start_time, end_time = check_ssl(domain_path)
```
