galileo_sdk.sdk.missions.MissionsSdk.get_mission_files

MissionsSdk.get_mission_files(mission_id)[source]

Provides the metadata of all files in a Mission context

Parameters

mission_id – UUID of the Mission to inspect

Returns

List[FileListing]

Example:
>>> my_missions = galileo.missions.list_missions() # get the UUID of the mission you want
>>> UUID = my_missions[0].mission_id
>>> mission_files = galileo.missions.get_mission_files(UUID)
>>> for file in mission_files:
>>>     print(file.filename, file.path, file.file_size)