__init__.py 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. import os
  2. from pathlib import Path
  3. _DATASETS_PATH = os.path.join(Path(__file__).resolve().parents[0], "data")
  4. LIGHTNING_LOGO = """
  5. ####
  6. ###########
  7. ####################
  8. ############################
  9. #####################################
  10. ##############################################
  11. ######################### ###################
  12. ####################### ###################
  13. #################### ####################
  14. ################## #####################
  15. ################ ######################
  16. ##################### #################
  17. ###################### ###################
  18. ##################### #####################
  19. #################### #######################
  20. ################### #########################
  21. ##############################################
  22. #####################################
  23. ############################
  24. ####################
  25. ##########
  26. ####
  27. """
  28. def nice_print(msg, last=False):
  29. print()
  30. print("\033[0;35m" + msg + "\033[0m")
  31. if last:
  32. print()
  33. def cli_lightning_logo():
  34. nice_print(LIGHTNING_LOGO)