ndrluis opened a new pull request, #532:
URL: https://github.com/apache/iceberg-python/pull/532

   Use case
   
   ```
   import pyarrow as pa
   import pandas as pd
   
   table = catalog.load_table('some_schema.table_name')
   schema = table.schema().as_arrow()
   
   data = {
       'id_job': [1, 2, 3, 4],
       'description': ['some text', 'some text', 'some text', 'some text']
   }
   
   df = pd.DataFrame(data)
   
   pa_df = pa.Table.from_pandas(df, schema=schema)
   
   table.append(pa_df)
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org

Reply via email to