python3实现域名查询和whois查询功能

作者:qianglee 时间:2023-09-19 19:35:12 

1. 域名查询

万网提供了域名查询接口,接口采用HTTP协议:

接口URL:http://panda.www.net.cn/cgi-bin/check.cgi

接口参数:area_domain,接口参数值为标准域名,例:doucube.com

调用举例:

http://panda.www.net.cn/cgi-bin/check.cgi?area_domain=doucube.com

返回:


<?xml version="1.0" encoding="gb2312" ?>
- <property>
<returncode>200</returncode>
<key>doucube.com</key>
<original>211 : Domain name is not available</original>
</property>

返回结果说明:


<returncode>200</returncode> 返回码,200表示返回成功
<key>doucube.com</key> 表示当前查询的域名
<original>211 : Domain name is not available</original> 返回结果的原始信息,主要有以下几种

original=210 : Domain name is available  表示域名可以注册
original=211 : Domain name is not available 表示域名已经注册
original=212 : Domain name is invalid  表示查询的域名无效
original=213 : Time out 查询超时

用python3实现如下

1.1 查询已经被注册的域名


import urllib.request
req = urllib.request.urlopen('http://panda.www.net.cn/cgi-bin/check.cgi?area_domain=doucube.com')
print(req.read().decode())

返回结果:不可用,已经被注册


<?xml version="1.0" encoding="gb2312" ?>
- <property>
<returncode>200</returncode>
<key>doucube.com</key>
<original>211 : Domain name is not available</original>
</property>

1.2 查询没有被注册的域名

req2 = urllib.request.urlopen('http://panda.www.net.cn/cgi-bin/check.cgi?area_domain=doucube.net')
print(req2.read().decode())

返回结果:可用,未被注册


<?xml version="1.0" encoding="gb2312" ?>
- <property>
<returncode>200</returncode>
<key>doucube.net</key>
<original>210 : Domain name is available</original>
</property>

1.3 查询不存在的域名,使用不存在的后缀

req3 = urllib.request.urlopen('http://panda.www.net.cn/cgi-bin/check.cgi?area_domain=doucube.net2')
print(req3.read().decode())

返回结果:域名无效


<?xml version="1.0" encoding="gb2312" ?>
- <property>
<returncode>200</returncode>
<key>doucube.net2</key>
<original>212 : Domain name is invalid</original>
</property>

.whois查询

由于没有找到像域名查询接口那样好的API,这里直接抓取站长之家的whois查询页面(http://whois.chinaz.com/)


req_whois = urllib.request.urlopen('http://whois.chinaz.com/doucube.com')
print(req_whois.read().decode())

在返回的结果中有这样一段html代码,这段信息就是查询的whois信息


<div style=" text-align:center;">
<div class="div_whois">
 域名:doucube.com&nbsp;&nbsp;
 <a href='http://www.doucube.com' target=_blank>访问此网站</a></div>
<div id="whoisinfo" class="div_whois">
 注册商:GODADDY.COM, LLC<br/>
 域名服务器:whois.godaddy.com<br/>
 DNS服务器:DNS1.FREEHOSTIA.COM<br/>
 DNS服务器:DNS2.FREEHOSTIA.COM<br/>
 域名状态:运营商设置了客户禁止删除保护<br/>
 域名状态:运营商设置了客户禁止续费保护<br/>
 域名状态:运营商设置了客户禁止转移保护<br/>
 域名状态:运营商设置了客户禁止修改保护<br/>
 更新时间:2012年05月28日<br/>
 创建时间:2012年05月23日<br/>
 过期时间:2013年05月23日<br/>
 联系人:zhu, alice<br/>
 联系方式:<img src="/displayemail.aspx?email=M8N8oc1O|iQhqGCDHdpH9m77v2qrQfW8"/>
 <br/>
 <br/>
</div>
</div>

来源:https://blog.csdn.net/qianglee/article/details/17482645

标签:python3,域名查询
0
投稿

猜你喜欢

  • Python的爬虫包Beautiful Soup中用正则表达式来搜索

    2022-12-29 07:15:34
  • ASP连接MySQL数据库的方法

    2010-03-14 11:25:00
  • Python 数据可视化之Matplotlib详解

    2022-12-30 05:33:21
  • Python xlrd读取excel日期类型的2种方法

    2021-06-28 02:12:53
  • Python基础 while循环与break、continue关键字

    2023-11-19 03:41:42
  • mysql慢查询优化之从理论和实践说明limit的优点

    2024-01-26 11:59:51
  • asp上传文件自动重命名方法

    2007-08-24 09:46:00
  • oracle数据库下统计专营店的男女数量的语句

    2012-07-11 16:01:17
  • 在Pandas中DataFrame数据合并,连接(concat,merge,join)的实例

    2022-01-10 00:11:57
  • Python实现Pig Latin小游戏实例代码

    2022-06-27 04:15:36
  • python对输出的奇数偶数排序实例代码

    2023-02-17 17:55:16
  • 解析:轻松掌握 字符串文字字符集和校对

    2008-12-17 17:07:00
  • Python正则表达式 r'(.*) are (.*?) .*'的深入理解

    2022-02-28 09:40:48
  • python登录WeChat 实现自动回复实例详解

    2021-05-25 03:22:22
  • 基于python+opencv调用电脑摄像头实现实时人脸眼睛以及微笑识别

    2023-07-08 23:31:14
  • python简单猜数游戏实例

    2023-10-05 21:31:55
  • MySQL中LAG()函数和LEAD()函数的使用

    2024-01-27 14:05:35
  • python爬虫headers设置后无效的解决方法

    2021-09-04 00:55:17
  • Python实现遗传算法(虚拟机中运行)

    2022-07-10 18:48:07
  • 《HTML5设计原理》读后随记

    2011-01-25 12:26:00
  • asp之家 网络编程 m.aspxhome.com