MCPcopy Index your code
hub / github.com/OpenOSINT/OpenOSINT / _fetch_repos

Function _fetch_repos

openosint/tools/search_github.py:56–62  ·  view source on GitHub ↗
(session: aiohttp.ClientSession, login: str)

Source from the content-addressed store, hash-verified

54
55
56async def _fetch_repos(session: aiohttp.ClientSession, login: str) -> list[dict]:
57 result = await _get(
58 session,
59 f"{_API_BASE}/users/{login}/repos",
60 params={"per_page": _MAX_REPOS, "sort": "updated"},
61 )
62 return result if isinstance(result, list) else []
63
64
65async def _discover_emails(

Callers 1

run_github_osintFunction · 0.85

Calls 1

_getFunction · 0.85

Tested by

no test coverage detected