如何阅读Twitter的表情符号

时间:2016-04-17 09:48:34

标签: python-3.x twitter unicode

您好我想知道是否有办法编写或(编码)推特的表情符号..例如,这个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字符替换表情符号吗?

0 个答案:

没有答案