forked from sinkaroid/illustrator-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
illu.py
31 lines (25 loc) · 1.21 KB
/
illu.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
#!python
#!C:\Python37\python.exe
import requests
from colorama import Fore, Back, 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)