Metadata-Version: 2.1
Name: phone_email_verifier
Version: 0.0.3
Summary: Validation of the email or international or local telephone number
Home-page: https://github.com/Bogro/phone_email_verifier
Author: Christian BOGRO
Author-email: bogrolcr@gmail.com
License: MIT
Download-URL: https://github.com/Bogro/phone_email_verifier/tarball/master
Description: # PHONE & EMAIL Verifier V0.0.3
        
        ## 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.
Keywords: email,phone number,filter,blocking,text,phone local,phone international
Platform: UNKNOWN
Description-Content-Type: text/markdown
