gmail scanner
Project description
Gmail Scanner
Gmail Scanner
Description
The program will return only one results:
Unregistered
: It means that the Gmail is not registered or is blocked.
Update
1.0.0
- Record results to a csv file.
Usage
You need to install gmail_scanner
before.
pip install gmail_scanner
Lite Mode
- Create a new
.py
file with the following codes.
from gmail_scanner import check_one_gmail
# Only Print Unregistered Result
# admin is email prefix
check_one_gmail(f"admin")
- If you want to scan a lots of Gmail, you can use the following codes.
from gmail_scanner import scan_int, scan_int_multi
# single process mode(slow) to scan 6-digit gmail mailboxes
start_num = 0
end_num = 999999
email_length = 6
output_file = 'results.csv'
scan_int(start_num, end_num, email_length, output_file)
# multi process mode(fast) to scan 6-digit gmail mailboxes
start_num = 0
end_num = 999999
email_length = 6
output_file = 'results.csv'
batch_num = 1000
process_num = 20
scan_int_multi(start_num, end_num, email_length, output_file, batch_num, process_num)
PyPi
Docker
git clone https://github.com/Annihilater/gmail_scanner
cd gmail_scanner
cp .env.example .env
# edit the .env file
docker pull klause/gmail_scanner:latest
docker-compose up -d
Author
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
gmail_scanner-1.0.0.tar.gz
(6.1 kB
view details)
File details
Details for the file gmail_scanner-1.0.0.tar.gz
.
File metadata
- Download URL: gmail_scanner-1.0.0.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a599b16297cf992399ca377b536ce2731f67ed6e8d6a745df2a8ac029b551602 |
|
MD5 | b1faebd22836cff91041c0e7f46af03e |
|
BLAKE2b-256 | de4ad35ecb4cbabb82f54339600bc33e572f9f55a28e1d0ad62973aab411cd94 |