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

Method _get_metadata_path

pandas/io/pytables.py:3726–3729  ·  view source on GitHub ↗

return the metadata pathname for this key

(self, key: str)

Source from the content-addressed store, hash-verified

3724 return [i.cname for i in self.values_axes]
3725
3726 def _get_metadata_path(self, key: str) -> str:
3727 """return the metadata pathname for this key"""
3728 group = self.group._v_pathname
3729 return f"{group}/meta/{key}/meta"
3730
3731 def write_metadata(self, key: str, values: np.ndarray) -> None:
3732 """

Callers 2

write_metadataMethod · 0.95
read_metadataMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected