diff --git a/docs/backends/datafusion.qmd b/docs/backends/datafusion.qmd index d0c4651c0ce3..9276dc49b730 100644 --- a/docs/backends/datafusion.qmd +++ b/docs/backends/datafusion.qmd @@ -96,16 +96,6 @@ from _utils import render_do_connect render_do_connect("datafusion") ``` -## File Support - -```{python} -#| echo: false -#| output: asis -from _utils import render_methods, get_backend -backend = get_backend("datafusion") -render_methods(backend, "read_csv", "read_parquet", "read_delta", level=4) -``` - ```{python} #| echo: false BACKEND = "DataFusion" diff --git a/docs/backends/duckdb.qmd b/docs/backends/duckdb.qmd index 87d4f8f6d571..2dc40c05bf64 100644 --- a/docs/backends/duckdb.qmd +++ b/docs/backends/duckdb.qmd @@ -147,17 +147,6 @@ You can store it as an environment variable to avoid having to log in again: ['penguins'] ``` -## File Support - -```{python} -#| echo: false -#| output: asis -from _utils import render_methods, get_backend -backend = get_backend("duckdb") -methods = [f"read_{kind}" for kind in ("csv", "parquet", "delta", "json", "in_memory", "sqlite", "postgres")] -render_methods(backend, *methods, level=4) -``` - ```{python} #| echo: false BACKEND = "DuckDB" diff --git a/docs/backends/polars.qmd b/docs/backends/polars.qmd index 283096ca80de..f917fd2d9584 100644 --- a/docs/backends/polars.qmd +++ b/docs/backends/polars.qmd @@ -90,18 +90,6 @@ from _utils import render_do_connect render_do_connect("polars") ``` -## File Support - -```{python} -#| echo: false -#| output: asis -from _utils import render_methods, get_backend - -methods = ("read_csv", "read_parquet", "read_delta") -backend = get_backend("polars") -render_methods(backend, *methods, level=4) -``` - ```{python} #| echo: false BACKEND = "Polars" diff --git a/docs/backends/pyspark.qmd b/docs/backends/pyspark.qmd index 4804ec2c282d..b360a999fde4 100644 --- a/docs/backends/pyspark.qmd +++ b/docs/backends/pyspark.qmd @@ -94,18 +94,6 @@ from _utils import render_do_connect render_do_connect("pyspark") ``` -## File Support - -```{python} -#| echo: false -#| output: asis -from _utils import render_methods, get_backend - -methods = ("read_csv", "read_parquet") -backend = get_backend("pyspark") -render_methods(backend, *methods, level=4) -``` - ```{python} #| echo: false BACKEND = "PySpark" diff --git a/docs/backends/snowflake.qmd b/docs/backends/snowflake.qmd index 1cc30d87eb20..78edbdfec2d3 100644 --- a/docs/backends/snowflake.qmd +++ b/docs/backends/snowflake.qmd @@ -163,18 +163,6 @@ app. ![Snowflake Database](./images/snowflake_database.png) -## File Support - -```{python} -#| echo: false -#| output: asis -from _utils import render_methods, get_backend - -methods = ("read_csv", "read_parquet", "read_json") -backend = get_backend("snowflake") -render_methods(backend, *methods, level=4) -``` - ```{python} #| echo: false BACKEND = "Snowflake"