Projects STRLCPY mosint Commits d4cf97a0
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■ ■
    insides/Banner.py
     1 +from insides.bcolors import bcolors
     2 + 
     3 +def Banner():
     4 + print(f'''{bcolors.BOLD}
     5 +___ ________ _____ _____ _ _ _____
     6 +| \/ | _ / ___|_ _| \ | |_ _|
     7 +| . . | | | \ `--. | | | \| | | |
     8 +| |\/| | | | |`--. \ | | | . ` | | |
     9 +| | | \ \_/ /\__/ /_| |_| |\ | | |
     10 +\_| |_/\___/\____/ \___/\_| \_/ \_/
     11 +{bcolors.ENDC}
     12 +v{bcolors.BOLD}1.4{bcolors.ENDC}
     13 +github.com/{bcolors.BOLD}alpkeskin{bcolors.ENDC}
     14 +''')
  • ■ ■ ■ ■ ■ ■
    insides/Header.py
     1 +from insides.bcolors import bcolors
     2 + 
     3 +def Header(title):
     4 + print("")
     5 + print("-------------------------------")
     6 + print(f"{bcolors.OKGREEN}>{bcolors.ENDC}"+title)
     7 + print("-------------------------------")
Please wait...
Page is in error, reload to recover