MCPcopy Index your code
hub / github.com/Codeplain-ai/codeplain / find_large_base64_blob

Function find_large_base64_blob

plain2code_utils.py:13–16  ·  view source on GitHub ↗

Return the first contiguous base64 blob at or above the threshold, or None.

(text: str)

Source from the content-addressed store, hash-verified

11
12
13def find_large_base64_blob(text: str) -> Optional[str]:
14 """Return the first contiguous base64 blob at or above the threshold, or None."""
15 match = _BASE64_BLOB_PATTERN.search(text)
16 return match.group(0) if match else None
17
18
19def format_duration_hms(total_seconds: int) -> str:

Callers 2

read_module_plain_sourceFunction · 0.90
load_linked_resourcesFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected