MCPcopy Create free account
hub / github.com/feast-dev/feast / read_json

Method read_json

sdk/python/feast/infra/ray_initializer.py:222–224  ·  view source on GitHub ↗

Read JSON/JSONL file(s).

(self, path: Union[str, List[str]], **kwargs)

Source from the content-addressed store, hash-verified

220 return ray.data.read_csv(path, **kwargs)
221
222 def read_json(self, path: Union[str, List[str]], **kwargs) -> Any:
223 """Read JSON/JSONL file(s)."""
224 return ray.data.read_json(path, **kwargs)
225
226 def read_text(self, path: Union[str, List[str]], **kwargs) -> Any:
227 """Read plain-text file(s)."""

Callers 2

_remoteMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected