Home Backend Development Python Tutorial python实现dnspod自动更新dns解析的方法

python实现dnspod自动更新dns解析的方法

Jun 06, 2016 am 11:29 AM
dns resolution Automatic updates

代码如下:


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

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to disable Windows Update from automatically updating drivers in win11? How to disable Windows Update from automatically updating drivers in win11? Jun 26, 2024 am 12:18 AM

How to disable Windows Update from automatically updating drivers in win11?

How to use DNS resolution in Go? How to use DNS resolution in Go? May 11, 2023 pm 04:40 PM

How to use DNS resolution in Go?

How to disable automatic updates in Win11 How to disable automatic updates in Win11 Dec 27, 2023 pm 12:53 PM

How to disable automatic updates in Win11

Group policy method to turn off automatic updates in win10 Group policy method to turn off automatic updates in win10 Dec 23, 2023 pm 05:07 PM

Group policy method to turn off automatic updates in win10

How to turn off automatic updates when downloading office 2016 - How to turn off automatic updates when downloading office 2016 How to turn off automatic updates when downloading office 2016 - How to turn off automatic updates when downloading office 2016 Mar 04, 2024 pm 04:34 PM

How to turn off automatic updates when downloading office 2016 - How to turn off automatic updates when downloading office 2016

Linux system network download slowness and disconnection problems and solutions Linux system network download slowness and disconnection problems and solutions Jun 30, 2023 pm 08:15 PM

Linux system network download slowness and disconnection problems and solutions

How to develop a feature that automatically updates a WordPress plugin How to develop a feature that automatically updates a WordPress plugin Sep 05, 2023 am 10:40 AM

How to develop a feature that automatically updates a WordPress plugin

How does Kirin OS provide automatic update and upgrade functions? How does Kirin OS provide automatic update and upgrade functions? Aug 06, 2023 pm 05:49 PM

How does Kirin OS provide automatic update and upgrade functions?

See all articles