我有一个.txt文件,看起来像这样: txt file example
基本上,它是一个推文列表,可能包含或不包含关键字和主题标签。
我想使用Python将此txt文件转换为JSON格式。我正在考虑这样的事情(对于每条推文):
{"tweet": [
"text": "actual tweet inserted here",
"hashtag": "hashtags (just leave blank if there are none)",
"keywords": "same as hashtags"
]
}
我认为这是一种有效的JSON格式,但我有点迷失在哪里开始。
我对Python和JSON相当新,所以任何帮助都会受到赞赏!