This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python3 | |
import requests as http | |
import json | |
# DNSPOD API ID | |
ID = '00000' | |
# DNSPOD API TOKEN | |
TOKEN = 'xxxxxxxxxxxxxxxxxxxx' | |
LOGIN_TOKEN = ID + ',' + TOKEN |