feat: Deprecate blob.exif and replace with sample notebook#2429
Open
feat: Deprecate blob.exif and replace with sample notebook#2429
Conversation
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/python-bigquery-dataframes/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [ ] Ensure the tests and linter pass - [ ] Code coverage does not decrease (if any source code was changed) - [ ] Appropriate docs were updated (if necessary) Fixes #<issue_number_goes_here> 🦕
…tching the backend compiler (#2417) This change adds `bigframes.pandas.options.experiments.sql_compiler` to allow switching the backend compiler. Currently, the default remains set to 'legacy' (ibis), but users can now optionally switch to the 'experimental' (sqlglot) compiler. Fixes internal issue 479912001🦕
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/python-bigquery-dataframes/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [ ] Ensure the tests and linter pass - [ ] Code coverage does not decrease (if any source code was changed) - [ ] Appropriate docs were updated (if necessary) Fixes #<issue_number_goes_here> 🦕
This should complete the dev on the client side. Manually verified: https://screenshot.googleplex.com/jv3UfJCm75dCzwn Related bug 406578908 🦕
This PR refines the visual feedback provided during operation progress. Specifically, it prevents the display of a standalone "✅ Completed." message and green checkmark when no query execution information (like slot time or bytes processed) is available. This often occurs during metadata-only operations or cached results where the "Completed" status is redundant. Fixes #<479944983> 🦕
PR created by the Librarian CLI to initialize a release. Merging this PR will auto trigger a release. Librarian Version: v0.7.0 Language Image: us-central1-docker.pkg.dev/cloud-sdk-librarian-prod/images-prod/python-librarian-generator@sha256:e7cc6823efb073a8a26e7cefdd869f12ec228abfbd2a44aa9a7eacc284023677 <details><summary>bigframes: 2.34.0</summary> ## [2.34.0](v2.33.0...v2.34.0) (2026-02-02) ### Features * add `bigframes.pandas.options.experiments.sql_compiler` for switching the backend compiler (#2417) ([7eba6ee](7eba6ee)) * add bigquery.ml.generate_embedding function (#2422) ([35f3f5e](35f3f5e)) * add bigquery.create_external_table method (#2415) ([76db295](76db295)) * add deprecation warnings for .blob accessor and read_gbq_object_table (#2408) ([7261a4e](7261a4e)) * add bigquery.ml.generate_text function (#2403) ([5ac6810](5ac6810)) ### Bug Fixes * broken job url (#2411) ([fcb5bc1](fcb5bc1))
|
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
9e8ca0f to
ecc270c
Compare
Contributor
|
Lets finish updating all the public docs and notebooks, then to actually deprecate the functions. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR removes the deprecated blob.exif functionality from the BigFrames codebase and provides a replacement solution via sample notebook.
Changes:
Migration Guide:
Users previously using df.blob.exif() can now refer to notebooks/multimodal/multimodal_dataframe.ipynb to implement a custom UDF using the pillow library for extracting metadata from images in Google Cloud Storage.
Fixes #<478952827> 🦕