Checker - Super easy Python with free email verifier API | Tools/Bots/Validators | Crax

Welcome To Crax.Pro Forum!

Check our new Marketplace at Crax.Shop

   Login! SignUp Now!
  • We are in solidarity with our brothers and sisters in Palestine. Free Palestine. To learn more visit this Page

  • Crax.Pro domain has been taken down!

    Alternatives: Craxpro.io | Craxpro.com

Checker Super easy Python with free email verifier API

Checker Super easy Python with free email verifier API

LV
0
 

hydfvbcmjo

Member
Joined
Nov 19, 2021
Threads
3
Likes
1
Awards
1
Credits
433©
Cash
0$
Here's the Python code for verifying emails in a list called email.txt using Eva Pingutil and saving the results in an Excel file called result.xlsx


Before running it, install the following library
Python:
pip install requests openpyxl




Save your emails in a txt file and verify them, it's free lol
Python:
import requests
import json
import openpyxl

# Read the list of emails from email.txt
with open("email.txt", "r") as file:
    email_list = file.read().splitlines()

# Create an Excel file to store the results
workbook = openpyxl.Workbook()
worksheet = workbook.active
worksheet.title = "Email Verification Results"
worksheet.cell(row=1, column=1, value="Email")
worksheet.cell(row=1, column=2, value="Verification Result")

# Eva Pingutil API URL
pingutil_url = "https://api.eva.pingutil.com/email"

# Perform verification for each email and save the results to the Excel file
for row, email in enumerate(email_list, start=2):
    response = requests.get(f"{pingutil_url}?email={email}")
    result_data = json.loads(response.text)
    
    email_result = result_data.get("email", "")
    verification_result = result_data.get("result", "")
    
    worksheet.cell(row=row, column=1, value=email_result)
    worksheet.cell(row=row, column=2, value=verification_result)

# Save the Excel file
workbook.save("result.xlsx")

print("Email verification has been completed, and the results have been saved in 'result.xlsx'.")


This code reads emails from email.txt, performs verification using Eva Pingutil, and saves the results in an Excel file named result.xlsx. Each row in the Excel file contains the email and the verification result.

1 FMV3M VxN4yugFQgLOV6Ww
 

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Top Bottom