123456789101112131415161718192021222324252627282930313233343536 |
- #!/usr/bin/env python
- # -*- encoding: utf-8 -*-
- '''
- @Contact : liuyuqi.gov@msn.cn
- @Time : 2023/03/22 19:35:52
- @License : Copyright © 2017-2022 liuyuqi. All Rights Reserved.
- @Desc :
- '''
- # 手机验证码接口
- phone_host=r""
- get_phone=r"/getphone"
- get_message=r"/getmessage"
- # 验证 mail 接口
- mail_host=r""
- get_mail=r"/getmail"
- get_mail_content=r"/getmailcontent"
- # proxy
- proxy_host_ihuan = r"https://ip.ihuan.me"
- # for outlook
- live_host='https://signup.live.com/signup'
- # for 163mail
- mail_163_host='https://mail.163.com/'
- # for qqmail
- qq_host='https://mail.qq.com/cgi-bin/loginpage'
- # for gmail
- gmail_host='https://accounts.google.com/signup/v2/webcreateaccount?hl=zh-CN&flowName=GlifWebSignIn&flowEntry=SignUp'
|