user-scanner 1.0.10.0__py3-none-any.whl → 1.0.10.1__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/__main__.py CHANGED
@@ -1,6 +1,5 @@
1
1
  import argparse
2
2
  import time
3
- import re
4
3
  import sys
5
4
  from user_scanner.cli import printer
6
5
  from user_scanner.core.orchestrator import generate_permutations, load_categories
@@ -8,7 +7,7 @@ from colorama import Fore, Style
8
7
  from user_scanner.cli.banner import print_banner
9
8
  from typing import List
10
9
  from user_scanner.core.result import Result
11
- from user_scanner.core.utils import is_last_value
10
+ from user_scanner.core.helpers import is_last_value
12
11
  from user_scanner.utils.updater_logic import check_for_updates
13
12
  from user_scanner.utils.update import update_self
14
13
 
@@ -119,7 +118,7 @@ def main():
119
118
  print(Printer.get_start())
120
119
  for i, name in enumerate(usernames):
121
120
  is_last = i == len(usernames) - 1
122
- if arg == None:
121
+ if arg is None:
123
122
  results.extend(func(name, Printer, is_last))
124
123
  else:
125
124
  results.extend(func(arg, name, Printer, is_last))
@@ -1,4 +1,3 @@
1
- import json
2
1
  from colorama import Fore, Style, init
3
2
  from ..core.version import load_local_version
4
3
 
@@ -15,7 +15,7 @@ def indentate(msg: str, indent: int):
15
15
 
16
16
  class Printer:
17
17
  def __init__(self, format: Literal["console", "csv", "json"]) -> None:
18
- if not format in ["console", "csv", "json"]:
18
+ if format not in ["console", "csv", "json"]:
19
19
  raise ValueError(f"Invalid output-format: {format}")
20
20
  self.mode: str = format
21
21
  self.indent: int = 0
@@ -42,7 +42,7 @@ class Printer:
42
42
 
43
43
  def get_end(self, json_char: str = "]") -> str:
44
44
  if not self.is_json:
45
- return
45
+ return ""
46
46
  self.indent = max(self.indent - 1, 0)
47
47
  return indentate(json_char, self.indent)
48
48
 
@@ -6,9 +6,9 @@ from itertools import permutations
6
6
  import httpx
7
7
  from pathlib import Path
8
8
  from user_scanner.cli.printer import Printer
9
- from user_scanner.core.result import Result, AnyResult
9
+ from user_scanner.core.result import Result
10
10
  from typing import Callable, Dict, List
11
- from user_scanner.core.utils import get_site_name, is_last_value
11
+ from user_scanner.core.helpers import get_site_name, is_last_value
12
12
 
13
13
 
14
14
  def load_modules(category_path: Path):
@@ -17,6 +17,8 @@ def load_modules(category_path: Path):
17
17
  if file.name == "__init__.py":
18
18
  continue
19
19
  spec = importlib.util.spec_from_file_location(file.stem, str(file))
20
+ if spec is None or spec.loader is None:
21
+ continue
20
22
  module = importlib.util.module_from_spec(spec)
21
23
  spec.loader.exec_module(module)
22
24
 
@@ -30,8 +32,8 @@ def load_categories() -> Dict[str, Path]:
30
32
 
31
33
  for subfolder in root.iterdir():
32
34
  if subfolder.is_dir() and \
33
- not subfolder.name.lower() in ["cli", "utils", "core"] and \
34
- not "__" in subfolder.name: # Removes __pycache__
35
+ subfolder.name.lower() not in ["cli", "utils", "core"] and \
36
+ "__" not in subfolder.name: # Removes __pycache__
35
37
  categories[subfolder.name] = subfolder.resolve()
36
38
 
37
39
  return categories
@@ -88,9 +90,9 @@ def run_module_single(module, username: str, printer: Printer, last: bool = True
88
90
  if category:
89
91
  result.update(category=category)
90
92
 
91
- site_name = get_site_name(module)
93
+ get_site_name(module)
92
94
  msg = printer.get_result_output(result)
93
- if last == False and printer.is_json:
95
+ if not last and printer.is_json:
94
96
  msg += ","
95
97
  print(msg)
96
98
 
@@ -114,9 +116,9 @@ def run_checks_category(category_path: Path, username: str, printer: Printer, la
114
116
  results.append(result)
115
117
 
116
118
  is_last = last and is_last_value(modules, i)
117
- site_name = get_site_name(modules[i])
119
+ get_site_name(modules[i])
118
120
  msg = printer.get_result_output(result)
119
- if is_last == False and printer.is_json:
121
+ if not is_last and printer.is_json:
120
122
  msg += ","
121
123
  print(msg)
122
124
 
@@ -131,7 +133,7 @@ def run_checks(username: str, printer: Printer, last: bool = True) -> List[Resul
131
133
 
132
134
  categories = list(load_categories().values())
133
135
  for i, category_path in enumerate(categories):
134
- last_cat: int = last and (i == len(categories) - 1)
136
+ last_cat = last and (i == len(categories) - 1)
135
137
  temp = run_checks_category(category_path, username, printer, last_cat)
136
138
  results.extend(temp)
137
139
 
@@ -140,7 +142,7 @@ def run_checks(username: str, printer: Printer, last: bool = True) -> List[Resul
140
142
 
141
143
  def make_request(url: str, **kwargs) -> httpx.Response:
142
144
  """Simple wrapper to **httpx.get** that predefines headers and timeout"""
143
- if not "headers" in kwargs:
145
+ if "headers" not in kwargs:
144
146
  kwargs["headers"] = {
145
147
  'User-Agent': "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36",
146
148
  'Accept': "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
@@ -149,7 +151,7 @@ def make_request(url: str, **kwargs) -> httpx.Response:
149
151
  'sec-fetch-dest': "document",
150
152
  }
151
153
 
152
- if not "timeout" in kwargs:
154
+ if "timeout" not in kwargs:
153
155
  kwargs["timeout"] = 5.0
154
156
 
155
157
  method = kwargs.pop("method", "GET")
@@ -157,14 +159,13 @@ def make_request(url: str, **kwargs) -> httpx.Response:
157
159
  return httpx.request(method.upper(), url, **kwargs)
158
160
 
159
161
 
160
- def generic_validate(url: str, func: Callable[[httpx.Response], AnyResult], **kwargs) -> AnyResult:
162
+ def generic_validate(url: str, func: Callable[[httpx.Response], Result], **kwargs) -> Result:
161
163
  """
162
164
  A generic validate function that makes a request and executes the provided function on the response.
163
165
  """
164
166
  try:
165
167
  response = make_request(url, **kwargs)
166
168
  result = func(response)
167
- result.url = url
168
169
  return result
169
170
  except Exception as e:
170
171
  return Result.error(e, url=url)
@@ -1,5 +1,4 @@
1
1
  from enum import Enum
2
- from typing import Literal
3
2
 
4
3
  DEBUG_MSG = """Result {{
5
4
  status: {status},
@@ -80,10 +79,10 @@ class Result:
80
79
  return self.status.value
81
80
 
82
81
  def has_reason(self) -> bool:
83
- return self.reason != None
82
+ return self.reason is not None
84
83
 
85
84
  def get_reason(self) -> str:
86
- if self.reason == None:
85
+ if self.reason is None:
87
86
  return ""
88
87
  if isinstance(self.reason, str):
89
88
  return self.reason
@@ -124,5 +123,3 @@ class Result:
124
123
 
125
124
  return NotImplemented
126
125
 
127
-
128
- AnyResult = Literal[0, 1, 2] | Result
@@ -1,4 +1,3 @@
1
- import httpx
2
1
  from user_scanner.core.result import Result
3
2
  from user_scanner.core.orchestrator import generic_validate
4
3
 
@@ -6,8 +6,19 @@ def validate_medium(user):
6
6
  url = f"https://medium.com/@{user}"
7
7
 
8
8
  headers = {
9
- 'User-Agent': "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36",
10
- 'Accept': "text/html",
9
+ 'User-Agent': "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 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': "identity",
12
+ 'upgrade-insecure-requests': "1",
13
+ 'sec-fetch-site': "none",
14
+ 'sec-fetch-mode': "navigate",
15
+ 'sec-fetch-user': "?1",
16
+ 'sec-fetch-dest': "document",
17
+ 'sec-ch-ua': "\"Google Chrome\";v=\"143\", \"Chromium\";v=\"143\", \"Not A(Brand\";v=\"24\"",
18
+ 'sec-ch-ua-mobile': "?0",
19
+ 'sec-ch-ua-platform': "\"Linux\"",
20
+ 'accept-language': "en-US,en;q=0.9",
21
+ 'priority': "u=0, i"
11
22
  }
12
23
 
13
24
  def process(response):
@@ -34,4 +45,4 @@ if __name__ == "__main__":
34
45
  elif result == 0:
35
46
  print("Unavailable!")
36
47
  else:
37
- print("Error occurred!")
48
+ print(f"Error occurred! Reason: {result.get_reason()}")
@@ -1,9 +1,10 @@
1
1
  from user_scanner.core.orchestrator import generic_validate
2
2
  from user_scanner.core.result import Result
3
+ from urllib.parse import quote
3
4
 
4
- def validate_monkeytype(user: str) -> int:
5
-
6
- url = f"https://api.monkeytype.com/users/checkName/{user}"
5
+ def validate_monkeytype(user: str) -> Result:
6
+ safe_user = quote(user, safe="")
7
+ url = f"https://api.monkeytype.com/users/checkName/{safe_user}"
7
8
 
8
9
  headers = {
9
10
  "User-Agent": (
@@ -28,6 +29,16 @@ def validate_monkeytype(user: str) -> int:
28
29
  return Result.available()
29
30
  elif available is False:
30
31
  return Result.taken()
32
+
33
+ # Surface Monkeytype validation errors (e.g. special characters)
34
+ try:
35
+ data = response.json()
36
+ errors = data.get("validationErrors")
37
+ if errors:
38
+ return Result.error("; ".join(errors))
39
+ except Exception:
40
+ pass
41
+
31
42
  return Result.error("Invalid status code")
32
43
 
33
44
  return generic_validate(url, process, headers=headers)
@@ -42,4 +53,4 @@ if __name__ == "__main__":
42
53
  elif result == 0:
43
54
  print("Unavailable!")
44
55
  else:
45
- print("Error occurred!")
56
+ print("Error occured!")
@@ -1,4 +1,3 @@
1
- import httpx
2
1
  from user_scanner.core.result import Result
3
2
  from user_scanner.core.orchestrator import generic_validate
4
3
 
@@ -1,8 +1,19 @@
1
+ import re
1
2
  from user_scanner.core.orchestrator import status_validate
3
+ from user_scanner.core.result import Result
2
4
 
3
5
 
4
- def validate_mastodon(user):
5
- url = f"https://mastodon.social/@{user}"
6
+ def validate_mastodon(user: str) -> Result:
7
+ if not (3 <= len(user) <= 30):
8
+ return Result.error("Length must be 3-30 characters")
9
+
10
+ if not re.match(r'^[a-zA-Z0-9_-]+$', user):
11
+ return Result.error("Usernames can only contain letters, numbers, underscores and hyphens")
12
+
13
+ if not re.match(r'^[a-zA-Z0-9].*[a-zA-Z0-9]$', user):
14
+ return Result.error("Username must start and end with a letter or number")
15
+
16
+ url = f"https://mastodon.social/api/v1/accounts/lookup?acct={user}"
6
17
 
7
18
  return status_validate(url, 404, 200, follow_redirects=True)
8
19
 
@@ -16,4 +27,4 @@ if __name__ == "__main__":
16
27
  elif result == 0:
17
28
  print("Unavailable!")
18
29
  else:
19
- print("Error occured!")
30
+ print(f"Error occurred! Reason: {result.get_reason()}")
@@ -5,11 +5,6 @@ from user_scanner.core.result import Result
5
5
  def validate_soundcloud(user):
6
6
  url = f"https://soundcloud.com/{user}"
7
7
 
8
- headers = {
9
- 'User-Agent': "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36",
10
- 'Accept': "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
11
- }
12
-
13
8
  def process(response):
14
9
  if response.status_code == 404:
15
10
  return Result.available()
@@ -28,7 +23,7 @@ def validate_soundcloud(user):
28
23
 
29
24
  return Result.error()
30
25
 
31
- return generic_validate(url, process, headers=headers, follow_redirects=True)
26
+ return generic_validate(url, process, follow_redirects=True)
32
27
 
33
28
 
34
29
  if __name__ == "__main__":
@@ -3,13 +3,13 @@ from user_scanner.core.orchestrator import generic_validate
3
3
  from user_scanner.core.result import Result
4
4
 
5
5
 
6
- def validate_telegram(user: str) -> int:
6
+ def validate_telegram(user: str) -> Result:
7
7
  url = f"https://t.me/{user}"
8
8
 
9
9
  def process(r):
10
10
  if r.status_code == 200:
11
11
  if re.search(r'<div[^>]*class="tgme_page_extra"[^>]*>', r.text):
12
- return Result.taken()
12
+ return Result.taken()
13
13
  else:
14
14
  return Result.available()
15
15
  return Result.error()
@@ -0,0 +1,50 @@
1
+ import re
2
+ from user_scanner.core.orchestrator import generic_validate
3
+ from user_scanner.core.result import Result
4
+
5
+
6
+ def validate_tiktok(user: str) -> Result:
7
+ if not (2 <= len(user) <= 24):
8
+ return Result.error("Length must be 2-24 characters")
9
+
10
+ if user.isdigit():
11
+ return Result.error("Usernames cannot contain numbers only")
12
+
13
+ if not re.match(r'^[a-zA-Z0-9_.]+$', user):
14
+ return Result.error("Usernames can only contain letters, numbers, underscores and periods")
15
+
16
+ if user.startswith(".") or user.endswith("."):
17
+ return Result.error("Username cannot start nor end with a period")
18
+
19
+ headers = {
20
+ 'User-Agent': "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36",
21
+ 'Accept': "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
22
+ 'Accept-Encoding': "identity",
23
+ 'Accept-Language': "en-US,en;q=0.9",
24
+ 'sec-fetch-dest': "document",
25
+ 'Connection': "keep-alive"
26
+ }
27
+
28
+ url = f"https://www.tiktok.com/@{user}"
29
+
30
+ def process(response) -> Result:
31
+ if response.status_code == 200:
32
+ if "statuscode\":10221" in response.text.lower():
33
+ return Result.available()
34
+ else:
35
+ return Result.taken()
36
+ return Result.error("Unable to load tiktok")
37
+
38
+ return generic_validate(url, process, headers=headers)
39
+
40
+
41
+ if __name__ == "__main__":
42
+ user = input("Username?: ").strip()
43
+ result = validate_tiktok(user)
44
+
45
+ if result == 1:
46
+ print("Available!")
47
+ elif result == 0:
48
+ print("Unavailable!")
49
+ else:
50
+ print(f"Error occurred! Reason: {result.get_reason()}")
@@ -2,6 +2,7 @@ from pathlib import Path
2
2
  from colorama import Fore
3
3
  import sys
4
4
  import json
5
+ import os
5
6
  from user_scanner.core.version import get_pypi_version, load_local_version
6
7
  from user_scanner.utils.update import update_self
7
8
 
@@ -15,19 +16,39 @@ X = Fore.RESET
15
16
  CONFIG_PATH = Path(__file__).parent.parent / "config.json"
16
17
 
17
18
 
18
- def load_config() -> dict:
19
- if CONFIG_PATH.exists():
20
- return json.loads(CONFIG_PATH.read_text())
19
+ def _get_config_path(path: str | Path | None = None) -> Path:
20
+ """
21
+ Determine the config path in this order:
22
+ 1. explicit path argument (if provided)
23
+ 2. environment variable USER_SCANNER_CONFIG (if set)
24
+ 3. default CONFIG_PATH
25
+ """
26
+ if path:
27
+ return Path(path)
28
+ env = os.environ.get("USER_SCANNER_CONFIG")
29
+ if env:
30
+ return Path(env)
31
+ return CONFIG_PATH
32
+
33
+
34
+ def load_config(path: str | Path | None = None) -> dict:
35
+ cp = _get_config_path(path)
36
+ if cp.exists():
37
+ return json.loads(cp.read_text())
21
38
 
22
39
  default = {"auto_update_status": True}
23
- CONFIG_PATH.write_text(json.dumps(default, indent=2))
40
+ # Ensure parent exists
41
+ cp.parent.mkdir(parents=True, exist_ok=True)
42
+ cp.write_text(json.dumps(default, indent=2))
24
43
  return default
25
44
 
26
45
 
27
- def save_config_change(status: bool):
28
- content = load_config()
46
+ def save_config_change(status: bool, path: str | Path | None = None):
47
+ cp = _get_config_path(path)
48
+ content = load_config(path)
29
49
  content["auto_update_status"] = status
30
- CONFIG_PATH.write_text(json.dumps(content, indent=2))
50
+ cp.parent.mkdir(parents=True, exist_ok=True)
51
+ cp.write_text(json.dumps(content, indent=2))
31
52
 
32
53
 
33
54
  def check_for_updates():
user_scanner/version.json CHANGED
@@ -1,4 +1,4 @@
1
1
  {
2
- "version": "1.0.10.0",
2
+ "version": "1.0.10.1",
3
3
  "version_type": "pypi"
4
4
  }
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: user-scanner
3
- Version: 1.0.10.0
3
+ Version: 1.0.10.1
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>
7
- Requires-Python: >=3.7
7
+ Requires-Python: >=3.10
8
8
  Description-Content-Type: text/markdown
9
9
  License-File: LICENSE
10
10
  Requires-Dist: httpx
@@ -1,25 +1,25 @@
1
1
  user_scanner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- user_scanner/__main__.py,sha256=v8yb4Zcc13GmsURMtCJQ30vceeMlC8brIGQe2y5nmVs,5737
2
+ user_scanner/__main__.py,sha256=2FxtEcakyIRjakZgAOml3phvV3Sk80KlULdKvpOsAzw,5729
3
3
  user_scanner/config.json,sha256=WtVnrpPxhGUBmx_dBShO3R0NnipVBVz3BfzlEPO5Amc,28
4
- user_scanner/version.json,sha256=H8P7qm9ofNSJWEHYWmaUFTjlhwTZUsGK3m-ONOBDRmg,50
4
+ user_scanner/version.json,sha256=nNwQFwpPjxXT7v3akBWu8jn8Kp8iEKN7U30S0TQkHLI,50
5
5
  user_scanner/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
- user_scanner/cli/banner.py,sha256=z9gbSoJBrpGJZayJNCFzfUL-QvCZCUWyu2OEX7RZiTg,778
7
- user_scanner/cli/printer.py,sha256=H8rNw0ewG3G0JquKnMLW8PbHmFcALaEZZNUAsAUScHg,4027
6
+ user_scanner/cli/banner.py,sha256=3b4PIggnJrmxF4DfbuPMqSavpwNl0m5uedaOL2SXN3o,766
7
+ user_scanner/cli/printer.py,sha256=Pf26lDWVnC8bEEwOggce2JxL6zNI5UrMSHU83rl4FA0,4030
8
8
  user_scanner/community/__init__.py,sha256=5EzlM991pJqvqIRc05_QV5BureJZ7wiCRm1AyEY6pms,12
9
9
  user_scanner/community/coderlegion.py,sha256=W_bdjzdFPRgUrNFFlylvToSJ4AzaFCtTsUy_MRVDdSo,451
10
10
  user_scanner/community/hackernews.py,sha256=lKVuEVoGnXWYSANcuUyiSHzUr-VtcXHC7sEX1rxZi0Y,1068
11
11
  user_scanner/community/stackoverflow.py,sha256=MTL8O0TLHkjVbugBh1pLxELJLU3hkX_YEHjGjaKTJi4,1007
12
12
  user_scanner/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
- user_scanner/core/orchestrator.py,sha256=nfe0KEcT2U_MB48OgmuvQ0tHvQdnJm8VVi06QxiuJMU,7059
14
- user_scanner/core/result.py,sha256=8qrIXO5jg6OjWkLtEq25lx_b1hLgtDFugdDyrJX4vcU,3300
15
- user_scanner/core/utils.py,sha256=v3XLUXmknf9zl_JBOmnss3280SrEWBdPcz-zq3S8lak,249
13
+ user_scanner/core/helpers.py,sha256=v3XLUXmknf9zl_JBOmnss3280SrEWBdPcz-zq3S8lak,249
14
+ user_scanner/core/orchestrator.py,sha256=2NtZ7c64Z5C7nMYMbfDlQorR_t2nmqDgg6nDoL3F4mc,7049
15
+ user_scanner/core/result.py,sha256=II0IKnCFuurPns6a-9WrgHFDjDZZn7F7qvUNN9yfudk,3238
16
16
  user_scanner/core/version.py,sha256=k1_KTZdRLKBAxp8_PtOhTAtj8mBO_AUnUGdqI4epypY,855
17
17
  user_scanner/creator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
18
  user_scanner/creator/devto.py,sha256=mIACmG1a4eoctywxb5p04sI0YVi3dsjCRw9YVOFBEKQ,435
19
- user_scanner/creator/hashnode.py,sha256=NEIpSyf0zbcZ_QNjU3C7F5oApvVpUQOd_oQuughM-Qc,1403
19
+ user_scanner/creator/hashnode.py,sha256=3RRkVgU7t26-F4ZqjfnC_lwnP7DWwygq6kT2Q4kKw2M,1390
20
20
  user_scanner/creator/itch_io.py,sha256=2a8UVh-_OaWQPcSUHUuijDGpWDxsR8DoCcU1BdTRqqs,854
21
21
  user_scanner/creator/kaggle.py,sha256=QaXIG02OGxvQZEvwHm50RKNd7joxGOq0Ht3cFfrYEiU,445
22
- user_scanner/creator/medium.py,sha256=NIOYnk8_ASD0kYfKqs8t6uZZTV4D-5-ZxyHMzOMMOuI,1015
22
+ user_scanner/creator/medium.py,sha256=zHU5h2VQwde1P4XihQpV7ww2P_fgGKgWZ_S0_4TTyUI,1648
23
23
  user_scanner/creator/patreon.py,sha256=g-r85pxirf0ihK3STyGYPIzp59MB7JH64Opb4wq1fyU,461
24
24
  user_scanner/creator/producthunt.py,sha256=p0HoIIVhmv9bBkelhfzRYudUFoyk_qeT66-hPpHEFqk,1938
25
25
  user_scanner/creator/substack.py,sha256=tisTUQmauteYZOZ0tULp9GGUuf4ZBEcpqv4ZmEvjyK0,1288
@@ -44,28 +44,29 @@ user_scanner/gaming/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
44
44
  user_scanner/gaming/chess_com.py,sha256=74tMgukSUXwdmD9G7Jij_gudRlSfs46Xho5KNMVeyt4,1262
45
45
  user_scanner/gaming/lichess.py,sha256=8b7DNRENh2UwjbsJNXRs2HIwC80OwGe5D0y-96_xjzs,1324
46
46
  user_scanner/gaming/minecraft.py,sha256=7a9H9ebLlRzGB0SjxLmzqLiDPDBZAuuNq3KKe2DZAvo,481
47
- user_scanner/gaming/monkeytype.py,sha256=n9KMBChs0ej7MgZqLGUDVz5CED70sQ3ksDF5pO0G05A,1380
47
+ user_scanner/gaming/monkeytype.py,sha256=IWt_0sXPaiTfKVpYVNW9KLMGtDzU55P-SnBjVtSAsU0,1748
48
48
  user_scanner/gaming/osu.py,sha256=2Xs1iM0CJ-3dNHu4tyF50_s0Ei_1mA5Zd6D6M5RmiVg,448
49
49
  user_scanner/gaming/roblox.py,sha256=Qs51jLgKh-Ehqlco_j8CFtJ4CLVoZeBwPugDvAyLw3Q,1464
50
50
  user_scanner/gaming/steam.py,sha256=l8xk_p9aiYQWCPoogQnO1iwkfojPhg6yd76OZHhKN50,740
51
51
  user_scanner/social/__init__.py,sha256=jaCkFwX1uYtF0ENifVwF8OfHrYYUTm64B9wlBq9BBfQ,9
52
52
  user_scanner/social/bluesky.py,sha256=11Y_vRj3txEDQqoD0iANgSWVSB8L87OotPQZquhneR0,1994
53
- user_scanner/social/discord.py,sha256=S_6ItjRcxip_L60UJ2rdLRFf4eXT7fMN7roCKA-lDfc,1193
53
+ user_scanner/social/discord.py,sha256=KA7Uw8RBuid-YZZglIKQwWbg8PIKdrMwXP3fKH3c-go,1180
54
54
  user_scanner/social/instagram.py,sha256=GgmKGvi3meKdZ_nQJbJSBZDJTEKSoE6Cn4_VARmo62I,953
55
- user_scanner/social/mastodon.py,sha256=qISx-gUsddC8lFMcmERA4N0YAnXyS1Jq2Xgg7XE4sL4,450
55
+ user_scanner/social/mastodon.py,sha256=bLZ2VR_ty4inY47ENSSt_021wEUEDKwvuE4EL7eLq2A,967
56
56
  user_scanner/social/pinterest.py,sha256=JIJ-HPtMoGvxW7NQzm02lChFKMmE6k6GxFoUZ6OvCec,784
57
57
  user_scanner/social/reddit.py,sha256=PJ46v8WpcUY1nNSbPhbiY6B9ynB9bcakcDjopXTX2ME,787
58
58
  user_scanner/social/snapchat.py,sha256=XEW_W4jEBX4AiHREcfHGstt97Ez3GI-3bKSzhtMyn28,1277
59
- user_scanner/social/soundcloud.py,sha256=e2yU1w2fnH1EhzYed0kxgcqgWz0YoCQQFf6yKqhRPjM,1246
60
- user_scanner/social/telegram.py,sha256=9IS-0pghMifNRmj62NcxCOvn23Hvg0AJJcuhCa_aXD4,765
59
+ user_scanner/social/soundcloud.py,sha256=rCXyOY1qXOW0iIAcgeyVEcv15ufWb18749PBvBnQWnU,1035
60
+ user_scanner/social/telegram.py,sha256=CNhrUdOEaonOGswuGUn-_PgA1aoWvcXVACOC4qDY-vw,767
61
61
  user_scanner/social/threads.py,sha256=rK8Gm_riDdr0djo23tk38fNVVEBuC6nj2iTXvWrqXeE,951
62
+ user_scanner/social/tiktok.py,sha256=y3KqIFIgeT8rk5bM_FirSgdAD2hFN-a_cVCB2S5amAc,1691
62
63
  user_scanner/social/x.py,sha256=sAnboHHZN2DWyKeds46GLZHxGG-G_bjzfVNIkblSHx8,1406
63
64
  user_scanner/social/youtube.py,sha256=UPu584teg75P7FT05RFG3nobbHgPmzjr-ZwyN2sw6gw,1980
64
65
  user_scanner/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
66
  user_scanner/utils/update.py,sha256=Rj3kLuUrQ-LlKGB7bkndqVjj0IUqugbDSj2SUrPRidE,936
66
- user_scanner/utils/updater_logic.py,sha256=Gerj6pAuv32qcfhxshWlNISRtv1X-AHFnMyssyvRbPg,1746
67
- user_scanner-1.0.10.0.dist-info/entry_points.txt,sha256=XqU3kssYZ0vXaPy5qYUOTCu4u-48Xie7QWFpBCYc7Nc,59
68
- user_scanner-1.0.10.0.dist-info/licenses/LICENSE,sha256=XH1QyQG68zo1opDIZHTHcTAbe9XMzewvTaFTukcN9vc,1061
69
- user_scanner-1.0.10.0.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
70
- user_scanner-1.0.10.0.dist-info/METADATA,sha256=8CjDUuZLzm81re81Yqy3uTIFWKYoaQC7ehjPJ_KGQqU,5907
71
- user_scanner-1.0.10.0.dist-info/RECORD,,
67
+ user_scanner/utils/updater_logic.py,sha256=tl6kbKL02DrP-R1dkQWhHr12juVDgkJZZvKAfbI1ruU,2381
68
+ user_scanner-1.0.10.1.dist-info/entry_points.txt,sha256=XqU3kssYZ0vXaPy5qYUOTCu4u-48Xie7QWFpBCYc7Nc,59
69
+ user_scanner-1.0.10.1.dist-info/licenses/LICENSE,sha256=XH1QyQG68zo1opDIZHTHcTAbe9XMzewvTaFTukcN9vc,1061
70
+ user_scanner-1.0.10.1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
71
+ user_scanner-1.0.10.1.dist-info/METADATA,sha256=a1m-GQ9bVD3BeBlOaAZJfEKG3J4SxscsoL-7wyIZ4Ts,5908
72
+ user_scanner-1.0.10.1.dist-info/RECORD,,
File without changes