api.py 857 B

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