MCPcopy Create free account
hub / github.com/pallets/quart / load

Function load

src/quart/json/__init__.py:39–43  ·  view source on GitHub ↗
(fp: IO[str], **kwargs: Any)

Source from the content-addressed store, hash-verified

37
38
39def load(fp: IO[str], **kwargs: Any) -> Any:
40 if current_app:
41 return current_app.json.load(fp, **kwargs)
42 else:
43 return json.load(fp, **kwargs)
44
45
46def jsonify(*args: Any, **kwargs: Any) -> Response:

Callers

nothing calls this directly

Calls 1

loadMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…