Advertisement
NiXXR1

LOGO

May 8th, 2024
521
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 3.47 KB | None | 0 0
  1. import requests
  2. import os
  3. def cos():
  4.     if os.name == 'nt':
  5.         os.system('cls')
  6.     else:
  7.         os.system('clear')
  8. cos()
  9. try:
  10.     import colorama
  11. except ModuleNotFoundError:
  12.     os.system("pip install colorama")
  13.     cos()
  14.     print("RUN THE CODE AGAIN")
  15.     exit
  16. from colorama import Fore
  17. Red = Fore.RED
  18. Reset = Fore.RESET
  19. Grey = Fore.LIGHTBLACK_EX
  20. Cyan = Fore.CYAN
  21. LOGO = (f"""                                                                                                                                                                                                    
  22. {Grey}                                             .  /    /                                              
  23. {Grey}                                   *  .%,  *%.  /    ((   #/  .%   ,                                
  24. {Grey}                              (    *   %,  *%.  /#   ((   #/  .%*  ,%.  *#                          
  25. {Grey}                             (/   #,  , ,  * .  /#   (    #   .%,  ,#.  *#   ((                    
  26. {Grey}                     .  /(   //   #,  .#,  *%.(,*(,( */,(.(*{Grey}(.#,  ,#.  *#   /(   (/                
  27. {Grey}                   /#   /(   (/   (,  .(,/*{Red}(#.  *(   //  .#*{Grey}*#.#,/#.(./,.(   /(   (/                
  28. {Grey}              ,(.  *(.  /(   //   #,##(#.#{Red} ,#.  *(   //   ((,{Grey}#((#*#((./(./.(./(   (/                
  29. {Grey}              .(.  ,(   */   /*##(####(##{Red}  *( / *(   /*   (*#{Grey}#(####(#(*(#/ /.*/   //                
  30. {Grey}          (   .(    /   */  .####(######.{Red}  ,( / */   /* / /*{Grey}####(####(###/#/#,*   /*                
  31. {Grey}          /.   /   ,/   */ ##############{Red}  ./ * ,/   ,. * /{Grey},###############*#,, * **    ,          
  32. {Grey}                   .*   .,#/##############{Red} .* , .. . .. , {Grey}#####(#########(#*# .   *,    .          
  33. {Grey}               ,    ,   .. /%########(%##(##,{Red}      .  . {Grey}(#(##(#(####(####,#,# ,   ,.                
  34. {Grey}                    ,   .. .#( #/%(##(#(#(##(#(#((#(####(#(##(#(##(#(#.##,    .   ,.                
  35. {Grey}                        .. .  . .#/ #(## ###( (##( (##( (#(# (#/# ##*    .   ..   ..                
  36. {Grey}                         .   .  . .  .#. . #. , #. * (  * (  ( .    .    .   ..   ..                
  37. {Grey}                    .   ..           . .    . .  .   .. . .    .    .    .   ..                    
  38. {Grey}                         .   .                          . .    .    .    .    .                    
  39. {Grey}                                       .                       .                                    
  40. {Red}                oooooo   oooooo     oooo            .o8                 o8o
  41.                 `888.    `888.     .8'            "888                 `"'                            
  42.                  `888.   .8888.   .8'    .ooooo.   888oooo.   .oooo.o oooo   .ooooo.            
  43.                   `888  .8'`888. .8'    d88' `88b  d88' `88b d88(  "8 `888  d88' `"Y8   {Cyan} TELEGRAM: PYNiXXR{Red}
  44.                    `888.8'  `888.8'     888ooo888  888   888 `"Y88b.   888  888        {Reset}  Git-Hub: R4P-x{Red}
  45.                     `888'    `888'      888    .o  888   888 o.  )88b  888  888   .o8
  46.                      `8'      `8'       `Y8bod8P'  `Y8bod8P' 8""888P' o888o `Y8bod8P'{Red}                  
  47.                      
  48.                      
  49.                      
  50.                      
  51.                                                                                    
  52. """)
  53. print(LOGO)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement