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

Method read

pandas/io/pytables.py:2943–2952  ·  view source on GitHub ↗
(
        self,
        where=None,
        columns=None,
        start: int | None = None,
        stop: int | None = None,
    )

Source from the content-addressed store, hash-verified

2941 return True
2942
2943 def read(
2944 self,
2945 where=None,
2946 columns=None,
2947 start: int | None = None,
2948 stop: int | None = None,
2949 ) -> Series | DataFrame:
2950 raise NotImplementedError(
2951 "cannot read on an abstract storer: subclasses should implement"
2952 )
2953
2954 def write(self, obj, **kwargs) -> None:
2955 raise NotImplementedError(

Callers 5

funcMethod · 0.45
_read_groupMethod · 0.45
readMethod · 0.45
readMethod · 0.45
selectMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected