forked from cood-filter-rubika/filter-rubika
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreport.py
More file actions
36 lines (35 loc) · 860 Bytes
/
Copy pathreport.py
File metadata and controls
36 lines (35 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import random
from random import randint
import string
import uuid
import os
import time
from time import sleep
from colorama import Fore
import sys
###########
print (" User Filtering Vs Reporter _ _ _ _")
soheil = """
\033[41m[1]\33[1;0m Group=
\033[41m[2]\33[1;0m Account=
\033[41m[3]\33[1;0m Chanel=
\033[41m[4]\33[1;0m Exit=
"""
for i in soheil:
sleep(0.05)
print(i,end='',flush=True)
print()
################ Inputs
shah = int(input(Fore.CYAN+" \033[41m[?]\33[1;0m"+"\33[1; Which do you want? >>> \033[93m"+Fore.RED+""))
################################## Grop
if(str(shah) == "1"):
os.system("python gp.py")
############################### User
if(str(shah) == "2"):
os.system("python us.py")
#COD Filteri Chanel
if(str(shah) == "3"):
os.system("python ch.py")
##########
if(str(shah) == "4"):
sys.exit()