12345678910111213141516171819202122232425262728293031 |
- #!/usr/bin/env python
- # -*- encoding: utf-8 -*-
- '''
- @Contact : liuyuqi.gov@msn.cn
- @Time : 2022/11/26 18:42:36
- @License : Copyright © 2017-2022 liuyuqi. All Rights Reserved.
- @Desc :
- '''
- # email
- _emailHost=r"https://email-fake.com"
- # phone
- _phoneHost=r"http://smspva.com"
- apiKey="xx"
- getNumber=_phoneHost+"/priemnik.php?metod=get_number&country=ES&service=opt41&apikey="+apiKey
- getSms=_phoneHost+"/priemnik.php?metod=get_sms&country=ES&service=opt41&apikey="+apiKey
- getBalance=_phoneHost+"/priemnik.php?metod=get_balance&service=opt4&apikey="+apiKey
- # twitter
- _twitterHost=r"https://twitter.com"
- accountAccess=_twitterHost+"/account/access"
- signup=_twitterHost+"/i/flow/signup"
- # 获取随机昵称
- getNickName=r"https://api.namefake.com"
- # webdriver downlaod url
- edgeDriver="https://msedgedriver.azureedge.net/%s/edgedriver_win64.zip"
|