You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when i run the script and save the metadata to a json file I get a unicode
\u05de\u05d3\u05d5\u05d6\u05d4 \u05d7\u05d5\u05e3 \u05d0\u05e9\u05d3\u05d5\u05d3, so I added to lines 1132-1134
json_file = open("logs/" + search_keyword[i] + ".json", "w",encoding="utf-8")
json.dump(items, json_file, indent=4, sort_keys=True, ensure_ascii=False)
json_file.close()
but it didn't resolve the issue
any suggestions?
The text was updated successfully, but these errors were encountered:
when i run the script and save the metadata to a json file I get a unicode
\u05de\u05d3\u05d5\u05d6\u05d4 \u05d7\u05d5\u05e3 \u05d0\u05e9\u05d3\u05d5\u05d3, so I added to lines 1132-1134
json_file = open("logs/" + search_keyword[i] + ".json", "w",encoding="utf-8")
json.dump(items, json_file, indent=4, sort_keys=True, ensure_ascii=False)
json_file.close()
but it didn't resolve the issue
any suggestions?
The text was updated successfully, but these errors were encountered: