1 Star 0 Fork 8

万孝勇/pyDNSpod

forked from 打望两江/pyDNSpod 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
dnspod_os.py 1.40 KB
一键复制 编辑 原始数据 按行查看 历史
打望两江 提交于 2013-08-27 15:16 . migrate from geekpi to osc
#!/usr/bin/env python
#-*- coding:utf-8 -*-
import httplib, urllib
import socket
import time
params = dict(
login_email="Admin@dnspod.cn", # replace with your email替换为邮箱账号地址
login_password="password", # replace with your password替换为密码
format="json",
domain_id=100, # replace with your domain_od, can get it by API Domain.List替换为对于id
record_id=100, # replace with your record_id, can get it by API Record.List
sub_domain="mail", # replace with your sub_domain替换为子域名,根域名用@
record_line="默认",
)
current_ip = None
def ddns(ip):
params.update(dict(value=ip))
headers = {"Content-type": "application/x-www-form-urlencoded", "Accept": "text/json"}
conn = httplib.HTTPSConnection("dnsapi.cn")
conn.request("POST", "/Record.Ddns", urllib.urlencode(params), headers)
response = conn.getresponse()
print response.status, response.reason
data = response.read()
print data
conn.close()
return response.status == 200
def getip():
sock = socket.create_connection(('ns1.dnspod.net', 6666))
ip = sock.recv(16)
sock.close()
return ip
if __name__ == '__main__':
while True:
try:
ip = getip()
print ip
if current_ip != ip:
if ddns(ip):
current_ip = ip
except Exception, e:
print e
pass
time.sleep(30)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wxy/pyDNSpod.git
git@gitee.com:wxy/pyDNSpod.git
wxy
pyDNSpod
pyDNSpod
master

搜索帮助