-
Notifications
You must be signed in to change notification settings - Fork 928
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expose JSON reader options to builder in pylibcudf #17866
base: branch-25.04
Are you sure you want to change the base?
Expose JSON reader options to builder in pylibcudf #17866
Conversation
Auto-sync is disabled for draft pull requests in this repository. Workflows must be run manually. Contributors can view more details about this message here. |
/ok to test |
/ok to test |
def mixed_types_as_string(self, val: bool) -> Self: ... | ||
def na_values(self, vals: list) -> Self: ... | ||
def nonnumeric_numbers(self, val: bool) -> Self: ... | ||
def normalize_single_quotes(self, val: bool) -> Self: ... |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: document normalize_single_quotes
in python cudf.read_json docstring.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Documented normalize_single_quotes
and delimiter
. Will add a docstring for the remaining parameters as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added documentation for the remaining extra parameters as well.
Description
This PR adds all JsonReaderOptionsBuilder to pylibcudf.
Checklist