MCPcopy
hub / github.com/pandas-dev/pandas / parse

Method parse

pandas/io/json/_json.py:1194–1200  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1192
1193 @final
1194 def parse(self) -> DataFrame | Series:
1195 obj = self._parse()
1196
1197 if self.convert_axes:
1198 obj = self._convert_axes(obj)
1199 obj = self._try_convert_types(obj)
1200 return obj
1201
1202 def _parse(self) -> DataFrame | Series:
1203 raise AbstractMethodError(self)

Callers 15

_get_page_titleMethod · 0.95
mainFunction · 0.45
clean_version_listFunction · 0.45
get_defined_errorsFunction · 0.45
blog_add_postsMethod · 0.45

Calls 3

_parseMethod · 0.95
_convert_axesMethod · 0.95
_try_convert_typesMethod · 0.95

Tested by 5

mainFunction · 0.36
test_sheet_nameMethod · 0.36