实现邮箱API集成和注册数量限制功能

This commit is contained in:
hkyc
2025-05-22 22:43:44 +08:00
parent 4ee6a2e195
commit 3fb99d17e0
5 changed files with 348 additions and 70 deletions

View File

@@ -2,16 +2,16 @@
# -*- coding: utf-8 -*-
"""
Steam注册程序 - PyNoCaptcha V3版本启动器
使用PyNoCaptcha解决验证码解决了sitekey获取问题
Steam注册程序 - V3版本启动器
支持API获取邮箱账号和注册数量限制功能
"""
import tkinter as tk
from RegistrationGUIWithPynoV2 import RegistrationGUIWithPynoV2
from RegistrationGUIWithPynoV2 import SteamRegistrationGUI
if __name__ == "__main__":
print("正在启动Steam注册助手 PyNoCaptcha V3版本...")
print("这个版本修复了验证码头信息问题使用正确的User-Agent获取sitekey")
print("正在启动Steam账号注册助手 V3.0...")
print("这个版本新增自建邮箱API获取功能和注册数量限制功能")
root = tk.Tk()
gui = RegistrationGUIWithPynoV2(root)
gui = SteamRegistrationGUI(root)
root.mainloop()