test_search.py 238 B

123456789101112131415
  1. """
  2. @author: luojunhui
  3. """
  4. from applications.search import *
  5. keys = "湖人大战勇士"
  6. wx_result = wx_search(keys)
  7. print(wx_result)
  8. xg_result = xigua_search(keys)
  9. print(xg_result)
  10. baidu_result = hksp_search(keys)
  11. print(baidu_result)