ニュース

First for all, thank you for your project. It is incredible and I am currently using it for another project. I am experiencing an issue when I send a request expecting a big response from ADWS Server.
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape #13 Open QiranYC opened on Aug 20, 2023 ...
JSONのUnicodeエスケープを通常文字列に変換したい事がよくあるので、備忘録メモ。 前回 1. JSONのUnicodeエスケープを通常文字列に変換 import sys import json # JSONのUnicodeエスケープを通常文字列に変換 data = None with open (sys.argv [1], 'r') as f: data = json.load (f) ...