{"id":14974233,"url":"https://github.com/whois-api-llc/flask-email-verifier","last_synced_at":"2026-02-01T20:08:15.015Z","repository":{"id":57430282,"uuid":"160074302","full_name":"whois-api-llc/flask-email-verifier","owner":"whois-api-llc","description":"The easiest way to verify emails in your Flask application.","archived":false,"fork":false,"pushed_at":"2018-12-02T18:14:50.000Z","size":4,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-09-22T15:11:40.768Z","etag":null,"topics":["email","email-verification","flask","python","verification","whoisxmlapi"],"latest_commit_sha":null,"homepage":"https://emailverification.whoisxmlapi.com/api","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/whois-api-llc.png","metadata":{"files":{"readme":"README.rst","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}},"created_at":"2018-12-02T17:55:21.000Z","updated_at":"2023-06-17T08:18:32.000Z","dependencies_parsed_at":"2022-08-26T02:42:33.112Z","dependency_job_id":null,"html_url":"https://github.com/whois-api-llc/flask-email-verifier","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/whois-api-llc/flask-email-verifier","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whois-api-llc%2Fflask-email-verifier","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whois-api-llc%2Fflask-email-verifier/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whois-api-llc%2Fflask-email-verifier/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whois-api-llc%2Fflask-email-verifier/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/whois-api-llc","download_url":"https://codeload.github.com/whois-api-llc/flask-email-verifier/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whois-api-llc%2Fflask-email-verifier/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28988613,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-01T18:17:03.387Z","status":"ssl_error","status_checked_at":"2026-02-01T18:16:57.287Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["email","email-verification","flask","python","verification","whoisxmlapi"],"created_at":"2024-09-24T13:50:15.818Z","updated_at":"2026-02-01T20:08:15.000Z","avatar_url":"https://github.com/whois-api-llc.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Flask-EmailVerifier\n===================\n\nThe easiest way to verify emails in your Flask application.\n\n\nMeta\n----\n- Author: Whois API, Inc.\n- Email: support@whoisxmlapi.com\n- Site: https://emailverification.whoisxmlapi.com\n\n\nPrerequisites\n-------------\n\nTo use this library, you'll need to create a free Email Verification API\naccount: https://emailverification.whoisxmlapi.com/\n\nIf you haven't done this yet, please do so now.\n\n\nInstallation\n------------\n\nTo install ``Flask-EmailVerifier`` using `pypi \u003chttps://pypi.org/\u003e`_, simply run:\n\n.. code-block:: console\n\n    $ pip install Flask-EmailVerifier\n\nIn the root of your project directory.\n\n\nUsage\n-----\n\nOnce you have `Flask-EmailVerifier` installed, you can use it to easily\nverify an email address.\n\nThis library gives you access to the Email Verification API that\nyou can use in your application in any number of ways.\n\nHere's a simple Flask app that makes use of the email address verification\nand returns an email address information:\n\n.. code-block:: python\n\n    from flask import Flask, make_response\n    from flask_email_verifier import EmailVerifier\n    from json import dumps, loads\n\n    app = Flask(__name__)\n    # Initialize the extension\n    verifier = EmailVerifier(app)\n\n    @app.route('/email/\u003cemail\u003e')\n    def email(email):\n        # Retrieve an info for the given email address\n        email_address_info = verifier.verify(email)\n        if email_address_info is not None:\n            data = dumps(loads(email_address_info.json_string), indent=4)\n            resp = make_response(data, 200)\n            resp.headers['Content-Type'] = 'application/json'\n        else:\n            resp = make_response('None', 404)\n        return resp\n\nDon't forget to specify your API key:\n\n.. code-block:: bash\n\n    $ export EMAIL_VERIFIER_KEY='your-key'\n\n\nHere's the sort of data you might get back when performing a email\nverification request:\n\n.. code-block:: json\n\n    {\n        \"emailAddress\": \"test.email@gmail.com\",\n        \"formatCheck\": \"true\",\n        \"smtpCheck\": \"false\",\n        \"dnsCheck\": \"true\",\n        \"freeCheck\": \"true\",\n        \"disposableCheck\": \"false\",\n        \"catchAllCheck\": \"false\",\n        \"mxRecords\": [\n            \"alt3.gmail-smtp-in.l.google.com\",\n            \"alt1.gmail-smtp-in.l.google.com\",\n            \"alt2.gmail-smtp-in.l.google.com\",\n            \"alt4.gmail-smtp-in.l.google.com\",\n            \"gmail-smtp-in.l.google.com\"\n        ],\n        \"audit\": {\n            \"auditCreatedDate\": \"2018-11-14 13:05:09.000 UTC\",\n            \"auditUpdatedDate\": \"2018-11-14 13:05:09.000 UTC\"\n        }\n    }\n\n\nIn the event an email verification request can't finish successfully, the data\nreturned will be `None`. This library will *never* throw an exception.\nThis decision was made strategically: if you cannot verify user's email, it\ndoesn't mean that this user is bad.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwhois-api-llc%2Fflask-email-verifier","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwhois-api-llc%2Fflask-email-verifier","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwhois-api-llc%2Fflask-email-verifier/lists"}