70

我正在尝试创建一个将条目添加到 json 文件的函数。最终,我想要一个看起来像

[{"name" = "name1", "url" = "url1"}, {"name" = "name2", "url" = "url2"}]

等等这就是我所拥有的:

def add(args):
    with open(DATA_FILENAME, mode='r', encoding='utf-8') as feedsjson:
        feeds = json.load(feedsjson)
    with open(DATA_FILENAME, mode='w', encoding='utf-8') as feedsjson:
        entry = {}
        entry['name'] = args.name
        entry['url'] = args.url
        json.dump(entry, feedsjson)

这确实会创建一个条目,例如{"name"="some name", "url"="some url"}. 但是,如果我add再次使用这个函数,使用不同的名称和 url,第一个会被覆盖。我需要做什么才能将第二个(第三个...)条目附加到第一个条目上?

编辑:这个问题的第一个答案和评论指出了一个明显的事实,即我没有feeds在写块中使用。不过,我不知道该怎么做。例如,以下显然不会:

with open(DATA_FILENAME, mode='a+', encoding='utf-8') as feedsjson:
    feeds = json.load(feedsjson)
    entry = {}
    entry['name'] = args.name
    entry['url'] = args.url
    json.dump(entry, feeds)
4

10 回答 10

74

json 可能不是磁盘格式的最佳选择;它在附加数据方面遇到的麻烦就是一个很好的例子,说明了为什么会这样。具体来说,json 对象的语法意味着必须读取和解析整个对象才能理解它的任何部分。

幸运的是,还有很多其他选择。一个特别简单的就是 CSV;python的标准库很好地支持它。最大的缺点是它只适用于文本;如果需要,它需要程序员的额外操作将值转换为数字或其他格式。

另一个没有此限制的选项是使用 sqlite 数据库,该数据库在 python 中也具有内置支持。这可能与您已经拥有的代码有更大的不同,但它更自然地支持您显然正在尝试构建的“稍微修改”模型。

于 2012-10-21T03:08:43.043 回答
45

您可能希望使用 JSON列表而不是字典作为顶级元素。

因此,使用空列表初始化文件:

with open(DATA_FILENAME, mode='w', encoding='utf-8') as f:
    json.dump([], f)

然后,您可以将新条目附加到此列表中:

with open(DATA_FILENAME, mode='w', encoding='utf-8') as feedsjson:
    entry = {'name': args.name, 'url': args.url}
    feeds.append(entry)
    json.dump(feeds, feedsjson)

请注意,这执行起来会很慢,因为您每次调用时都会重写文件的全部内容add。如果您在循环中调用它,请考虑提前将所有提要添加到列表中,然后一次性写出列表。

于 2012-10-21T02:54:44.137 回答
20

如果文件存在,则将条目附加到文件内容,否则将条目附加到空列表并写入文件:

a = []
if not os.path.isfile(fname):
    a.append(entry)
    with open(fname, mode='w') as f:
        f.write(json.dumps(a, indent=2))
else:
    with open(fname) as feedsjson:
        feeds = json.load(feedsjson)

    feeds.append(entry)
    with open(fname, mode='w') as f:
        f.write(json.dumps(feeds, indent=2))
于 2016-03-06T17:35:20.107 回答
14

使用a而不是w应该让您更新文件而不是创建新文件/覆盖现有文件中的所有内容。

有关模式的差异,请参见此答案

于 2012-10-21T02:42:28.303 回答
11

一种可能的解决方案是手动进行连接,这里有一些有用的代码:

import json
def append_to_json(_dict,path): 
    with open(path, 'ab+') as f:
        f.seek(0,2)                                #Go to the end of file    
        if f.tell() == 0 :                         #Check if file is empty
            f.write(json.dumps([_dict]).encode())  #If empty, write an array
        else :
            f.seek(-1,2)           
            f.truncate()                           #Remove the last character, open the array
            f.write(' , '.encode())                #Write the separator
            f.write(json.dumps(_dict).encode())    #Dump the dictionary
            f.write(']'.encode())                  #Close the array

在脚本外部编辑文件时应小心,不要在末尾添加任何间距。

于 2017-06-17T01:23:08.787 回答
6

这个,为我工作:

with open('file.json', 'a') as outfile:
    outfile.write(json.dumps(data))
    outfile.write(",")
    outfile.close()
于 2019-12-21T12:51:33.907 回答
3

你从来没有写任何与你读入的数据有关的东西。你想将提要中的数据结构添加到你正在创建的新结构中吗?

或者,也许您想以附加模式打开文件,open(filename, 'a')然后添加您的字符串,方法是编写由生成的字符串json.dumps而不是使用json.dump- 但 nneonneo 指出这将是无效的 json。

于 2012-10-21T02:38:23.853 回答
3

我有一些类似的代码,但不会每次都重写整个内容。这意味着定期运行并在数组末尾附加一个 JSON 条目。

如果该文件尚不存在,它会创建它并将 JSON 转储到一个数组中。如果文件已经被创建,它会走到最后,]用 a替换,掉新的 JSON 对象,然后再用另一个关闭它]

# Append JSON object to output file JSON array
fname = "somefile.txt"
if os.path.isfile(fname):
    # File exists
    with open(fname, 'a+') as outfile:
        outfile.seek(-1, os.SEEK_END)
        outfile.truncate()
        outfile.write(',')
        json.dump(data_dict, outfile)
        outfile.write(']')
else: 
    # Create file
    with open(fname, 'w') as outfile:
        array = []
        array.append(data_dict)
        json.dump(array, outfile)
于 2018-11-14T23:35:43.130 回答
3
import jsonlines

object1 = {
               "name": "name1",
               "url": "url1"
          }

object2 = {
               "name": "name2",
               "url": "url2"
          }   


# filename.jsonl is the name of the file
with jsonlines.open("filename.jsonl", "a") as writer:   # for writing
    writer.write(object1)
    writer.write(object2)

with jsonlines.open('filename.jsonl') as reader:      # for reading
    for obj in reader:
        print(obj)             

访问以获取更多信息https://jsonlines.readthedocs.io/en/latest/

于 2021-02-01T14:50:59.790 回答
1

您可以简单地从源文件中导入数据,读取它,然后将要附加的内容保存到变量中。然后打开目标文件,将里面的列表数据分配给一个新变量(大概这都是有效的 JSON),然后在这个列表变量上使用“附加”函数并将第一个变量附加到它。Viola,您已附加到 JSON 列表。现在只需用新附加的列表(作为 JSON)覆盖您的目标文件。

'open' 函数中的 'a' 模式在这里不起作用,因为它只会将所有内容附加到文件的末尾,这将使其成为无效的 JSON 格式。

于 2020-06-29T19:34:29.160 回答