をファイルにダンプしますensure_ascii = FalseのJSONファイルを書く別の方法はありますか?JSONは= Falseの 何とかそれはいつも私にいくつかのエラーが発生します</p> <p>"<em>はない--is JSONシリアライズ可能な</em>"</p> <p>ですパラメータensure_asciiと私はJSONファイルを書きたいensure_ascii = Falseの
**私は、Python 2.7
ret = twitter_stream.statuses.filter(track='สวัสดี')
tweet_count = 3 for tweet in ret:
tweet_count -= 1
# We convert it back to the JSON format to print/score
print ('----',tweet_count,'----')
#print json.dumps(tweet,ensure_ascii=False,indent=4)
if tweet_count <= 0:
break
with io.open('data1.json', 'w', encoding='utf-8') as outfile:
outfile.write(json.dumps(ret, ensure_ascii=False, indent=4))
print("Done")
json.dumpsの前に 'type(tweet)'を実行して出力を投稿します – MohitC
出力は –
patppd