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

Function _fetch_user

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

Source from the content-addressed store, hash-verified

49
50
51async def _fetch_user(session: aiohttp.ClientSession, login: str) -> dict | None:
52 result = await _get(session, f"{_API_BASE}/users/{login}")
53 return result if isinstance(result, dict) else None
54
55
56async def _fetch_repos(session: aiohttp.ClientSession, login: str) -> list[dict]:

Callers 1

run_github_osintFunction · 0.85

Calls 1

_getFunction · 0.85

Tested by

no test coverage detected