MCPcopy Create free account
hub / github.com/TheSmallHanCat/flow2api / _parse_json_response_text

Function _parse_json_response_text

src/api/admin.py:281–287  ·  view source on GitHub ↗
(text: str)

Source from the content-addressed store, hash-verified

279
280
281def _parse_json_response_text(text: str) -> Optional[Any]:
282 if not text:
283 return None
284 try:
285 return json.loads(text)
286 except Exception:
287 return None
288
289
290async def _stdlib_json_http_request(

Callers 2

_sync_json_http_requestFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected