Folders
Walk the folder tree and bulk-download imagery.
Module methods
sdk.folder.get(folder_id) returns a FolderResource.
Example
folder = sdk.folder.get(folder_id=19)
# List the imagery directly under the folder
for image in folder.images:
print(image.id, image.name)
# Download the folder and all subfolders
folder.download(folder_path="/local/downloads", recursive=True)