def process_data()

in lambda-connector/DC-got-talent-final-scores.py [0:0]


def process_data(response):
    data = []
    for row in response['rows']:
        name = row["cells"][0]["formattedValue"]
        score = row["cells"][2]["formattedValue"] ##index [1] retrieves prelim scores, [2] retrieves final scores
        data.append([name,score])
    return data