-
Notifications
You must be signed in to change notification settings - Fork 249
/
scan.py
79 lines (70 loc) · 2.05 KB
/
scan.py
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#Jangan ganti author , hargai creator cape loh buat nya
import LIST
from LIST.id import *
from LIST.it import *
from LIST.jp import *
from LIST.us import *
from LIST.fr import *
from LIST.kr import *
from LIST.de import *
from LIST.tr import *
import requests,re,os
b="\033[0;34m"
g="\033[1;32m"
w="\033[1;37m"
r="\033[1;31m"
y="\033[1;33m"
cyan = "\033[0;36m"
lgray = "\033[0;37m"
dgray = "\033[1;30m"
ir = "\033[0;101m"
reset = "\033[0m"
def main():
os.system('clear')
print("{} ____ ").format(r)
print(" _[]_/____\__n_ ")
print(" |_____.--.__()_|")
print(" |I //# \\\ |")
print("{} |P \\\__// | ").format(w)
print(" |CS '--' | ")
print("{} '--------------'----------{}------------------. ").format(r,w)
print("{} | {}Author : {}HVmbl3 {} | {}INDO{}N{}{}ESIA | ").format(r,w,r,w,r,ir,reset,w)
print("{} | {}Youtube : {}Shodiq 2701 {}| {}+62-813-6487-3762 {}|").format(r,w,w,w,lgray,w)
print("{} '------------------------------------{}-------' ").format(r,w)
print (" {}[ 1 ] {}Italy").format(r,w)
print (" {}[ 2 ] {}Indonesia").format(r,w)
print (" {}[ 3 ] {}Japan").format(r,w)
print (" {}[ 4 ] {}United States").format(r,w)
print (" {}[ 5 ] {}France").format(r,w)
print (" {}[ 6 ] {}Korea").format(r,w)
print (" {}[ 7 ] {}German").format(r,w)
print (" {}[ 8 ] {}Turkey").format(r,w)
print (" {}[ 9 ] {}Exit").format(r,w)
print ""
select = input("\033[1;31m[ \033[1;37mSelect@Number \033[1;31m]\033[1;37m> ")
filtering(select)
def filtering(pilih):
if pilih == 1:
italy()
elif pilih == 2:
indonesia()
elif pilih == 3:
japan()
elif pilih == 4:
unitedstates()
elif pilih == 5:
france()
elif pilih == 6:
korea()
elif pilih == 7:
german()
elif pilih == 8:
turkey()
elif pilih == 9:
print (r+"Exiting ..."+w)
os.sys.exit()
else:
print (r+"Exiting ..."+w)
os.sys.exit()
if __name__ == '__main__':
main()