def read_last_operator_input()

in read_write_operator_input.py [0:0]


def read_last_operator_input(alias):
    try:
        response = table.query(
            KeyConditionExpression=Key('propertyAlias').eq(alias),
            ScanIndexForward=False, 
            Limit=1
        )
        print(response)
    except ClientError as e:
        print(e.response['Error']['Message'])
    else:
        return response