Function
read_csv
(
filepath_or_buffer: FilePath | ReadCsvBuffer[bytes] | ReadCsvBuffer[str],
*,
iterator: Literal[True],
chunksize: int | None = ...,
**kwds: Unpack[_read_shared[HashableT]],
)
Source from the content-addressed store, hash-verified
| 308 | |
| 309 | @overload |
| 310 | def read_csv( |
| 311 | filepath_or_buffer: FilePath | ReadCsvBuffer[bytes] | ReadCsvBuffer[str], |
| 312 | *, |
| 313 | iterator: Literal[True], |
| 314 | chunksize: int | None = ..., |
| 315 | **kwds: Unpack[_read_shared[HashableT]], |
| 316 | ) -> TextFileReader: ... |
| 317 | |
| 318 | |
| 319 | @overload |