user-scanner 1.0.4.2__py3-none-any.whl → 1.0.6.0__py3-none-any.whl
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/__init__.py +0 -1
- user_scanner/__main__.py +24 -17
- user_scanner/cli/banner.py +2 -0
- user_scanner/community/coderlegion.py +11 -31
- user_scanner/core/orchestrator.py +72 -15
- user_scanner/creator/devto.py +11 -29
- user_scanner/creator/hashnode.py +19 -17
- user_scanner/creator/itch_io.py +12 -33
- user_scanner/creator/kaggle.py +11 -29
- user_scanner/creator/medium.py +11 -10
- user_scanner/creator/patreon.py +18 -38
- user_scanner/creator/producthunt.py +16 -14
- user_scanner/dev/codeberg.py +11 -29
- user_scanner/dev/cratesio.py +11 -24
- user_scanner/dev/dockerhub.py +11 -27
- user_scanner/dev/github.py +23 -36
- user_scanner/dev/gitlab.py +18 -30
- user_scanner/dev/launchpad.py +11 -24
- user_scanner/dev/npmjs.py +22 -19
- user_scanner/dev/replit.py +11 -29
- user_scanner/donation/__init__.py +0 -0
- user_scanner/donation/buymeacoffee.py +22 -0
- user_scanner/donation/liberapay.py +36 -0
- user_scanner/gaming/chess_com.py +23 -34
- user_scanner/gaming/minecraft.py +24 -0
- user_scanner/gaming/monkeytype.py +6 -18
- user_scanner/gaming/osu.py +14 -34
- user_scanner/gaming/roblox.py +21 -31
- user_scanner/gaming/steam.py +15 -29
- user_scanner/social/bluesky.py +21 -32
- user_scanner/social/discord.py +12 -13
- user_scanner/social/instagram.py +11 -24
- user_scanner/social/mastodon.py +18 -38
- user_scanner/social/pinterest.py +16 -30
- user_scanner/social/reddit.py +16 -30
- user_scanner/social/snapchat.py +24 -37
- user_scanner/social/telegram.py +13 -18
- user_scanner/social/threads.py +11 -24
- user_scanner/social/x.py +14 -12
- user_scanner/social/youtube.py +37 -34
- user_scanner/utils/version.py +2 -0
- user_scanner/version.json +1 -1
- {user_scanner-1.0.4.2.dist-info → user_scanner-1.0.6.0.dist-info}/METADATA +12 -53
- user_scanner-1.0.6.0.dist-info/RECORD +55 -0
- user_scanner-1.0.4.2.dist-info/RECORD +0 -51
- {user_scanner-1.0.4.2.dist-info → user_scanner-1.0.6.0.dist-info}/WHEEL +0 -0
- {user_scanner-1.0.4.2.dist-info → user_scanner-1.0.6.0.dist-info}/entry_points.txt +0 -0
- {user_scanner-1.0.4.2.dist-info → user_scanner-1.0.6.0.dist-info}/licenses/LICENSE +0 -0
user_scanner/social/threads.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
1
|
+
from user_scanner.core.orchestrator import status_validate
|
|
2
|
+
|
|
3
3
|
|
|
4
4
|
def validate_instagram(user):
|
|
5
5
|
url = f"https://www.threads.com/api/v1/users/web_profile_info/?username={user}"
|
|
@@ -13,30 +13,17 @@ def validate_instagram(user):
|
|
|
13
13
|
'X-Requested-With': "XMLHttpRequest",
|
|
14
14
|
'Referer': f"https://www.instagram.com/{user}/",
|
|
15
15
|
}
|
|
16
|
-
|
|
17
|
-
try:
|
|
18
|
-
response = httpx.get(url, headers=headers, timeout = 3.0)
|
|
19
|
-
status = response.status_code
|
|
20
16
|
|
|
21
|
-
|
|
22
|
-
return 0
|
|
23
|
-
elif status == 404:
|
|
24
|
-
return 1
|
|
25
|
-
else:
|
|
26
|
-
return 2
|
|
17
|
+
return status_validate(url, 404, 200, headers=headers)
|
|
27
18
|
|
|
28
|
-
except (ConnectError, TimeoutException):
|
|
29
|
-
return 2
|
|
30
|
-
except Exception:
|
|
31
|
-
return 2
|
|
32
19
|
|
|
33
20
|
if __name__ == "__main__":
|
|
34
|
-
|
|
35
|
-
|
|
21
|
+
user = input("Username?: ").strip()
|
|
22
|
+
result = validate_instagram(user)
|
|
36
23
|
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
24
|
+
if result == 1:
|
|
25
|
+
print("Available!")
|
|
26
|
+
elif result == 0:
|
|
27
|
+
print("Unavailable!")
|
|
28
|
+
else:
|
|
29
|
+
print("Error occured!")
|
user_scanner/social/x.py
CHANGED
|
@@ -3,6 +3,7 @@ import json
|
|
|
3
3
|
from colorama import Fore, Style
|
|
4
4
|
from httpx import ConnectError, TimeoutException
|
|
5
5
|
|
|
6
|
+
|
|
6
7
|
def validate_x(user):
|
|
7
8
|
url = "https://api.twitter.com/i/users/username_available.json"
|
|
8
9
|
|
|
@@ -18,13 +19,12 @@ def validate_x(user):
|
|
|
18
19
|
}
|
|
19
20
|
|
|
20
21
|
try:
|
|
21
|
-
response = httpx.get(url, params=params, headers=headers, timeout
|
|
22
|
+
response = httpx.get(url, params=params, headers=headers, timeout=3.0)
|
|
22
23
|
status = response.status_code
|
|
23
24
|
# print(response.text)
|
|
24
25
|
if status in [401, 403, 429]:
|
|
25
26
|
return 2
|
|
26
27
|
|
|
27
|
-
|
|
28
28
|
elif status == 200:
|
|
29
29
|
data = response.json()
|
|
30
30
|
if data.get('valid') is True:
|
|
@@ -32,7 +32,8 @@ def validate_x(user):
|
|
|
32
32
|
elif data.get('reason') == 'taken':
|
|
33
33
|
return 0
|
|
34
34
|
elif (data.get('reason') == "improper_format" or data.get('reason') == "invalid_username"):
|
|
35
|
-
print(
|
|
35
|
+
print(
|
|
36
|
+
"\n" + " "+f"{Fore.CYAN}X says: {data.get('desc')}{Style.RESET_ALL}")
|
|
36
37
|
return 2
|
|
37
38
|
else:
|
|
38
39
|
return 2
|
|
@@ -42,13 +43,14 @@ def validate_x(user):
|
|
|
42
43
|
except Exception:
|
|
43
44
|
return 2
|
|
44
45
|
|
|
46
|
+
|
|
45
47
|
if __name__ == "__main__":
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
48
|
+
user = input("Username?: ").strip()
|
|
49
|
+
result = validate_x(user)
|
|
50
|
+
|
|
51
|
+
if result == 1:
|
|
52
|
+
print("Available!")
|
|
53
|
+
elif result == 0:
|
|
54
|
+
print("Unavailable!")
|
|
55
|
+
else:
|
|
56
|
+
print("Error occured!")
|
user_scanner/social/youtube.py
CHANGED
|
@@ -1,56 +1,59 @@
|
|
|
1
1
|
import httpx
|
|
2
2
|
from httpx import ConnectError, TimeoutException
|
|
3
3
|
|
|
4
|
+
|
|
4
5
|
def validate_youtube(user):
|
|
5
6
|
url = f"https://m.youtube.com/@{user}"
|
|
6
7
|
|
|
7
8
|
headers = {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
9
|
+
'User-Agent': "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Mobile Safari/537.36",
|
|
10
|
+
'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",
|
|
11
|
+
'Accept-Encoding': "gzip, deflate, br, zstd",
|
|
12
|
+
'device-memory': "4",
|
|
13
|
+
'sec-ch-ua': "\"Google Chrome\";v=\"141\", \"Not?A_Brand\";v=\"8\", \"Chromium\";v=\"141\"",
|
|
14
|
+
'sec-ch-ua-mobile': "?1",
|
|
15
|
+
'sec-ch-ua-full-version': "\"141.0.7390.111\"",
|
|
16
|
+
'sec-ch-ua-arch': "\"\"",
|
|
17
|
+
'sec-ch-ua-platform': "\"Android\"",
|
|
18
|
+
'sec-ch-ua-platform-version': "\"15.0.0\"",
|
|
19
|
+
'sec-ch-ua-bitness': "\"\"",
|
|
20
|
+
'sec-ch-ua-wow64': "?0",
|
|
21
|
+
'sec-ch-ua-full-version-list': "\"Google Chrome\";v=\"141.0.7390.111\", \"Not?A_Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"141.0.7390.111\"",
|
|
22
|
+
'sec-ch-ua-form-factors': "\"Mobile\"",
|
|
23
|
+
'upgrade-insecure-requests': "1",
|
|
24
|
+
'sec-fetch-site': "none",
|
|
25
|
+
'sec-fetch-mode': "navigate",
|
|
26
|
+
'sec-fetch-user': "?1",
|
|
27
|
+
'sec-fetch-dest': "document",
|
|
28
|
+
'accept-language': "en-US,en;q=0.9",
|
|
29
|
+
'priority': "u=0, i"
|
|
29
30
|
}
|
|
30
31
|
|
|
31
32
|
try:
|
|
32
|
-
response = httpx.get(url, headers=headers,
|
|
33
|
+
response = httpx.get(url, headers=headers,
|
|
34
|
+
follow_redirects=True, timeout=3.0)
|
|
33
35
|
status = response.status_code
|
|
34
36
|
|
|
35
37
|
if status == 200:
|
|
36
|
-
|
|
38
|
+
return 0
|
|
37
39
|
elif status == 404:
|
|
38
|
-
|
|
40
|
+
return 1
|
|
39
41
|
else:
|
|
40
|
-
|
|
42
|
+
return 2
|
|
41
43
|
|
|
42
44
|
except (ConnectError, TimeoutException):
|
|
43
45
|
return 2
|
|
44
46
|
except Exception:
|
|
45
47
|
return 2
|
|
46
48
|
|
|
49
|
+
|
|
47
50
|
if __name__ == "__main__":
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
51
|
+
user = input("Username?: ").strip()
|
|
52
|
+
result = validate_youtube(user)
|
|
53
|
+
|
|
54
|
+
if result == 1:
|
|
55
|
+
print("Available!")
|
|
56
|
+
elif result == 0:
|
|
57
|
+
print("Unavailable!")
|
|
58
|
+
else:
|
|
59
|
+
print("Error occured!")
|
user_scanner/utils/version.py
CHANGED
|
@@ -4,6 +4,7 @@ from pathlib import Path
|
|
|
4
4
|
_SCRIPT_DIR = Path(__file__).resolve().parent
|
|
5
5
|
VERSION_FILE = _SCRIPT_DIR.parent / "version.json"
|
|
6
6
|
|
|
7
|
+
|
|
7
8
|
def load_local_version():
|
|
8
9
|
try:
|
|
9
10
|
data = json.loads(VERSION_FILE.read_text())
|
|
@@ -15,6 +16,7 @@ def load_local_version():
|
|
|
15
16
|
except Exception:
|
|
16
17
|
return "N/A", "error"
|
|
17
18
|
|
|
19
|
+
|
|
18
20
|
if __name__ == "__main__":
|
|
19
21
|
version, version_type = load_local_version()
|
|
20
22
|
print(f"Version: {version}, Type: {version_type}")
|
user_scanner/version.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: user-scanner
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.6.0
|
|
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>
|
|
@@ -15,7 +15,7 @@ Project-URL: Homepage, https://github.com/kaifcodec/user-scanner
|
|
|
15
15
|
|
|
16
16
|

|
|
17
17
|
<p align="center">
|
|
18
|
-
<img src="https://img.shields.io/badge/Version-1.0.
|
|
18
|
+
<img src="https://img.shields.io/badge/Version-1.0.6.0-blueviolet?style=for-the-badge&logo=github" />
|
|
19
19
|
<img src="https://img.shields.io/github/issues/kaifcodec/user-scanner?style=for-the-badge&logo=github" />
|
|
20
20
|
<img src="https://img.shields.io/badge/Tested%20on-Termux-black?style=for-the-badge&logo=termux" />
|
|
21
21
|
<img src="https://img.shields.io/badge/Tested%20on-Windows-cyan?style=for-the-badge&logo=Windows" />
|
|
@@ -63,53 +63,13 @@ user-scanner -u <username> -m github
|
|
|
63
63
|
|
|
64
64
|
```
|
|
65
65
|
---
|
|
66
|
-
###
|
|
66
|
+
### Screenshot:
|
|
67
|
+
|
|
68
|
+
- Note*: New modules are constantly getting added so this might have only limited, outdated output:
|
|
69
|
+
|
|
70
|
+
<img width="1008" height="568" alt="1000139959" src="https://github.com/user-attachments/assets/467a4aa0-238d-4110-b9a6-d4b96c244432" />
|
|
71
|
+
|
|
67
72
|
|
|
68
|
-
- Note*: New modules are constantly getting added so this might have only limited, outdated output:
|
|
69
|
-
```bash
|
|
70
|
-
Checking username: johndoe078
|
|
71
|
-
|
|
72
|
-
== DEV SITES ==
|
|
73
|
-
[✔] Codeberg: Available
|
|
74
|
-
[✔] Cratesio: Available
|
|
75
|
-
[✔] Dockerhub: Available
|
|
76
|
-
[✘] Github: Taken
|
|
77
|
-
[✔] Gitlab: Available
|
|
78
|
-
[✔] Launchpad: Available
|
|
79
|
-
[✔] Npmjs: Available
|
|
80
|
-
[✔] Replit: Available
|
|
81
|
-
|
|
82
|
-
== SOCIAL SITES ==
|
|
83
|
-
[✔] Bluesky: Available
|
|
84
|
-
[✔] Discord: Available
|
|
85
|
-
[✘] Instagram: Taken
|
|
86
|
-
[✔] Mastodon: Available
|
|
87
|
-
[✔] Pinterest: Available
|
|
88
|
-
[✘] Reddit: Taken
|
|
89
|
-
[✔] Snapchat: Available
|
|
90
|
-
[✔] Telegram: Available
|
|
91
|
-
[✘] Threads: Taken
|
|
92
|
-
[✔] X (Twitter): Available
|
|
93
|
-
[✔] Youtube: Available
|
|
94
|
-
|
|
95
|
-
== CREATOR SITES ==
|
|
96
|
-
[✔] Devto: Available
|
|
97
|
-
[✔] Hashnode: Available
|
|
98
|
-
[✔] Kaggle: Available
|
|
99
|
-
[✔] Medium: Available
|
|
100
|
-
[✔] Patreon: Available
|
|
101
|
-
|
|
102
|
-
== COMMUNITY SITES ==
|
|
103
|
-
[✔] Coderlegion: Available
|
|
104
|
-
|
|
105
|
-
== GAMING SITES ==
|
|
106
|
-
[✔] Chess_com: Available
|
|
107
|
-
[✔] Osu: Available
|
|
108
|
-
[✔] Roblox: Available
|
|
109
|
-
...
|
|
110
|
-
...
|
|
111
|
-
...
|
|
112
|
-
```
|
|
113
73
|
### Contributing:
|
|
114
74
|
|
|
115
75
|
Modules are organized by category:
|
|
@@ -121,6 +81,7 @@ user_scanner/
|
|
|
121
81
|
├── creator/ # Creator platforms (Hashnode, Dev.to, Medium, etc.)
|
|
122
82
|
├── community/ # Community platforms (forums, niche sites)
|
|
123
83
|
├── gaming/ # Gaming sites (chess.com, roblox, monkeytype etc.)
|
|
84
|
+
├── donation/ # Donation taking sites (buymeacoffe.com, similar...)
|
|
124
85
|
```
|
|
125
86
|
|
|
126
87
|
**Module guidelines:**
|
|
@@ -149,8 +110,9 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for examples.
|
|
|
149
110
|
This project is licensed under the **MIT License**. See [LICENSE](LICENSE) for details.
|
|
150
111
|
|
|
151
112
|
|
|
152
|
-
|
|
153
|
-
|
|
113
|
+
---
|
|
114
|
+
|
|
115
|
+
### Star History
|
|
154
116
|
|
|
155
117
|
<a href="https://www.star-history.com/#kaifcodec/user-scanner&type=date&legend=top-left">
|
|
156
118
|
<picture>
|
|
@@ -159,7 +121,4 @@ This project is licensed under the **MIT License**. See [LICENSE](LICENSE) for d
|
|
|
159
121
|
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=kaifcodec/user-scanner&type=date&legend=top-left" />
|
|
160
122
|
</picture>
|
|
161
123
|
</a>
|
|
162
|
-
--->
|
|
163
|
-
---
|
|
164
|
-
## ⚠️ `community/` and `gaming/` are small, looking for contributions
|
|
165
124
|
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
user_scanner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
user_scanner/__main__.py,sha256=gKu_uqcydd5-9fZta2uL5r69i_BiQgzN43XqHGJyqLQ,3935
|
|
3
|
+
user_scanner/version.json,sha256=55qDhyK3TTdk4-Ht586r_b7p7U6Ptdbapl1izhEzTaw,49
|
|
4
|
+
user_scanner/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
user_scanner/cli/banner.py,sha256=3t6owaDArERlvpcszA1Yi3dtksvh8a9tLyrxRowTC40,1499
|
|
6
|
+
user_scanner/community/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
user_scanner/community/coderlegion.py,sha256=W_bdjzdFPRgUrNFFlylvToSJ4AzaFCtTsUy_MRVDdSo,451
|
|
8
|
+
user_scanner/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
user_scanner/core/orchestrator.py,sha256=8kaokGxKo8uVemv7KCdrCQyjTXCZh1QrqSTurnlWLqY,4593
|
|
10
|
+
user_scanner/creator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
user_scanner/creator/devto.py,sha256=mIACmG1a4eoctywxb5p04sI0YVi3dsjCRw9YVOFBEKQ,435
|
|
12
|
+
user_scanner/creator/hashnode.py,sha256=LBg8yRkB-WAVYavfeKWh6R2LWmUHMyXt02BLIXP-C4o,1378
|
|
13
|
+
user_scanner/creator/itch_io.py,sha256=d-s2k410aZtaYQXpTgaKsgQ488Ag9vGJj5buw7XM32I,556
|
|
14
|
+
user_scanner/creator/kaggle.py,sha256=QaXIG02OGxvQZEvwHm50RKNd7joxGOq0Ht3cFfrYEiU,445
|
|
15
|
+
user_scanner/creator/medium.py,sha256=zA8zw7hrH_JOXGM3oW7dfe5kldIRNyeBWZ8UCdAqZlg,1019
|
|
16
|
+
user_scanner/creator/patreon.py,sha256=aneIkwVSc7SFpE8H5HlSDMYQZc-97ZOtGZXrRb4PfWw,589
|
|
17
|
+
user_scanner/creator/producthunt.py,sha256=xgv-LJ97LLmyD2GRw4g3gylUMpOKUW0asbTnULbpZsE,1205
|
|
18
|
+
user_scanner/dev/__init__.py,sha256=qUR0eLwN-gO6oKk-1cmCVT4G_AxUHHMgpV3wJ7URXi4,7
|
|
19
|
+
user_scanner/dev/codeberg.py,sha256=Z6nV0_8xZhMiCcNn9Hn79VVh6y0ar9fqL7KS2b7IaDo,447
|
|
20
|
+
user_scanner/dev/cratesio.py,sha256=mJnlLJoMLlQ7f_95QD7LgH1xCj-e6FooOFkpYypBfG4,724
|
|
21
|
+
user_scanner/dev/dockerhub.py,sha256=sPEnomGiPM2mKv2HsA-9WxaXHjzz21A6ox3IXK1etLc,643
|
|
22
|
+
user_scanner/dev/github.py,sha256=jQ6q9V0snMUzGwIcbYZM_cJfiM8VZNYGm08dlDJqb6g,1113
|
|
23
|
+
user_scanner/dev/gitlab.py,sha256=FBwxrYWZXRkj55r_Dq8ZJLgLVLGrv5WU5k--31b_bz8,1243
|
|
24
|
+
user_scanner/dev/launchpad.py,sha256=N58ioX_dEHq2uwyyGrWnDKWwbqK9_RiuBQ1uWR5cDfg,799
|
|
25
|
+
user_scanner/dev/npmjs.py,sha256=K_bfLnehgaDlroiyMiIT801noRW-AyVISGd8xwMrWTM,1215
|
|
26
|
+
user_scanner/dev/replit.py,sha256=SI_i2l4w9tm2kBX4-cONBAT8dSynXoGEP4zcU8ngnh0,442
|
|
27
|
+
user_scanner/donation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
|
+
user_scanner/donation/buymeacoffee.py,sha256=8ZFuE8zjCclNP1C2RejDc4kMauGZpuYkxA1iiphSWKU,522
|
|
29
|
+
user_scanner/donation/liberapay.py,sha256=njClxpbRLZQ_L2-lUYCY6QFnF4IcwfCJPCIg1iEqo7M,1120
|
|
30
|
+
user_scanner/gaming/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
|
+
user_scanner/gaming/chess_com.py,sha256=LlZ-cn3wW8ysRSQ7FVnOofnJIgMbIDX_tGkdkNMhUwM,1282
|
|
32
|
+
user_scanner/gaming/minecraft.py,sha256=-mNhKTDwEETZv-IuLo1dHg2NfhFgb9w9-7zvP-HxtAU,601
|
|
33
|
+
user_scanner/gaming/monkeytype.py,sha256=uktLoHEV-wyjR-WsuVvgvrVCDVU3YpCISrhStM9odTU,1428
|
|
34
|
+
user_scanner/gaming/osu.py,sha256=L6LYOY1GyzQ2-KimGnvuT6BEGpY7K0hgV394sy8fvak,560
|
|
35
|
+
user_scanner/gaming/roblox.py,sha256=RnoME2NxMriILh1IiXQCe3J1l_G5Fs2S16YGKHCw3WY,1110
|
|
36
|
+
user_scanner/gaming/steam.py,sha256=-WtY-Wm68pJRW3fseayJfG3XqwGOzuUERuC5yLX16nQ,754
|
|
37
|
+
user_scanner/social/__init__.py,sha256=jaCkFwX1uYtF0ENifVwF8OfHrYYUTm64B9wlBq9BBfQ,9
|
|
38
|
+
user_scanner/social/bluesky.py,sha256=TlKONKmN2lvHRomQAqwkKzlIERSRKCbtPprcD9R_8CQ,1947
|
|
39
|
+
user_scanner/social/discord.py,sha256=iDnle44eyBTgeeyLb6jLysI4S-KRMNbaqDIVC0hCsMU,1135
|
|
40
|
+
user_scanner/social/instagram.py,sha256=GgmKGvi3meKdZ_nQJbJSBZDJTEKSoE6Cn4_VARmo62I,953
|
|
41
|
+
user_scanner/social/mastodon.py,sha256=l3Aixl7DCj_gtAiNzc3wA3pZxI-nP-zzRMuKkuwvTgM,578
|
|
42
|
+
user_scanner/social/pinterest.py,sha256=_Sditb8k1xRhplsN79RIEbZNlzfxIqFD6kGh3nAmVCE,677
|
|
43
|
+
user_scanner/social/reddit.py,sha256=yA7n7GFmS5mr02BOR4DeTmIT5GdnSCbUyaVarV9RMTk,700
|
|
44
|
+
user_scanner/social/snapchat.py,sha256=XEW_W4jEBX4AiHREcfHGstt97Ez3GI-3bKSzhtMyn28,1277
|
|
45
|
+
user_scanner/social/telegram.py,sha256=HU20t0A9jFijOUcdgzXfoNymxDBk2BhAqw7rIhSBfEQ,740
|
|
46
|
+
user_scanner/social/threads.py,sha256=rK8Gm_riDdr0djo23tk38fNVVEBuC6nj2iTXvWrqXeE,951
|
|
47
|
+
user_scanner/social/x.py,sha256=5UYBLmLuFpFeKQYqCkebQKB46GsfiQjV4flAdcrJAps,1591
|
|
48
|
+
user_scanner/social/youtube.py,sha256=nqW1XKZOefpPTDeCvqFTJXP24SjhntIQRlevwuSGLSk,2027
|
|
49
|
+
user_scanner/utils/update.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
50
|
+
user_scanner/utils/version.py,sha256=mPh24EwITyXgD3AMgbflRL180pS0JfrvuJdnoErOU34,623
|
|
51
|
+
user_scanner-1.0.6.0.dist-info/entry_points.txt,sha256=XqU3kssYZ0vXaPy5qYUOTCu4u-48Xie7QWFpBCYc7Nc,59
|
|
52
|
+
user_scanner-1.0.6.0.dist-info/licenses/LICENSE,sha256=XH1QyQG68zo1opDIZHTHcTAbe9XMzewvTaFTukcN9vc,1061
|
|
53
|
+
user_scanner-1.0.6.0.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
|
54
|
+
user_scanner-1.0.6.0.dist-info/METADATA,sha256=J5aHMpDhRHeJX2BP-gzKi3NafuE7ArjUb-kvLOlaILU,4185
|
|
55
|
+
user_scanner-1.0.6.0.dist-info/RECORD,,
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
user_scanner/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
2
|
-
user_scanner/__main__.py,sha256=ZdGxMN0LgzafygRkiZ0wt5Xt8XosFwLs71gB6mh0_bY,3770
|
|
3
|
-
user_scanner/version.json,sha256=23jDI4lYTJ9lUMEGQ5o6zOlKkPZyH6HvYr0V2YHe0RU,49
|
|
4
|
-
user_scanner/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
-
user_scanner/cli/banner.py,sha256=A3uMAwkyf-WHQH3ki3XlslAxAEMPQYZiIGeawnctZEA,1497
|
|
6
|
-
user_scanner/community/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
user_scanner/community/coderlegion.py,sha256=wva0seSkd4h7kSjIprW0wM7JC0zspFjXGnDHkeIJ3YI,1141
|
|
8
|
-
user_scanner/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
user_scanner/core/orchestrator.py,sha256=pWvT3yBwvyyIhMTcOCFQ059GlT09CW6RX-r_OBKRT9g,2744
|
|
10
|
-
user_scanner/creator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
user_scanner/creator/devto.py,sha256=K9jXlwSlhJxwZomGJB7m8u_22kTejLPJ_-AvwFZahsY,1034
|
|
12
|
-
user_scanner/creator/hashnode.py,sha256=2Q-K9Yuy-6qOoJJPMq3UD0JHP4d9XeO9OGpBeHuMims,1351
|
|
13
|
-
user_scanner/creator/itch_io.py,sha256=fgxIHIlw4Lk40L479MDsMTCLlRlMIzw1sTHLhxwQ8uM,1223
|
|
14
|
-
user_scanner/creator/kaggle.py,sha256=pCq7QQ62wxunEmBIWNjKyWIH2ENXK76BM3zt4HWi0zM,927
|
|
15
|
-
user_scanner/creator/medium.py,sha256=dWNialp0QTo4GRq64afA00G3PDXVOLZM3mnO3WnmR8c,1008
|
|
16
|
-
user_scanner/creator/patreon.py,sha256=drjlB5XDFs1TW6J3W1LqBwZhc6PWtn-5nLBG8OtnFhU,1274
|
|
17
|
-
user_scanner/creator/producthunt.py,sha256=b9ZbOIfcFhBk34TCSoDEW5_4XLF4yGpJL7Vcg_zA54U,1164
|
|
18
|
-
user_scanner/dev/__init__.py,sha256=qUR0eLwN-gO6oKk-1cmCVT4G_AxUHHMgpV3wJ7URXi4,7
|
|
19
|
-
user_scanner/dev/codeberg.py,sha256=WuGisrD2-OVolXB1T_5Dn-J8Nx5BTX_Fh2MTsK-F7os,930
|
|
20
|
-
user_scanner/dev/cratesio.py,sha256=n1yJFJ2uWfRzpARSNSZ9s53iPm-5IiAxTOMTq0hOVis,999
|
|
21
|
-
user_scanner/dev/dockerhub.py,sha256=P5bQEY9hm-k600rAtFi9rhiRAZy3Ansch282cC-ZTGk,1108
|
|
22
|
-
user_scanner/dev/github.py,sha256=RSjJrCOchvQKYPScR2BeBn_qyUZxGyfTmNYFCOY3J7E,1407
|
|
23
|
-
user_scanner/dev/gitlab.py,sha256=0-3vYg5G5_uguH2I68zZdPyq5VaMUS76766Db7uWrR8,1433
|
|
24
|
-
user_scanner/dev/launchpad.py,sha256=ank50BpTsN7m5_MuQNxAbLpfQOrwjnwS_olO9nhPwgk,1074
|
|
25
|
-
user_scanner/dev/npmjs.py,sha256=Tv2YgCpuSxJKWEPdcTWwm9CCl2rmfKlGdQe2rnMnXM8,1141
|
|
26
|
-
user_scanner/dev/replit.py,sha256=GN1Q8PecTzBsd6TpOT-qRnMvKhFTh1P6uCa8CDlXkpw,925
|
|
27
|
-
user_scanner/gaming/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
|
-
user_scanner/gaming/chess_com.py,sha256=QDUdijyQQi7fwy6roYWzDyAQv6gbtV-Zh_uZyHXiaR4,1505
|
|
29
|
-
user_scanner/gaming/monkeytype.py,sha256=k4wgDR5lQTJBIcyeMRjPE_F5KC3kJfeAuS2eez43yAs,1665
|
|
30
|
-
user_scanner/gaming/osu.py,sha256=Jz_s6qNURC-L10-MSfTh6mEywoEqOh8Stvb_bWJR_0I,1239
|
|
31
|
-
user_scanner/gaming/roblox.py,sha256=eCiAEiC8BaMwcd_6k3PE30FebtsjVCBkvUTZkaaJhHY,1605
|
|
32
|
-
user_scanner/gaming/steam.py,sha256=uhjc9ccVCcB2j113_0Y4-Kj4lmJpemJcdvyns38zdzY,1253
|
|
33
|
-
user_scanner/social/__init__.py,sha256=jaCkFwX1uYtF0ENifVwF8OfHrYYUTm64B9wlBq9BBfQ,9
|
|
34
|
-
user_scanner/social/bluesky.py,sha256=r5UIFCStlwEM4UxE6cDTrDb5w_EqPCgJ2iYz27GpjA8,2157
|
|
35
|
-
user_scanner/social/discord.py,sha256=3TaYAzqK9sPKzL_GPzli4P-U22Dwe-mSmeH6kVHJXI4,1137
|
|
36
|
-
user_scanner/social/instagram.py,sha256=oskZgHagkyl_p-bi7CMYqCh0wsoqfCFnR7GZcbKX1-U,1229
|
|
37
|
-
user_scanner/social/mastodon.py,sha256=KbhdutPe_M0bvtkJXz2VEhalSEgA7n-bUbrkR3pYAb4,1276
|
|
38
|
-
user_scanner/social/pinterest.py,sha256=LHCiTmPALPLYXDClz09EBKRREhs5u3CajeFiQg5Vvlg,1168
|
|
39
|
-
user_scanner/social/reddit.py,sha256=DQYWedJeeyUuk-6EARU_52rPQHNkjfSbahOl5AHENa0,1194
|
|
40
|
-
user_scanner/social/snapchat.py,sha256=ZG-SIv6RopT45dudfOm5sRxmV_ihWG1Vh1Z766fm8XE,1527
|
|
41
|
-
user_scanner/social/telegram.py,sha256=QxK2jD2QEvrYmnkxysl_yk7-G6CRWvkK5EnK6n5q3jY,946
|
|
42
|
-
user_scanner/social/threads.py,sha256=QRidTYquAMDHJSg68ySpWCbliRYdWJkbOqn8RfWzFQQ,1231
|
|
43
|
-
user_scanner/social/x.py,sha256=NetPGmPnWEKv6za9E_Ekah9bAeeFlEeY3qbTJQo7AqE,1560
|
|
44
|
-
user_scanner/social/youtube.py,sha256=zuyWCy5FtEilaIcUZ4dTCctRR9deFnwwWJkf-h_1K0E,1943
|
|
45
|
-
user_scanner/utils/update.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
46
|
-
user_scanner/utils/version.py,sha256=ou6CF7ndVwEYvSpO4Se-B-71AvVezZcaZJpYFgDQsqM,621
|
|
47
|
-
user_scanner-1.0.4.2.dist-info/entry_points.txt,sha256=XqU3kssYZ0vXaPy5qYUOTCu4u-48Xie7QWFpBCYc7Nc,59
|
|
48
|
-
user_scanner-1.0.4.2.dist-info/licenses/LICENSE,sha256=XH1QyQG68zo1opDIZHTHcTAbe9XMzewvTaFTukcN9vc,1061
|
|
49
|
-
user_scanner-1.0.4.2.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
|
50
|
-
user_scanner-1.0.4.2.dist-info/METADATA,sha256=6DQ_7krs1bZs-k2U_BSOCRCgpbPnZYzGhKkuTDRmAT0,4970
|
|
51
|
-
user_scanner-1.0.4.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|