python实现dnspod自动更新dns解析的方法
这篇文章主要介绍了python实现的dnspod自动更新dns解析的方法,需要的朋友可以参考下
代码如下:
def ddns():
"""
用当前ip更新ddns
"""
headers = {"Content-type": "application/x-www-form-urlencoded", "Accept": "text/json"}
conn = httplib.HTTPSConnection("dnsapi.cn", timeout=30)
conn.request("POST", "/Record.Ddns", urllib.urlencode(ddns_params), headers)
response = conn.getresponse()
# print response.status, response.reason
# data = response.read()
# print data
conn.close()
return response.status == 200
- 上一篇:python实现排序算法
- 下一篇:python时间整形转标准格式的示例分享
精彩图集
精彩文章