Files
steamreg/start_pyno_v3.py

17 lines
531 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/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()