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
JSON Test File (test.json):
[ { "id": 123, "text": "FR Théâtre" }, { "id": 223, "text": [ "FR Théâtre" ] } ]
Command to import:
sqlite-utils insert test.db text test.json --pk=id
Resulting table view from datasette:
Original, db.py line 2225:
return json.dumps(value, default=repr)
Fix, db.py line 2225:
return json.dumps(value, default=repr, ensure_ascii=False)
The text was updated successfully, but these errors were encountered:
Tests for unicode characters in nested JSON, refs #257
a95954c
Release 3.7
8c542d2
Refs #237, #238, #240, #250, #257, #259, #260
No branches or pull requests
JSON Test File (test.json):
Command to import:
Resulting table view from datasette:
Original, db.py line 2225:
Fix, db.py line 2225:
The text was updated successfully, but these errors were encountered: