Metadata-Version: 2.1
Name: emailfinderpy
Version: 1.0.0
Summary: Find and verify work emails.
Home-page: UNKNOWN
Author: Sean Michael Suntoso
Author-email: <contact@ssuntoso.com>
License: UNKNOWN
Keywords: python,email,email finder,work email,company domain,start up
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE


# emailfinderpy
## What is it?
This package can be use to verify emails. On top of that, it can also help you find email address. It might take a while to run the code since this code use brute force and try every single possible email combinations.

If you are interested to contribute, feel free to create a pull requests.

## How to use
Install this package using pip
`pip install emailfinderpy` or `pip3 install emailfinderpy`

```python
import emailfinderpy as em

print(em.verify_email('ssuntoso@gmail.com'))
# True

print(em.verify_multiple_email(['s.suntoso@gmail.com', 'ssuntoso@gmail.com'], 'Sean'))
#   Name                Email   Status
#0  Sean  s.suntoso@gmail.com  Veified
#1  Sean   ssuntoso@gmail.com  Veified

print(em.email_finder('Sean', '', 'Suntoso', 'gmail.com'))
#            Name                Email   Status
#0  sean  suntoso   ssuntoso@gmail.com  Veified
#1  sean  suntoso  s.suntoso@gmail.com  Veified
```


