-
-
Notifications
You must be signed in to change notification settings - Fork 126
/
Copy pathusername.py
42 lines (25 loc) · 835 Bytes
/
username.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#author : Sayyed Viquar ahmed
import requests
import urllib
def instagram(username):
try:
url="http://instagram.com/"+username
print("Username found in Instagram")
return("Username found ")
except Exception as e :
print("Can't find the Username ")
return("Can't find the the username ")
def pinrest(username):
try:
url="http://pinrest.com/"+username
print("Username found in Pinrest platform")
return("Username Found")
except Exception as e:
print("cant find the username")
def facebook(username):
try:
url="http://facebook.com/"+username
print("Username found in Pinrest platform")
return("Username Found")
except Exception as e:
print("cant find the username")