Metadata-Version: 2.1
Name: extractor-phone-email
Version: 1.0.3
Summary: Package that allows, with regular expressions, to extract from texts, phone numbers and emails
Home-page: UNKNOWN
Author: Dari Developer
Author-email: hernandezdarifrancisco@gmail.com
License: MIT
Project-URL: Documentation, https://github.com/DariHernandez/phone_and_email_extractor/blob/master/README.md
Project-URL: Funding, https://www.paypal.com/paypalme/FranciscoDari
Project-URL: Source, https://github.com/DariHernandez/phone_and_email_extractor
Description: # Extractor_phone_email
        Get from text or clipboard emails and phone numbers
        
        ## Install
        
        ``` bash
        $ pip install extractor-phone-email
        ```
        
        ## How to use
        
        ``` python
        # Import pakage
        from extractor_phone_email import extractor
        
        # Make an intance reading the clipboard
        myExtractor = extractor.Extractor()
        
        # Make an intance with specific text
        myExtractor = extractor.Extractor("This is an example text +524493247419 hernandezdarifrancisco@gmail.com")
        
        #Return all numbers and emails
        myExtractor.get()
        
        # Return only phone numbers
        myExtractor.get_phones()
        
        # Return only emails
        myExtractor.get_emails()
        ```
        
Keywords: extract,re,phones,emails
Platform: UNKNOWN
Requires-Python: >=3.7
Description-Content-Type: text/markdown
