design-patterns/scan_logfile_parallel.py [30:37]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    for i in response['Items']:
        totalbytessent += i['bytessent']

    while 'LastEvaluatedKey' in response:
        response = table.scan(
            FilterExpression=fe,
            ExpressionAttributeValues=eav,
            Limit=pageSize,
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



design-patterns/scan_logfile_simple.py [23:30]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    for i in response['Items']:
        totalbytessent += i['bytessent']

    while 'LastEvaluatedKey' in response:
        response = table.scan(
            FilterExpression=fe,
            ExpressionAttributeValues=eav,
            Limit=pageSize,
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



