Metadata-Version: 2.1
Name: email-permutations
Version: 0.1.0
Summary: To Find All Possible Permtations & Combinations for a given first name and last name
Home-page: https://github.com/devildani/email_permutations
Author: Pratik Dani
Author-email: danipratik91@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Emails Permutations and Combinations from first name and last name

Email `permutations` provides a list of all possible combinations of email for a given first name
and last name.

## Installation

You can install **permutations** library via pip:

    $ pip install permutations

## Example Usage

```python

from permutations import email_permutations

# Specify the first name, last name and domain name
first_name = "Pratik"
last_name = "Dani"
domain_name = "gmail.com"

permuted_emails = email_permutations.email_permuter(first_name=first_name,
	last_name=last_name,
	domain_name=domain_name
	)
```

## Contributions

If you find any bugs, please feel free to open an issue or send a pull request.


