main.py 740 B

1234567891011121314151617181920212223242526272829
  1. #!/usr/bin/env python
  2. # -*- encoding: utf-8 -*-
  3. '''
  4. @Contact : liuyuqi.gov@msn.cn
  5. @Time : 2023/12/03 03:09:35
  6. @License : Copyright © 2017-2022 liuyuqi. All Rights Reserved.
  7. @Desc : enter point
  8. '''
  9. from crawl_sse import Sse
  10. from crawl_sse import Cninfo
  11. from crawl_sse.options import parse_args
  12. import sys
  13. if __name__=='__main__':
  14. args = parse_args()
  15. if args['command'] == 'generate':
  16. sse = Sse()
  17. sse.crawl()
  18. elif args['command'] == 'search':
  19. cninfo =Cninfo()
  20. cninfo.download()
  21. elif args['command'] == 'help':
  22. pass
  23. elif args['command'] == 'version':
  24. print('1.0.0')
  25. else:
  26. print('command error, please use --help to get help')
  27. sys.exit(1)