running sample script from homepage results in FileNotFoundError in line 10 (dt.to_pandas). Can acknowlegde the write_deltalake part of sample works.
Error:
Exception has occurred: FileNotFoundError
Object at location C:\Users\USERNAME\OneDrive%20-%20COMPANY%20NAME\Sources\Lakehouse\Delta-rs\data\delta\0-39b94d51-b8a9-46f7-bfc5-7c9996bececf-0.parquet not found: The system cannot find the file specified. (os error 2)
File "C:\Users\USERNAME\OneDrive - Rapid Circle\Sources\Lakehouse\Delta-rs\quickstart.py", line 10, in
df2 = dt.to_pandas()
^^^^^^^^^^^^^^
FileNotFoundError: Object at location C:\Users\USERNAME\OneDrive%20-%20COMPANY%20NAME\Sources\Lakehouse\Delta-rs\data\delta\0-39b94d51-b8a9-46f7-bfc5-7c9996bececf-0.parquet not found: The system cannot find the file specified. (os error 2)
Environment
Bug
_from deltalake import DeltaTable, write_deltalake import pandas as pd
write some data into a delta table
df = pd.DataFrame({"id": [1, 2], "value": ["foo", "boo"]}) write_deltalake("./data/delta", df)
Load data from the delta table
dt = DeltaTable("./data/delta") df2 = dt.to_pandas()
assert df.equals(df2)