user-scanner 1.0.0.3__tar.gz → 1.0.0.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/PKG-INFO +1 -1
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/pyproject.toml +1 -1
- user_scanner-1.0.0.4/user_scanner/community/coderlegion.py +39 -0
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/user_scanner/creator/kaggle.py +0 -4
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/user_scanner/social/instagram.py +0 -6
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/user_scanner/social/pinterest.py +0 -6
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/user_scanner/social/reddit.py +0 -6
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/user_scanner/social/snapchat.py +0 -6
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/user_scanner/social/threads.py +0 -6
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/user_scanner/social/x.py +0 -6
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/user_scanner/social/youtube.py +0 -6
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/LICENSE +0 -0
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/README.md +0 -0
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/user_scanner/__init__.py +0 -0
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/user_scanner/__main__.py +0 -0
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/user_scanner/community/__init__.py +0 -0
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/user_scanner/core/__init__.py +0 -0
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/user_scanner/core/orchestrator.py +0 -0
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/user_scanner/creator/__init__.py +0 -0
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/user_scanner/creator/devto.py +0 -0
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/user_scanner/creator/hashnode.py +0 -0
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/user_scanner/creator/medium.py +0 -0
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/user_scanner/dev/__init__.py +0 -0
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/user_scanner/dev/codeberg.py +0 -0
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/user_scanner/dev/cratesio.py +0 -0
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/user_scanner/dev/dockerhub.py +0 -0
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/user_scanner/dev/github.py +0 -0
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/user_scanner/dev/gitlab.py +0 -0
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/user_scanner/dev/launchpad.py +0 -0
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/user_scanner/dev/npmjs.py +0 -0
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/user_scanner/dev/replit.py +0 -0
- {user_scanner-1.0.0.3 → user_scanner-1.0.0.4}/user_scanner/social/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: user-scanner
|
|
3
|
-
Version: 1.0.0.
|
|
3
|
+
Version: 1.0.0.4
|
|
4
4
|
Summary: Check username availability across multiple popular platforms
|
|
5
5
|
Keywords: username,checker,availability,social,tech,python,user-scanner
|
|
6
6
|
Author-email: Kaif <kafcodec@gmail.com>
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import httpx
|
|
2
|
+
from httpx import ConnectError, TimeoutException
|
|
3
|
+
|
|
4
|
+
def validate_coderlegion(user):
|
|
5
|
+
url = f"https://coderlegion.com/user/{user}"
|
|
6
|
+
|
|
7
|
+
headers = {
|
|
8
|
+
'User-Agent': "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36",
|
|
9
|
+
'Accept': "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7",
|
|
10
|
+
'Accept-Encoding': "gzip, deflate, br",
|
|
11
|
+
'Accept-Language': "en-US,en;q=0.9",
|
|
12
|
+
}
|
|
13
|
+
try:
|
|
14
|
+
response = httpx.get(url, headers=headers, timeout = 15.0)
|
|
15
|
+
status = response.status_code
|
|
16
|
+
|
|
17
|
+
if status == 200:
|
|
18
|
+
return 0
|
|
19
|
+
elif status == 404:
|
|
20
|
+
return 1
|
|
21
|
+
else:
|
|
22
|
+
return 2
|
|
23
|
+
|
|
24
|
+
except (ConnectError, TimeoutException):
|
|
25
|
+
return 2
|
|
26
|
+
except Exception:
|
|
27
|
+
return 2
|
|
28
|
+
|
|
29
|
+
if __name__ == "__main__":
|
|
30
|
+
user = input ("Username?: ").strip()
|
|
31
|
+
result = validate_coderlegion(user)
|
|
32
|
+
|
|
33
|
+
if result == 1:
|
|
34
|
+
print("Available!")
|
|
35
|
+
elif result == 0:
|
|
36
|
+
print("Unavailable!")
|
|
37
|
+
else:
|
|
38
|
+
print("Error occured!")
|
|
39
|
+
|
|
@@ -10,17 +10,13 @@ def validate_kaggle(user):
|
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
try:
|
|
13
|
-
# Use GET request for maximum fidelity, though we only check status code
|
|
14
13
|
response = httpx.get(url, headers=headers, timeout=3.0, follow_redirects=True)
|
|
15
14
|
status = response.status_code
|
|
16
15
|
|
|
17
|
-
# If a profile exists (Taken) -> 200 OK
|
|
18
16
|
if status == 200:
|
|
19
17
|
return 0
|
|
20
|
-
# If no profile exists (Available) -> 404 Not Found
|
|
21
18
|
elif status == 404:
|
|
22
19
|
return 1
|
|
23
|
-
# Other status codes are errors
|
|
24
20
|
else:
|
|
25
21
|
return 2
|
|
26
22
|
|
|
@@ -31,12 +31,6 @@ def validate_instagram(user):
|
|
|
31
31
|
return 2
|
|
32
32
|
|
|
33
33
|
if __name__ == "__main__":
|
|
34
|
-
try:
|
|
35
|
-
import httpx
|
|
36
|
-
except ImportError:
|
|
37
|
-
print("Error: 'httpx' library is not installed.")
|
|
38
|
-
exit()
|
|
39
|
-
|
|
40
34
|
user = input ("Username?: ").strip()
|
|
41
35
|
result = validate_instagram(user)
|
|
42
36
|
|
|
@@ -31,12 +31,6 @@ def validate_pinterest(user):
|
|
|
31
31
|
return 2
|
|
32
32
|
|
|
33
33
|
if __name__ == "__main__":
|
|
34
|
-
try:
|
|
35
|
-
import httpx
|
|
36
|
-
except ImportError:
|
|
37
|
-
print("Error: 'httpx' library is not installed.")
|
|
38
|
-
exit()
|
|
39
|
-
|
|
40
34
|
user = input ("Username?: ").strip()
|
|
41
35
|
result = validate_pinterest(user)
|
|
42
36
|
|
|
@@ -31,12 +31,6 @@ def validate_reddit(user):
|
|
|
31
31
|
return 2
|
|
32
32
|
|
|
33
33
|
if __name__ == "__main__":
|
|
34
|
-
try:
|
|
35
|
-
import httpx
|
|
36
|
-
except ImportError:
|
|
37
|
-
print("Error: 'httpx' library is not installed.")
|
|
38
|
-
exit()
|
|
39
|
-
|
|
40
34
|
user = input ("Username?: ").strip()
|
|
41
35
|
result = validate_reddit(user)
|
|
42
36
|
|
|
@@ -37,12 +37,6 @@ def validate_snapchat(user):
|
|
|
37
37
|
return 2
|
|
38
38
|
|
|
39
39
|
if __name__ == "__main__":
|
|
40
|
-
try:
|
|
41
|
-
import httpx
|
|
42
|
-
except ImportError:
|
|
43
|
-
print("Error: 'httpx' library is not installed.")
|
|
44
|
-
exit()
|
|
45
|
-
|
|
46
40
|
user = input ("Username?: ").strip()
|
|
47
41
|
result = validate_snapchat(user)
|
|
48
42
|
|
|
@@ -31,12 +31,6 @@ def validate_instagram(user):
|
|
|
31
31
|
return 2
|
|
32
32
|
|
|
33
33
|
if __name__ == "__main__":
|
|
34
|
-
try:
|
|
35
|
-
import httpx
|
|
36
|
-
except ImportError:
|
|
37
|
-
print("Error: 'httpx' library is not installed.")
|
|
38
|
-
exit()
|
|
39
|
-
|
|
40
34
|
user = input ("Username?: ").strip()
|
|
41
35
|
result = validate_instagram(user)
|
|
42
36
|
|
|
@@ -41,12 +41,6 @@ def validate_x(user):
|
|
|
41
41
|
return 2
|
|
42
42
|
|
|
43
43
|
if __name__ == "__main__":
|
|
44
|
-
try:
|
|
45
|
-
import httpx
|
|
46
|
-
except ImportError:
|
|
47
|
-
print("Error: 'httpx' library is not installed.")
|
|
48
|
-
exit()
|
|
49
|
-
|
|
50
44
|
user = input ("Username?: ").strip()
|
|
51
45
|
result = validate_x(user)
|
|
52
46
|
|
|
@@ -45,12 +45,6 @@ def validate_youtube(user):
|
|
|
45
45
|
return 2
|
|
46
46
|
|
|
47
47
|
if __name__ == "__main__":
|
|
48
|
-
try:
|
|
49
|
-
import httpx
|
|
50
|
-
except ImportError:
|
|
51
|
-
print("Error: 'httpx' library is not installed.")
|
|
52
|
-
exit()
|
|
53
|
-
|
|
54
48
|
user = input ("Username?: ").strip()
|
|
55
49
|
result = validate_youtube(user)
|
|
56
50
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|