Skip to content

pranaybankar/randomEmailidGenerator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This library will help you to generate ramdom email ids on the basis of numbers you provide as arguments to the script.
Syntax:
  python ./reidg/__init__.py number emailProvider
For example: 
Input: python ./reidg/__init__.py 898 yopmail.com
Output: 
  Number of emails to generate: 3
  wmNQxNIGyopmail.com
  FnkYCKdVYyopmail.com
  dYEcEygoyopmail.com
  
So how to import and use in your python script?
Method 1: 
test.py
	import reidg
	reidg.main()
  
> python test.py 345 gmail.com
Number of emails to generate: 3
[email protected]
[email protected]
[email protected]

Method 2:
test.py
	import reidg
	list_of_num = reidg.convert_to_list(99999)
	email_provider = "yopmail.com"
	reidg.random_char(list_of_num, email_provider)

> python test.py
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]

About

No description, website, or topics provided.

Resources

License

MIT, MIT licenses found

Licenses found

MIT
LICENSE
MIT
LICENSE.txt

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages