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

Method items

pandas/io/pytables.py:713–718  ·  view source on GitHub ↗

iterate on key->group

(self)

Source from the content-addressed store, hash-verified

711 return iter(self.keys())
712
713 def items(self) -> Iterator[tuple[str, list]]:
714 """
715 iterate on key->group
716 """
717 for g in self.groups():
718 yield g._v_pathname, g
719
720 def open(self, mode: str = "a", **kwargs) -> None:
721 """

Callers 15

append_to_multipleMethod · 0.45
GenericFixedClass · 0.45
_parse_nodesMethod · 0.45
_validate_pathMethod · 0.45
_validate_pathMethod · 0.45
_build_xpath_exprFunction · 0.45
_expand_elementsFunction · 0.45
infer_compressionFunction · 0.45
_parse_date_columnsFunction · 0.45
insert_dataMethod · 0.45
prep_tableMethod · 0.45
to_sqlMethod · 0.45

Calls 1

groupsMethod · 0.95

Tested by

no test coverage detected