万网、腾讯、华为域名注册地址和价格
域名注册
万网域名注册:域名注册_域名查询_域名申请_域名购买_域名续费_国际域名-万网-阿里云品牌 (aliyun.com)
腾讯域名注册:域名注册_免费智能DNS_域名交易_域名购买申请 - DNSPod - 腾讯云官网 (tencent.com)
华为域名注册:域名注册_域名购买_域名查询_网页域名注册申请-华为云 (huaweicloud.com)
域名价格
万网域名价格:产品价格总览-万网-阿里云旗下品牌 (aliyun.com)
腾讯域名价格:域名价格 - 域名注册 - 腾讯云_域名购买_交易选购_转入续费_DNSPod (tencent.com)
华为域名价格:价格计算器_pricing -华为云 (huaweicloud.com)
域名查询
批量查询没有被注册的域名:域名批量注册-高级版 (aliyun.com)
查询github未被占用的用户名
import requests
import time
file = open("./unuse.txt", "w")
error_file = open("./error.txt", "w")
for i in range(ord("a"), ord("z") + 1):
for j in range(ord("a"), ord("z") + 1):
username = chr(i) + chr(j) + "lab"
url = f"https://github.com/{username}"
resp = requests.get(url, proxies={"http": "http://localhost:10809"})
if resp.ok:
print(f"use {username}")
time.sleep(1)
elif resp.status_code == 404:
print(f"find {username}")
file.write(username + "\n")
file.close()
file = open("./unuse.txt", "a")
time.sleep(1)
else:
error_file.write(username + "\n")
error_file.flush()
print(f"Error {resp.status_code}: {resp.reason}")
file.close()
error_file.close()
最后更新于1年前
本文由人工编写,AI优化,转载请注明原文地址: 万网、腾讯、华为域名注册地址和价格
推荐阅读
OpenVPN安装配置完整指南:从零搭建安全VPN服务器与客户端
22632025-10-30
Windows系统PyTorch安装教程:CUDA 12.1环境配置与TorchText版本兼容性指南
24482025-10-08
达梦数据库使用指南:常用命令、安装教程与常见问题解决方案
5002026-04-14
VMware Workstation 17许可证密钥及免费激活方法详解
36442025-10-26
使用Cesium.js加载vtu格式(UnstructuredGrid)的文件
222025-12-06
深信服VPN客户端下载:EasyConnect与aTrust零信任访问指南
18452025-10-17