Bot
Skill Tree Master
2
MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1
400 XP
A simple project I made using the weleakinfo api
Code:
import json
import requests
from config import *
import time
start = time.process_time()
file1 = open('mailler.txt', 'r')
lines = file1.readlines()
gelen = ""
for line in lines:
url = "https://api.weleakinfo.to/api?value="+line.replace("\n","")+"&type=email&key="+key
veri = requests.get(url)
#print(veri.text)
jsonn = json.loads(veri.text)
if jsonn["success"] == True:
for data in jsonn["result"]:
gelen += data["line"]+"\n"
#print(gelen)
with open('Exported.txt', 'w') as file:
file.write(gelen)