Skip to content

Commit 5c1b920

Browse files
authored
Add files via upload
1 parent 7f1e923 commit 5c1b920

File tree

6 files changed

+497
-0
lines changed

6 files changed

+497
-0
lines changed

__pycache__/banner.cpython-310.pyc

800 Bytes
Binary file not shown.

banner.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
from colorama import Fore, Style, Back, init
2+
init()
3+
4+
BANNER = (Fore.GREEN + " _ _ _____ _ _ \n")
5+
BANNER+= (Fore.GREEN + " | | | |___ ___ _ __ | ___(_)_ __ __| | ___ _ __ \n")
6+
BANNER+= (Fore.GREEN + " | | | / __|/ _ \ '__| | |_ | | '_ \ / _` |/ _ \ '__|\n")
7+
BANNER+= (Fore.GREEN + " | |_| \__ \ __/ | | _| | | | | | (_| | __/ | \n")
8+
BANNER+= (Fore.GREEN + " \___/|___/\___|_| |_| |_|_| |_|\__,_|\___|_| \n")
9+
BANNER+= (Fore.GREEN + " \n")
10+
BANNER+= (Fore.GREEN + " ▬▬▬ User Finder v1.0 ▬▬▬ \n")
11+
BANNER+= (Fore.GREEN + " ▬▬▬ By Jupiter404E ▬▬▬ \n")

pip_install_requirements.bat

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
title PIP Install Requirements
2+
pip install -r requirements.txt
3+
pause

requirements.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
requests
2+
banner
3+
colorama

start.bat

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
python user_finder.py
2+
3+
pause

0 commit comments

Comments
 (0)