Skip to main content

Validation of the email or international or local telephone number

Project description

PHONE & EMAIL Verifier

Description

Validation of the email or international or local telephone number.

Install

If you install with

pip install phone_email_verifier

1 : Download here https://github.com/Bogro/phone_email_verifier/blob/develop/phone_email_verifier/code.txt and drop it at the root of your project.

2 : Add the phone code dictionary path in the .env of your project.

#.env
DICT_CODE="dict_name.txt"

Note: This file is important for checking phone numbers

For direct downloads on github you do not need to follow the process above

Usage

>>> from phone_email_verifier import phone_email_verifier

>>> filter = phone_email_verifier()

E-mail

E-mail list

email = ['test@mail.tx', 'demo@mail.test', 'e.mail@mailer.com']

>>> filter.set_email_list(email, )

>>> filter.exec()

{'OK': ['test@mail.tx', 'e.mail@mailer.com'], 'ERROR': ['demo@mail.test']}

Phone

Number phone list

#simple use

phone = ['+22547000000', '+225-47-00-00-00', '+225 47 00 00 00 00', '+33 00 25 00 11 00', '47 02 00 00']

>>> filter.set_phone_list(phone)

{'OK': ['+22547000000', '+22547000000', '+2254700000000', '+330025001100'], 'ERROR': ['47020000']}

appartie d'un fichier

#simple use of a contact list

name_list = list_phone.csv

>>> filter.set_phone_in_file(name_list, colum=0) # colum is column of numbers

>>> filter.exec()

{'OK': ['+22547000000', '22547000010'], 'ERROR': ['030020585', '4578', '33024558452', '55552222', '658945898']}

It is important to specify the number column when the file is a csv file.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

phone_email_verifier-0.0.2.tar.gz (4.3 kB view hashes)

Uploaded Source

Built Distribution

phone_email_verifier-0.0.2-py3-none-any.whl (7.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page