如何使用Python JSON替换列表中的特定值?

时间:2013-08-27 11:39:51

标签: python json file list replace

我得到了一个包含此列表结构的.txt文件:

["saelyth", "somehting here", "Not needed", "2013-08-24 14:14:47"]
["anothername", "whatever 1", "Not needed neither", "2013-08-24 15:12:26"]
["athirdone", "just an example", "of the list structure", "2013-08-24 15:12:51"]

只有在文件中找到值1时,才需要替换特定列表的第二个值。我正在尝试的代码是这个,但到目前为止,只是将数据附加到文件而不是替换它。

  horaactual = datetime.datetime.now()
  filename = "datosdeusuario.txt"
  leyendo = open(filename, 'r+')
  buffer = leyendo.read()
  leyendo.close()
  fechitaguardaips = str(horaactual)[:19]
  escribiendo = open(filename, 'r+')
  for line in escribiendo:
    retrieved = json.loads(line)
    if retrieved[0] == user.name:
      retrieveddata1 = "prueba"
      mythirdvalue = "not important"
      escribiendo.write(json.dumps([user.name, retrieveddata1, mythirdvalue, fechitaguardaips])+"\n")
      break
  escribiendo.close()

我猜失败是在escribiendo.write行。但是,我一直在谷歌搜索两个小时,我确实得到了这么远,但我没有找到特定的调用替换数据而不是写或附加。我该如何解决这个问题?

这是发生的事情,不应该:(

["saelyth", "prueba", "", "2013-08-27 13:25:14"]
["saelyth", "prueba", "", "2013-08-27 13:25:32"]
["saelyth", "prueba", "", "2013-08-27 13:26:01"]

我也很难理解Break的作用,因为我想从我的代码中停止无限循环(昨天在我的程序的另一部分发生了我,但我也在使用“For line in X”in JSON Python)。

2 个答案:

答案 0 :(得分:0)

以下是一个可以调整您需求的示例:

from contextlib import nested

filename = 'datosdeusuario.txt'
with nested( open(filename,'r'),open(filename,'w') ) as f1,f2:
    for line in f1:
        f2.write(line.replace('foo','bar'))

这将替换文件中 bar 的子字符串 foo 的每个实例,即使它确实打开了两次文件。

答案 1 :(得分:0)

我的方法是这样的(根据Stack Overflow问题 Loading and parsing a JSON file in Python 的答案):

import json

data = []
with open('text.json', 'r+') as f:
    for line in f:
        data_line = json.loads(line)
        if data_line[0] == 'saelyth' and '1' in data_line[1]:
            data_line[1] = 'new value'
        data.append(data_line)
    f.seek(0)
    f.writelines(["%s\n" % json.dumps(i) for i in data])
    f.truncate()

如果我的问题出错,请纠正我。

关于break的问题,请检查 Python break, continue and pass Statements