api/streamlit_experiments/s3.py [90:98]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            ExpressionType='SQL',
            InputSerialization={'CSV': {"FileHeaderInfo": "Use"}},
            OutputSerialization={'JSON': {}},
        )

        for event in s3_select_results['Payload']:
            if 'Records' in event:
                df = pd.read_json(io.StringIO(event['Records']['Payload'].decode('utf-8')), lines=True)
            elif 'Stats' in event:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



experiments/notebooks/cloudstory-api/cloudstory.py [114:122]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        ExpressionType='SQL',
        InputSerialization={'CSV': {"FileHeaderInfo": "Use"}},
        OutputSerialization={'JSON': {}},
    )

    for event in s3_select_results['Payload']:
        if 'Records' in event:
            df = pd.read_json(io.StringIO(event['Records']['Payload'].decode('utf-8')), lines=True)
        elif 'Stats' in event:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



