更新IMAP邮件获取功能和账户保存格式

This commit is contained in:
hkyc
2025-05-22 22:30:08 +08:00
parent 758d8d2f00
commit 4ee6a2e195
21 changed files with 2319 additions and 0 deletions

17
start_pyno_v3.py Normal file
View File

@@ -0,0 +1,17 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Steam注册程序 - PyNoCaptcha V3版本启动器
使用PyNoCaptcha解决验证码解决了sitekey获取问题
"""
import tkinter as tk
from RegistrationGUIWithPynoV2 import RegistrationGUIWithPynoV2
if __name__ == "__main__":
print("正在启动Steam注册助手 PyNoCaptcha V3版本...")
print("这个版本修复了验证码头信息问题使用正确的User-Agent获取sitekey")
root = tk.Tk()
gui = RegistrationGUIWithPynoV2(root)
root.mainloop()