-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathillu.py
More file actions
37 lines (31 loc) · 1.38 KB
/
illu.py
File metadata and controls
37 lines (31 loc) · 1.38 KB
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
#!python
#!C:\Python37\python.exe
import requests
import time
start = time.time()
from colorama import Fore, Style
from src.asu import kitab
print(Fore.BLUE)
print("""
__ __ _ _ _ _ _ _____ _
/ //\ /\ \(_) | |_ _ ___| |_ _ __ __ _| |_ ___ _ _/__ \_ __ __ _ ___| | _____ _ __
| |/ /_/ /| | | | | | | / __| __| '__/ _` | __/ _ \| '__|/ /\/ '__/ _` |/ __| |/ / _ \ '__|
| / __ / | | | | | |_| \__ \ |_| | | (_| | || (_) | | / / | | | (_| | (__| < __/ |
| \/ /_/ | |_|_|_|\__,_|___/\__|_| \__,_|\__\___/|_| \/ |_| \__,_|\___|_|\_\___|_|
\_\ /_/ -Sin
""")
print(Style.RESET_ALL)
siapa = input("illustrator/doujin artist name: ")
print("Find /",Style.BRIGHT+Fore.YELLOW+siapa+Style.RESET_ALL+"'s nickname\n")
def main(siapa):
for i in kitab:
r = requests.get(i+"{}".format(siapa))
if r.status_code == 200:
print("[!] "+i+"{} >> ".format(siapa) + Fore.GREEN + "true"+ Style.RESET_ALL)
else:
print("[x] "+i+"{} >> ".format(siapa) + Fore.RED + "false, or different name?"+ Style.RESET_ALL)
main(siapa)
end = time.time()
hours, rem = divmod(end-start, 3600)
minutes, seconds = divmod(rem, 60)
print("{:0>2}:{:0>2}:{:05.2f}".format(int(hours),int(minutes),seconds))