
Product
Socket Now Supports pylock.toml Files
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Python API wrapper library for the NeverBounce
_ email
verification service.
.. code::
$ pip install neverbounce
The only dependency is the requests
_ library.
Sign up
_ to get an API username and key
_ and 1000 free monthly
verifications. The free account supports only single verifications.
Single verification
.. code::
>>> from neverbounce import NeverBounce
>>> neverbounce = NeverBounce('my_api_username', 'my_api_key')
>>> verified = neverbounce.verify('martin@martinkosir.net')
>>> print(str(verified))
martin@martinkosir.net: valid
>>> print(verified.email, verified.result_text, verified.result_code, verified.is_valid)
martin@martinkosir.net valid 0 True
Bulk verification
~~~~~~~~~~~~~~~~~
To use this features you need to `configure a payment method`_ in
NeverBounce account settings.
.. code::
>>> from neverbounce import NeverBounce
>>> neverbounce = NeverBounce('my_api_username', 'my_api_key')
Create the job and get it's id:
.. code::
>>> emails = ['some.email@example.com', 'john.smith@gmail.com']
>>> job_id = neverbounce.create_job(emails).job_id
Periodically check the status of verification job:
.. code::
>>> job_status = neverbounce.check_job(job_id)
Use the `results` generator to iterate over verified emails if the job has been completed:
.. code::
>>> if job_status.is_completed:
... for verified in neverbounce.results(job_id):
... print(verified.email, verified.result_text, verified.result_code, verified.is_valid)
some.email@example.com invalid 1 False
john.smith@gmail.com invalid 1 False
Account information
Get the information about your API account:
.. code::
>>> from neverbounce import NeverBounce
>>> neverbounce = NeverBounce('my_api_username', 'my_api_key')
>>> account = neverbounce.account()
>>> print(str(account))
Credits: 999, Jobs Completed: 22, Jobs Processing: 0
>>> print(account.credits, account.jobs_completed, account.jobs_processing)
999 22 0
Official docs for the NeverBounce RESTful API
_.. _NeverBounce: https://neverbounce.com/ .. _requests: http://docs.python-requests.org/ .. _Sign up: https://app.neverbounce.com/register .. _API username and key: https://app.neverbounce.com/settings/api .. _configure a payment method: https://app.neverbounce.com/settings/billing .. _Official docs for the NeverBounce RESTful API: https://docs.neverbounce.com/
.. image:: https://travis-ci.org/martinkosir/neverbounce-python.svg?branch=master :target: https://travis-ci.org/martinkosir/neverbounce-python
FAQs
API library for the NeverBounce email verification service.
We found that neverbounce demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.
Research
Security News
Malicious Ruby gems typosquat Fastlane plugins to steal Telegram bot tokens, messages, and files, exploiting demand after Vietnam’s Telegram ban.