Facebook
From Br, 1 Month ago, written in Python.
This paste is a reply to Checker geradas from Epyzz - view diff
Embed
Download Paste or View Raw
Hits: 172
  1. # Coded by : epyzz
  2.  
  3.  
  4. # imports
  5.  
  6.  
  7. from termcolor import colored
  8. import requests
  9. from time import sleep
  10.  
  11.  
  12. # ini
  13.  
  14. print(colored("Checker Geradas v1","yellow"))
  15.  
  16.  
  17.  
  18. def Checker(gg):
  19.  
  20.  lista = gg
  21.  
  22.  
  23.  reque = requests.post("https://www.mrchecker.cc/card/ccn2/api.php",{"data":f"{lista}"})
  24.  
  25.  
  26.  data = reque.text
  27.  
  28.  
  29.  if "Live" in data:
  30.  
  31.   print(colored(f"Live > {lista} #Epyzz","green"))
  32.  
  33.  
  34.  elif "Unknown" in data:
  35.  
  36.   print(colored(f"Unknown > {lista} #Epyzz","red"))
  37.  
  38.  
  39.  else:
  40.  
  41.   print(colored(f"DIE > {lista} #Epyzz","yellow"))
  42.  
  43.  
  44. arq = open("lista.txt","r").readlines()
  45.  
  46.  
  47. for x in arq:
  48.  
  49.  print(Checker(x.replace("n","")))
  50.  
  51.