I need to download a bunch of Landsat images from Google Earth Engine, and I'm doing it in its Python API with
task = ee.batch.Export.image(IMAGE, NAME, config=CONFIG)
task.start()
Though it's working, the speed is extremely slow. The size of my images is around 70kb, but each takes 4 min or longer. Currently this happens in a for loop, so how can I, if possible, pack up multiple images as one task? Or other ways to speed up this process?