# Coded by : epyzz # imports from termcolor import colored import requests from time import sleep # ini print(colored("Checker Geradas v1","yellow")) def Checker(gg): lista = gg reque = requests.post("https://www.mrchecker.cc/card/ccn2/api.php",{"data":f"{lista}"}) data = reque.text if "Live" in data: print(colored(f"Live > {lista} #Epyzz","green")) elif "Unknown" in data: print(colored(f"Unknown > {lista} #Epyzz","red")) else: print(colored(f"DIE > {lista} #Epyzz","yellow")) arq = open("lista.txt","r").readlines() for x in arq: print(Checker(x.replace("n","")))