{"id":13467842,"url":"https://github.com/missuo/GmailValidChecker","last_synced_at":"2025-03-26T03:31:10.616Z","repository":{"id":61264605,"uuid":"549851051","full_name":"missuo/GmailValidChecker","owner":"missuo","description":"Gmail validity checker","archived":false,"fork":false,"pushed_at":"2023-10-01T05:11:40.000Z","size":27,"stargazers_count":13,"open_issues_count":2,"forks_count":5,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-20T00:22:24.195Z","etag":null,"topics":["gmail","gmail-api","gmail-checker"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/missuo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-10-11T20:51:44.000Z","updated_at":"2025-02-25T18:35:36.000Z","dependencies_parsed_at":"2024-07-31T15:17:25.557Z","dependency_job_id":null,"html_url":"https://github.com/missuo/GmailValidChecker","commit_stats":{"total_commits":18,"total_committers":2,"mean_commits":9.0,"dds":0.05555555555555558,"last_synced_commit":"b12507ae294717a2e35f1806f2e67379bb8f12df"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/missuo%2FGmailValidChecker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/missuo%2FGmailValidChecker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/missuo%2FGmailValidChecker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/missuo%2FGmailValidChecker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/missuo","download_url":"https://codeload.github.com/missuo/GmailValidChecker/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245584708,"owners_count":20639611,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["gmail","gmail-api","gmail-checker"],"created_at":"2024-07-31T15:01:01.234Z","updated_at":"2025-03-26T03:31:10.273Z","avatar_url":"https://github.com/missuo.png","language":"Python","readme":"\u003c!--\n * @Author: Vincent Young\n * @Date: 2022-10-12 04:52:04\n * @LastEditors: Vincent Young\n * @LastEditTime: 2022-10-13 01:46:43\n * @FilePath: /GmailValidChecker/README.md\n * @Telegram: https://t.me/missuo\n * \n * Copyright © 2022 by Vincent, All Rights Reserved. \n--\u003e\n# GmailValidChecker\nGmail validity checker\n\n## Description\n\nThe program will return only two results:\n\n- `Alive`: means that everything is fine with this Gmail and is being used.\n- `Unregistered`: It means that the Gmail is not registered or is **blocked**.\n\n**~~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.~~**\n\n**Determining whether a state is truly unregistered is already supported in the `Enhanced Mode`.**\n\n\n## Update\n### 0.0.8\n- Hide `Chrome` Windows, using no-browser.\n- Record results to `result.txt` file.\n\n### 0.0.6\n- Fixed bug\n\n### 0.0.5\n- Add Enhanced Mode\n- Support for truly unregistered judgments\n\n## Usage\n**You need to install `GmailChecker` before.**\n```bash\npip install GmailChecker\n```\n### Lite Mode\n1. Create a new `.py` file with the following codes.\n```python\nfrom GmailChecker import GmailChecker\n# Only Print Unregistered Result\nGmailChecker.verify(\"admin@gmail.com\")\n# Print Alive Result\nGmailChecker.verify(\"admin@gmail.com\", 1)\n```\n2. If you want to scan Gmails in bulk, you can use the following codes.\n```python\nfrom GmailChecker import GmailChecker\nfor i in range(1000000, 9999999):\n    email = str(i) + '@gmail.com'\n    GmailChecker.verify(email)\n```\n\n### Enhanced Mode\n1. You should download `chromedriver` to file directory.\n\n2. Create a new `.py` file with the following codes.\n```python\nfrom GmailChecker import GmailCheckerEnhanced\nfor i in range(9960001, 9969999):\n    # By default only unregistered results will be output\n    GmailCheckerEnhanced.scan(i)\n```\n\n## PyPi\n\u003ca href=\"https://pypi.org/project/GmailChecker/\"\u003e\u003cimg src=\"https://img.shields.io/badge/Pypi-000000?style=for-the-badge\u0026logo=pypi\u0026logoColor=red\" /\u003e\u003c/a\u003e\n\n## Reference Articles\n[Abusing Gmail to get previously unlisted e-mail addresses](https://blog.0day.rocks/abusing-gmail-to-get-previously-unlisted-e-mail-addresses-41544b62b2)\n\n## Author\n\n**GmailValidChecker** © [Vincent Young](https://github.com/missuo), Released under the [MIT](./LICENSE) License.\u003cbr\u003e\n\n","funding_links":[],"categories":["Python"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmissuo%2FGmailValidChecker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmissuo%2FGmailValidChecker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmissuo%2FGmailValidChecker/lists"}