read_logs.py 271 B

12345678910111213
  1. """
  2. @author: luojunhui
  3. """
  4. import time
  5. from applications import read_log
  6. end_time = int(time.time())
  7. start_time = end_time - 7 * 24 * 3600
  8. res = read_log(
  9. start_time=start_time, end_time=end_time, query='businessType : videoPlay and videoId: 21923845'
  10. )
  11. print(res)