您好我想知道是否有办法编写或(编码)推特的表情符号..例如,这个following tweet有一些表情符号,所以我想知道是否有办法写json中适当的unicode
for item in r:
with io.open('live_tweets/'+str(uuid.uuid4())+'.json', 'w', encoding='utf-8') as f:
f.write(json.dumps(item, ensure_ascii=False, sort_keys = True, indent = 4))
print(item['text'] if 'text' in item else item)
结果
...
"text": "RT @AlkofahiGhaleb: @MarionSpekker danke thank you\nHave a great time",
...
可以用unicode字符替换表情符号吗?