Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Jupiter404E authored Oct 2, 2022
1 parent 7f1e923 commit 5c1b920
Show file tree
Hide file tree
Showing 6 changed files with 497 additions and 0 deletions.
Binary file added __pycache__/banner.cpython-310.pyc
Binary file not shown.
11 changes: 11 additions & 0 deletions banner.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from colorama import Fore, Style, Back, init
init()

BANNER = (Fore.GREEN + " _ _ _____ _ _ \n")
BANNER+= (Fore.GREEN + " | | | |___ ___ _ __ | ___(_)_ __ __| | ___ _ __ \n")
BANNER+= (Fore.GREEN + " | | | / __|/ _ \ '__| | |_ | | '_ \ / _` |/ _ \ '__|\n")
BANNER+= (Fore.GREEN + " | |_| \__ \ __/ | | _| | | | | | (_| | __/ | \n")
BANNER+= (Fore.GREEN + " \___/|___/\___|_| |_| |_|_| |_|\__,_|\___|_| \n")
BANNER+= (Fore.GREEN + " \n")
BANNER+= (Fore.GREEN + " ▬▬▬ User Finder v1.0 ▬▬▬ \n")
BANNER+= (Fore.GREEN + " ▬▬▬ By Jupiter404E ▬▬▬ \n")
3 changes: 3 additions & 0 deletions pip_install_requirements.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
title PIP Install Requirements
pip install -r requirements.txt
pause
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
requests
banner
colorama
3 changes: 3 additions & 0 deletions start.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
python user_finder.py

pause
Loading

0 comments on commit 5c1b920

Please sign in to comment.