GithubHelp home page GithubHelp logo

gmailvalidchecker's Introduction

GmailValidChecker

Gmail validity checker

Description

The program will return only two results:

  • Alive: means that everything is fine with this Gmail and is being used.
  • Unregistered: It means that the Gmail is not registered or is blocked.

You must be aware that an Unregistered status does not mean that you are truly unregistered. The program cannot determine whether Gmail is unregistered or blocked.

Determining whether a state is truly unregistered is already supported in the Enhanced Mode.

Update

0.0.8

  • Hide Chrome Windows, using no-browser.
  • Record results to result.txt file.

0.0.6

  • Fixed bug

0.0.5

  • Add Enhanced Mode
  • Support for truly unregistered judgments

Usage

You need to install GmailChecker before.

pip install GmailChecker

Lite Mode

  1. Create a new .py file with the following codes.
from GmailChecker import GmailChecker
# Only Print Unregistered Result
GmailChecker.verify("[email protected]")
# Print Alive Result
GmailChecker.verify("[email protected]", 1)
  1. If you want to scan Gmails in bulk, you can use the following codes.
from GmailChecker import GmailChecker
for i in range(1000000, 9999999):
    email = str(i) + '@gmail.com'
    GmailChecker.verify(email)

Enhanced Mode

  1. You should download chromedriver to file directory.

  2. Create a new .py file with the following codes.

from GmailChecker import GmailCheckerEnhanced
for i in range(9960001, 9969999):
    # By default only unregistered results will be output
    GmailCheckerEnhanced.scan(i)

PyPi

Reference Articles

Abusing Gmail to get previously unlisted e-mail addresses

Author

GmailValidChecker © Vincent Young, Released under the MIT License.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.