无法在python中读取多个Tweet JSON文件(附加文件链接)

时间:2018-06-26 10:46:11

标签: python json

Please download the file from the given link, the link contain the json file which I am unable to read

我尝试了以下代码,但没有用:

import json

with open('G:/analytics/ISB CBA/Residency/Residency1&2/B9MPRACT/data/python.json','r') as f:
    for line in f:
        tweet = json.loads(line)
        print("hello")

我知道StackOverflow中有很多解决方案和问题,但是我在读取此json文件时遇到的问题没有找到任何解决方案。 任何回应都是值得的。

1 个答案:

答案 0 :(得分:-1)

检查是否可行: pip install simplejson

将simplejson导入为json
使用open('E:/Studies/ISB/python.json','r')作为f:
    用于f中的行:
        tweet = json.loads(line)
        打印推文