Metadata-Version: 2.1
Name: email_extractor_unicode
Version: 1.2.1
Summary: Extract Emails Using Phone Number
Home-page: https://t.me/iamunicode
Author: Unicode
License: MIT
Keywords: emails
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE.rst
Requires-Dist: undetected-chromedriver
Requires-Dist: beautifulsoup4
Requires-Dist: setuptools

<h1>Email Extractor Unicode</h1>
<p>Email Extractor Unicode is a Python library that allows you to extract emails from web pages related to phone
   numbers. It utilizes the undetected_chromedriver library to browse web pages and extract emails using regular
   expressions.
</p>
<h2>Installation</h2>
<p>To install Email Extractor Unicode, you can use pip:</p>
<pre><code>pip install email-extractor-unicode</code></pre>
<h2>Usage</h2>
<p>To use the library, you can import the <code>checker</code> function from the package.</p>
<pre><code>
import os
import subprocess

try:
    from email_extractor_unicode import checker
except ImportError:
    try:
        subprocess.check_call(["pip", "install", "email-extractor-unicode"])
        from email_extractor_unicode import checker
    except Exception as e:
        raise ImportError("Failed to install or import email-extractor-unicode:", e)

checker()
</code></pre>
<h2>Contact</h2>
<p>For any inquiries or feedback, you can reach out to me on Telegram at <a href="https://t.me/iamunicode"
   target="_blank">@iamunicode</a>. I'd be happy to hear from you and assist with any questions or issues
   related to Email Extractor Unicode.
</p>
<h2>Disclaimer</h2>
<p>Please use this library responsibly and respect the terms of service of the websites you are scraping. Email
   extraction from websites may be subject to legal restrictions in some jurisdictions. Always ensure you have the
   right to extract data from the websites you visit.
</p>

<h2>Change Log</h2>
<ul>
    <li><strong>1.2.1 (02/06/2024)</strong></li>
    <ul>
        <li>Saves Phone Number:Email</li>
        <li>Saves Emails</li>
        <li>Saves processed phone numbers</li>
    </ul>
</ul>


<h2>License</h2>

<p>Copyright 2024 UNICODE</p>

<p>Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
    documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
    rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit
    persons to whom the Software is furnished to do so, subject to the following conditions:</p>

<p>The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
    Software.</p>

<p>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
    WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
    COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
    OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p>
