testProxyFetcher.py 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # -*- coding: utf-8 -*-
  2. """
  3. -------------------------------------------------
  4. File Name: testProxyFetcher
  5. Description :
  6. Author : JHao
  7. date: 2020/6/23
  8. -------------------------------------------------
  9. Change Activity:
  10. 2020/6/23:
  11. -------------------------------------------------
  12. """
  13. __author__ = 'JHao'
  14. from fetcher.proxyFetcher import ProxyFetcher
  15. def test():
  16. # for _ in ProxyFetcher.freeProxy01():
  17. # print(_)
  18. #
  19. # for _ in ProxyFetcher.freeProxy02():
  20. # print(_)
  21. #
  22. # for _ in ProxyFetcher.freeProxy03():
  23. # print(_)
  24. #
  25. # for _ in ProxyFetcher.freeProxy04():
  26. # print(_)
  27. #
  28. # for _ in ProxyFetcher.freeProxy05():
  29. # print(_)
  30. #
  31. # for _ in ProxyFetcher.freeProxy06():
  32. # print(_)
  33. #
  34. # for _ in ProxyFetcher.freeProxy07():
  35. # print(_)
  36. #
  37. # for _ in ProxyFetcher.freeProxy08():
  38. # print(_)
  39. #
  40. # for _ in ProxyFetcher.freeProxy09():
  41. # print(_)
  42. # for _ in ProxyFetcher.freeProxy13():
  43. # print(_)
  44. # for _ in ProxyFetcher.freeProxy14():
  45. # print(_)
  46. for _ in ProxyFetcher.freeProxy15():
  47. print(_)
  48. if __name__ == '__main__':
  49. test()