__init__.py 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #!/usr/bin/env python
  2. # -*- encoding: utf-8 -*-
  3. '''
  4. @Contact : liuyuqi.gov@msn.cn
  5. @Time : 2023/05/20 09:34:58
  6. @License : Copyright © 2017-2022 liuyuqi. All Rights Reserved.
  7. @Desc :
  8. '''
  9. from crawl_yuque.yuque import YuQue
  10. import sys,re,os
  11. from crawl_yuque.options import parser_args
  12. def main(argv=None):
  13. """Main entry point of the program"""
  14. try:
  15. args = parser_args()
  16. if args.get('version'):
  17. print("0.0.1")
  18. sys.exit(0)
  19. command = args.get('command','')
  20. if command == '':
  21. # logging.error("command is empty")
  22. # argparser.print_help()
  23. sys.exit(1)
  24. if command =="serve" or command =="server":
  25. # from apps import create_app
  26. # app = create_app()
  27. # app.run(host='127.0.0.1', port=5000, debug=True)
  28. return
  29. if command == "markdown":
  30. crawl = YuQue(args)
  31. if(args["url"] != ''):
  32. url = args["url"]
  33. crawl.get_book(url=url)
  34. else:
  35. url = input("请输入语雀文档链接:")
  36. crawl.get_book(url=url)
  37. if command == "help":
  38. return
  39. if command == "pdf":
  40. crawl = YuQue(args)
  41. crawl.pdf()
  42. except KeyboardInterrupt:
  43. sys.exit('\nERROR: Interrupted by user')