搜尋
首頁後端開發Python教學Python免登入怎麼實作網域解析

目的是编写python脚本,通过dnspod api获取个人域名内的dns解析记录,

免登录实现域名的解析、修改和删除:

Python免登入怎麼實作網域解析

为什么要编写这个脚本?当你在公司负责很多的域名又经常需要解析和查看,频繁登录网站去查去修改是一件费神的事。

上图的账号内有2个域名ssw.fit和ssw.ski,我想給ssw.ski增加了一条A记录,

把test子域名解析到我的linux云服务器,添加完后访问test.ssw.ski

如何获得域名解析信息

使用dnspod api

#获取domain_id
curl 'https://dnsapi.cn/Domain.List' -d 'login_token=&format=json'

#获取record_id
curl 'https://dnsapi.cn/Record.List' -d 'login_token=&format=json&domain_id='

获取Token

访问https://console.dnspod.cn/account/token/token,创建一个秘钥

Python免登入怎麼實作網域解析

完成后程序中可以使用ID,TOKEN来访问api。

目标实现

一般都通过requests 的post方法访问对应网址。

不过这里用curl命令更简介方便,它也可以发起post请求,并且一条命令解决。

所以用python来执行linux下的curl命令就可以了:

class DomainHandler(object):
    def __init__(self):
        pass

    def exec_cmd(self,cmd):
        res = Popen(cmd, shell=True, stdout=PIPE)
        ret = res.communicate()[0].decode('utf-8')
        return ret.strip()

下面以添加A记录为例。

添加字典对应函数入口:

dic = {
    '1':DomainHandler().add,
    '2':DomainHandler().mod,
    '3':DomainHandler().delete
}

tag = True
while tag:
    print('''
    1.增加
    2.修改
    3.删除
    q.退出
    ''')
    choice = input('\033[1;42m输入选项:\033[0m').strip()
    if not choice:
        continue
    if choice == 'q':
        break
    if choice in dic:
        dic[choice]()

    else:
        print('\033[31m选项不存在\033[0m')

添加记录的入口函数:

    def add(self):
        self.domain_info()
        while tag:
            self.domain_id = input('\033[1;42m输入域名ID:\033[0m').strip()
            if self.domain_id == 'q':
                break
            if not self.domain_id or not self.domain_id.isdigit():
                print('\033[31merror id\033[0m')
                continue
            self.sub_domain = input('\033[1;42m子域名[@或*等]:\033[0m').strip()
            self.record_type = input('\033[1;42m类型[A或CNAME]:\033[0m').strip()
            self.address = input('\033[1;42m记录值(ip或域名):\033[0m').strip()

            if not self.sub_domain or not self.record_type or not self.address:
                print('\033[31m参数不能为空\033[0m')
                continue
            self.add_Arecord(self.domain_id,self.sub_domain,self.record_type,self.address)
            if self.domain_id == 'q' or self.record_type == 'q' or self.address == 'q':
                self.tag = False
            break

获取域名信息:

    def domain_info(self):
        cmd = 'curl -s https://dnsapi.cn/Domain.List -d "login_token=391845,92f408bb5343e&format=json"'
        data = json.loads(self.exec_cmd(cmd))
        print(data)
        for item in data['domains']:
            print('%s:%s' % (item['name'], item['id']))

添加记录:

    def add_Arecord(self,domain_id,sub_domain,record_type,address):
        print(domain_id,sub_domain,record_type,address)
        cmd2 = "curl -s -X POST https://dnsapi.cn/Record.Create -d 'login_token=391845,92f408bb5343e&format=json&domain_id={0}&sub_domain={1}&record_type={2}&record_line_id=0&value={3}'".format(
            domain_id, sub_domain, record_type, address)
        r = json.loads(self.exec_cmd(cmd2))
        print(r['status']['message'])

修改记录

我想把test.ssw.ski的ip修改为1.1.1.1

Python免登入怎麼實作網域解析

ipconfig/flushdns刷新一下dns缓存,生效了:

Python免登入怎麼實作網域解析

文章还没写完,它就检测到域名未备案了

Python免登入怎麼實作網域解析

以上是Python免登入怎麼實作網域解析的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述
本文轉載於:亿速云。如有侵權,請聯絡admin@php.cn刪除
Python的科學計算中如何使用陣列?Python的科學計算中如何使用陣列?Apr 25, 2025 am 12:28 AM

Arraysinpython,尤其是Vianumpy,ArecrucialInsCientificComputingfortheireftheireffertheireffertheirefferthe.1)Heasuedfornumerericalicerationalation,dataAnalysis和Machinelearning.2)Numpy'Simpy'Simpy'simplementIncressionSressirestrionsfasteroperoperoperationspasterationspasterationspasterationspasterationspasterationsthanpythonlists.3)inthanypythonlists.3)andAreseNableAblequick

您如何處理同一系統上的不同Python版本?您如何處理同一系統上的不同Python版本?Apr 25, 2025 am 12:24 AM

你可以通過使用pyenv、venv和Anaconda來管理不同的Python版本。 1)使用pyenv管理多個Python版本:安裝pyenv,設置全局和本地版本。 2)使用venv創建虛擬環境以隔離項目依賴。 3)使用Anaconda管理數據科學項目中的Python版本。 4)保留系統Python用於系統級任務。通過這些工具和策略,你可以有效地管理不同版本的Python,確保項目順利運行。

與標準Python陣列相比,使用Numpy數組的一些優點是什麼?與標準Python陣列相比,使用Numpy數組的一些優點是什麼?Apr 25, 2025 am 12:21 AM

numpyarrayshaveseveraladagesoverandastardandpythonarrays:1)基於基於duetoc的iMplation,2)2)他們的aremoremoremorymorymoremorymoremorymoremorymoremoremory,尤其是WithlargedAtasets和3)效率化,效率化,矢量化函數函數函數函數構成和穩定性構成和穩定性的操作,製造

陣列的同質性質如何影響性能?陣列的同質性質如何影響性能?Apr 25, 2025 am 12:13 AM

數組的同質性對性能的影響是雙重的:1)同質性允許編譯器優化內存訪問,提高性能;2)但限制了類型多樣性,可能導致效率低下。總之,選擇合適的數據結構至關重要。

編寫可執行python腳本的最佳實踐是什麼?編寫可執行python腳本的最佳實踐是什麼?Apr 25, 2025 am 12:11 AM

到CraftCraftExecutablePythcripts,lollow TheSebestPractices:1)Addashebangline(#!/usr/usr/bin/envpython3)tomakethescriptexecutable.2)setpermissionswithchmodwithchmod xyour_script.3)

Numpy數組與使用數組模塊創建的數組有何不同?Numpy數組與使用數組模塊創建的數組有何不同?Apr 24, 2025 pm 03:53 PM

numpyArraysareAreBetterFornumericalialoperations andmulti-demensionaldata,而learthearrayModuleSutableforbasic,內存效率段

Numpy數組的使用與使用Python中的數組模塊陣列相比如何?Numpy數組的使用與使用Python中的數組模塊陣列相比如何?Apr 24, 2025 pm 03:49 PM

numpyArraySareAreBetterForHeAvyNumericalComputing,而lelethearRayModulesiutable-usemoblemory-connerage-inderabledsswithSimpleDatateTypes.1)NumpyArsofferVerverVerverVerverVersAtility andPerformanceForlargedForlargedAtatasetSetsAtsAndAtasEndCompleXoper.2)

CTYPES模塊與Python中的數組有何關係?CTYPES模塊與Python中的數組有何關係?Apr 24, 2025 pm 03:45 PM

ctypesallowscreatingingangandmanipulatingc-stylarraysinpython.1)usectypestoInterfacewithClibrariesForperfermance.2)createc-stylec-stylec-stylarraysfornumericalcomputations.3)passarraystocfunctions foreforfunctionsforeffortions.however.however,However,HoweverofiousofmemoryManageManiverage,Pressiveo,Pressivero

See all articles

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱工具

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

這個專案正在遷移到osdn.net/projects/mingw的過程中,你可以繼續在那裡關注我們。 MinGW:GNU編譯器集合(GCC)的本機Windows移植版本,可自由分發的導入函式庫和用於建置本機Windows應用程式的頭檔;包括對MSVC執行時間的擴展,以支援C99功能。 MinGW的所有軟體都可以在64位元Windows平台上運作。

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

強大的PHP整合開發環境

VSCode Windows 64位元 下載

VSCode Windows 64位元 下載

微軟推出的免費、功能強大的一款IDE編輯器

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

將Eclipse與SAP NetWeaver應用伺服器整合。

PhpStorm Mac 版本

PhpStorm Mac 版本

最新(2018.2.1 )專業的PHP整合開發工具