> ## 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.

# Write Table

> Store a pandas DataFrame as a table in Less.

`less.write_table(name, df)` receives a Pandas DataFrame and stores it as a table in Less.

```python theme={null}
less.write_table("customers", df)
```

Notes:

* `df` must be a pandas DataFrame.
* Empty DataFrames are skipped.
