1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import os
- from pathlib import Path
- _DATASETS_PATH = os.path.join(Path(__file__).resolve().parents[0], "data")
- LIGHTNING_LOGO = """
- ####
- ###########
- ####################
- ############################
- #####################################
- ##############################################
- ######################### ###################
- ####################### ###################
- #################### ####################
- ################## #####################
- ################ ######################
- ##################### #################
- ###################### ###################
- ##################### #####################
- #################### #######################
- ################### #########################
- ##############################################
- #####################################
- ############################
- ####################
- ##########
- ####
- """
- def nice_print(msg, last=False):
- print()
- print("\033[0;35m" + msg + "\033[0m")
- if last:
- print()
- def cli_lightning_logo():
- nice_print(LIGHTNING_LOGO)
|