Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(python): Update deltalake docstrings to new link #14282

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions py-polars/polars/io/delta.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def read_delta(
For cloud storages, this may include configurations for authentication etc.

More info is available `here
<https://delta-io.github.io/delta-rs/python/usage.html?highlight=backend#loading-a-delta-table>`__.
<https://delta-io.github.io/delta-rs/usage/loading-table/>`__.
delta_table_options
Additional keyword arguments while reading a Delta lake Table.
pyarrow_options
Expand Down Expand Up @@ -167,7 +167,7 @@ def scan_delta(
For cloud storages, this may include configurations for authentication etc.

More info is available `here
<https://delta-io.github.io/delta-rs/python/usage.html?highlight=backend#loading-a-delta-table>`__.
<https://delta-io.github.io/delta-rs/usage/loading-table/>`__.
delta_table_options
Additional keyword arguments while reading a Delta lake Table.
pyarrow_options
Expand Down Expand Up @@ -291,7 +291,7 @@ def _get_delta_lake_table(
Notes
-----
Make sure to install deltalake>=0.8.0. Read the documentation
`here <https://delta-io.github.io/delta-rs/python/installation.html>`_.
`here <https://delta-io.github.io/delta-rs/usage/installation/>`_.
"""
_check_if_delta_available()

Expand Down
Loading