requesck

An integrated library for checking email if it is registered on social media

SidraELEzz' Github Stats

Installation :

pip install requesck

Domains are available

⌯ Gmail

⌯ Hotmail

⌯ Outlook

⌯ Yahoo

⌯ mail.ru

Available social networking site

⌯ snapchat

⌯ instagram

⌯ tiktok

⌯ twitter

⌯ facebook

To check the email if it is available on Instagram

from requesck import check 

email = "<[email protected]>"

checking = check.instagram(str(email))
if (checking) ==True:
	print ("The email is linked to the Instagram account")
	try:
		if ("@gmail.com") in email:
			response = check.gmail(str(email))
			if (response) ==True:
				print("Email is  available ")
			elif (response) ==False:
				print("Email is  available ")
	except:pass
	
elif (checking) ==False:
	print ("The email is not linked to the Instagram account")
 

To get email business

from requesck import check 

username = "< username >"
sessionid = "<sessionid>"
response = check.getmail(str(username),str(sessionid))
if str("'The resulting': 'True'") in str(response):
	email = response["email"]
	username = response["username"]
	print(email)
	print(username)
	
elif (response) ==False:
	print("username is not a business")


	

Follow us on social media

Github

Telegram

GitHub

View Github