I am looking for a way to write back to a delta table in python without using pyspark. I know there is a library called deltalake/delta-lake-reader that can be used to read delta tables and convert them to pandas dataframes.
The goal is to write back to the opened delta table
The input code looks like this:
from deltalake import DeltaTable
dt = DeltaTable('path/file')
df = dt.to_pandas()
So is there any way to get something like this to write from a pandas dataframe back to a delta table:
df = pandadf.to_delta()
DeltaTable.write(df, 'path/file')
Thank you for your assistance!