import cloudcatalog
dataset_id = 'STA_L1_SWEA_SPEC'
start = '2012-12-01T00:00:24.000Z'
stop = '2013-12-31T23:59:34.000Z'
fr=cloudcatalog.CloudCatalog('s3://gov-nasa-hdrl-data1/')
filelist = fr.request_cloud_catalog(dataset_id, start_date=start, stop_date=stop)
#example usage:
fr.stream_uri(filelist, lambda s3_uri, start, stop, filesize: MYCODE(s3_uri, start, stop, filesize))