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

Method read_table

pandas/io/sql.py:1467–1478  ·  view source on GitHub ↗
(
        self,
        table_name: str,
        index_col: str | list[str] | None = None,
        coerce_float: bool = True,
        parse_dates=None,
        columns=None,
        schema: str | None = None,
        chunksize: int | None = None,
        dtype_backend: DtypeBackend | Literal["numpy"] = "numpy",
    )

Source from the content-addressed store, hash-verified

1465 pass
1466
1467 def read_table(
1468 self,
1469 table_name: str,
1470 index_col: str | list[str] | None = None,
1471 coerce_float: bool = True,
1472 parse_dates=None,
1473 columns=None,
1474 schema: str | None = None,
1475 chunksize: int | None = None,
1476 dtype_backend: DtypeBackend | Literal["numpy"] = "numpy",
1477 ) -> DataFrame | Iterator[DataFrame]:
1478 raise NotImplementedError
1479
1480 @abstractmethod
1481 def read_query(

Callers 5

read_featherFunction · 0.45
read_orcFunction · 0.45
readMethod · 0.45
read_sql_tableFunction · 0.45
read_sqlFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected