17 lines
476 B
Python
17 lines
476 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
Steam注册程序 - V3版本启动器
|
|
支持API获取邮箱账号和注册数量限制功能
|
|
"""
|
|
|
|
import tkinter as tk
|
|
from RegistrationGUIWithPynoV2 import SteamRegistrationGUI
|
|
|
|
if __name__ == "__main__":
|
|
print("正在启动Steam账号注册助手 V3.0...")
|
|
print("这个版本新增自建邮箱API获取功能和注册数量限制功能")
|
|
root = tk.Tk()
|
|
gui = SteamRegistrationGUI(root)
|
|
root.mainloop() |