main.py 396 B

1234567891011121314
  1. # This is a sample Python script.
  2. # Press Shift+F10 to execute it or replace it with your code.
  3. # Press Double Shift to search everywhere for classes, files, tool windows, actions, and settings.
  4. import sys
  5. from spider.winhc_job import main as winhc_jab_main
  6. from log import get_log
  7. log = get_log('main')
  8. if __name__ == '__main__':
  9. log.info(f"input args: {sys.argv}")
  10. winhc_jab_main()