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
utf-8
The eta.core.serial.Serializable class should support optional utf-8 encoding/decoding of strings. By default, I suppose this should be turned on.
eta.core.serial.Serializable
Currently one has to write something like this:
output = etas.json_to_str(output).encode("utf-8") with open(output_fn, "wt") as f: f.write(output)
The text was updated successfully, but these errors were encountered:
I second this
Sorry, something went wrong.
No branches or pull requests
The
eta.core.serial.Serializable
class should support optionalutf-8
encoding/decoding of strings. By default, I suppose this should be turned on.Currently one has to write something like this:
The text was updated successfully, but these errors were encountered: