У меня есть файл Json, содержащий следующую строку:
{
"tenant_EntityID": {
"s": "12345"
},
"enrtyDate": {
"s": "7.9.2000 14:53:45"
},
"first_name": {
"s": "Y7M9"
},
"last_name": {
"s": "NUYE"
},
"gender": {
"s": "male"
},
"birth_incorp_date": {
"s": "9.3.1999 14:49:44"
},
"email": {
"s": "0XPY9E@C20R.com"
}
}
Когда я пытаюсь загрузить его в DynamoDB с помощью следующего кода:
import boto3
import json
import decimal
dynamodb = boto3.resource('dynamodb', region_name='us-west-2')
table = dynamodb.Table('Entities')
with open("C:/data/bigJson1.json") as json_file:
Entities = json.load(json_file, parse_float = decimal.Decimal)
for Entity in Entities:
table.put_item(
Item={
'tenant_EntityID':Entity['tenant_EntityID'] ,
'enrtyDate': Entity['enrtyDate'],
'first_name': Entity['first_name'],
'last_name': Entity['last_name'],
'gender': Entity['gender'],
'birth_incorp_date': Entity['birth_incorp_date'],
'email': Entity['email']
}
)
Я получаю ошибку:
Traceback (most recent call last):
File "C:/Freedom/Comparing json file.py", line 39, in <module>
'tenant_EntityID':Entity['tenant_EntityID'] ,
TypeError: string indices must be integers