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

   <!--
   Thanks for opening a pull request!
   -->
   
   
   <!-- In the case this PR will resolve an issue, please replace 
${GITHUB_ISSUE_ID} below with the actual Github issue id. -->
   <!-- Closes #${GITHUB_ISSUE_ID} -->
   
   # Rationale for this change
   
   Adds support for Bodo DataFrame library, which is a drop in replacement for 
Pandas that accelerates and scales Python code automatically by applying query, 
compiler and HPC optimizations.
   
   # Are these changes tested?
   
   TODO: add test
   
   # Are there any user-facing changes?
   
   Adds `Table.to_bodo()` function. Example code:
   ```python
   df = table.to_bodo()  # equivalent to `bodo.pandas.read_iceberg_table(table)`
   df = df[df["trip_distance"] >= 10.0]
   df = df[["VendorID", "tpep_pickup_datetime", "tpep_dropoff_datetime"]]
   print(df)
   ```
   
   TODO: changelog
   
   <!-- In the case of user-facing changes, please add the changelog label. -->
   


-- 
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