We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In #17523 and the PR in #17524 pickling schemas was confirmed to work. It would be nice to be able to read and write schemas to a JSON format.
This would allow defining a schema in JSON, and allow it to be transportable, e.g., passing the schema in to read_csv().
read_csv()
It would require lexical casting, but this is already done for items in datatypes convert.py for things like python types and FFI.
convert.py
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
In #17523 and the PR in #17524 pickling schemas was confirmed to work. It would be nice to be able to read and write schemas to a JSON format.
This would allow defining a schema in JSON, and allow it to be transportable, e.g., passing the schema in to
read_csv()
.It would require lexical casting, but this is already done for items in datatypes
convert.py
for things like python types and FFI.The text was updated successfully, but these errors were encountered: