> ## Documentation Index
> Fetch the complete documentation index at: https://docs.less.tech/llms.txt
> Use this file to discover all available pages before exploring further.

# Read Table

> Read a Less table into a pandas DataFrame.

`less.read_table(table_id)` reads a Less table into a Pandas DataFrame. You can find the `table_id` in Less or by using the result from [List Tables](/python-sdk/list-tables).

```python theme={null}
tables = less.list_tables()
df = less.read_table(tables.iloc[0]["id"])
```
