如何使用Boto3更新dynamodb中列表中的列表

时间:2018-10-07 13:22:21

标签: amazon-dynamodb boto3

我在dynamodb中有一个表格,看起来像这样

{"category": "geographie",
  "words": [
    {
      "hilfestellung": [
        "Hauptstadt von Belgien",
        "Die Schokolade ist berühmt"
      ],
      "user": [
        "useridxyz"
      ],
      "word": "brüssel"
    },
    {
      "hilfestellung": [
        "Hauptstadt von Deutschland",
        "Die Fußballmannschaft heisst Hertha BSC"
      ],
      "user": [],
      "word": "berlin"
    }
  ]
}

如何在列表user中附加新的userId,其中word等于使用python和boto3的brüssel?我发现了如何在boto3中添加新的list_item,但找不到如何在列表的列表中添加项目。

0 个答案:

没有答案