MCPcopy Create free account
hub / github.com/apache/arrow / read_json

Method read_json

python/pyarrow/tests/test_json.py:610–615  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

608class TestSerialJSONRead(BaseTestJSONRead, unittest.TestCase):
609
610 def read_json(self, *args, **kwargs):
611 read_options = kwargs.setdefault('read_options', ReadOptions())
612 read_options.use_threads = False
613 table = read_json(*args, **kwargs)
614 table.validate(full=True)
615 return table
616
617
618class TestParallelJSONRead(BaseTestJSONRead, unittest.TestCase):

Callers 4

read_bytesMethod · 0.45
test_file_objectMethod · 0.45
test_example_using_jsonFunction · 0.45

Calls 2

ReadOptionsClass · 0.90
validateMethod · 0.45

Tested by

no test coverage detected