mirror of
https://github.com/DavidGailleton/42-Piscine_Python.git
synced 2026-03-14 05:06:55 +01:00
Module 9 ex0 done + ex1 WIP
This commit is contained in:
313
09/generated_data/space_missions.py
Normal file
313
09/generated_data/space_missions.py
Normal file
@@ -0,0 +1,313 @@
|
||||
"""
|
||||
Generated test data for space_missions
|
||||
"""
|
||||
|
||||
SPACE_MISSIONS = [
|
||||
{
|
||||
'mission_id': 'M2024_TITAN',
|
||||
'mission_name': 'Solar Observatory Research Mission',
|
||||
'destination': 'Solar Observatory',
|
||||
'launch_date': '2024-03-30T00:00:00',
|
||||
'duration_days': 451,
|
||||
'crew': [
|
||||
{
|
||||
'member_id': 'CM001',
|
||||
'name': 'Sarah Williams',
|
||||
'rank': 'captain',
|
||||
'age': 43,
|
||||
'specialization': 'Mission Command',
|
||||
'years_experience': 19,
|
||||
'is_active': True
|
||||
},
|
||||
{
|
||||
'member_id': 'CM002',
|
||||
'name': 'James Hernandez',
|
||||
'rank': 'captain',
|
||||
'age': 43,
|
||||
'specialization': 'Pilot',
|
||||
'years_experience': 30,
|
||||
'is_active': True
|
||||
},
|
||||
{
|
||||
'member_id': 'CM003',
|
||||
'name': 'Anna Jones',
|
||||
'rank': 'cadet',
|
||||
'age': 35,
|
||||
'specialization': 'Communications',
|
||||
'years_experience': 15,
|
||||
'is_active': True
|
||||
},
|
||||
{
|
||||
'member_id': 'CM004',
|
||||
'name': 'David Smith',
|
||||
'rank': 'commander',
|
||||
'age': 27,
|
||||
'specialization': 'Security',
|
||||
'years_experience': 15,
|
||||
'is_active': True
|
||||
},
|
||||
{
|
||||
'member_id': 'CM005',
|
||||
'name': 'Maria Jones',
|
||||
'rank': 'cadet',
|
||||
'age': 55,
|
||||
'specialization': 'Research',
|
||||
'years_experience': 30,
|
||||
'is_active': True
|
||||
}
|
||||
],
|
||||
'mission_status': 'planned',
|
||||
'budget_millions': 2208.1
|
||||
},
|
||||
{
|
||||
'mission_id': 'M2024_MARS',
|
||||
'mission_name': 'Jupiter Orbit Colony Mission',
|
||||
'destination': 'Jupiter Orbit',
|
||||
'launch_date': '2024-10-01T00:00:00',
|
||||
'duration_days': 1065,
|
||||
'crew': [
|
||||
{
|
||||
'member_id': 'CM011',
|
||||
'name': 'Emma Brown',
|
||||
'rank': 'commander',
|
||||
'age': 49,
|
||||
'specialization': 'Mission Command',
|
||||
'years_experience': 27,
|
||||
'is_active': True
|
||||
},
|
||||
{
|
||||
'member_id': 'CM012',
|
||||
'name': 'John Hernandez',
|
||||
'rank': 'lieutenant',
|
||||
'age': 36,
|
||||
'specialization': 'Science Officer',
|
||||
'years_experience': 22,
|
||||
'is_active': True
|
||||
},
|
||||
{
|
||||
'member_id': 'CM013',
|
||||
'name': 'Sofia Rodriguez',
|
||||
'rank': 'commander',
|
||||
'age': 29,
|
||||
'specialization': 'Life Support',
|
||||
'years_experience': 20,
|
||||
'is_active': True
|
||||
},
|
||||
{
|
||||
'member_id': 'CM014',
|
||||
'name': 'Sofia Lopez',
|
||||
'rank': 'lieutenant',
|
||||
'age': 44,
|
||||
'specialization': 'Systems Analysis',
|
||||
'years_experience': 25,
|
||||
'is_active': True
|
||||
}
|
||||
],
|
||||
'mission_status': 'planned',
|
||||
'budget_millions': 4626.0
|
||||
},
|
||||
{
|
||||
'mission_id': 'M2024_EUROPA',
|
||||
'mission_name': 'Europa Colony Mission',
|
||||
'destination': 'Europa',
|
||||
'launch_date': '2024-02-07T00:00:00',
|
||||
'duration_days': 666,
|
||||
'crew': [
|
||||
{
|
||||
'member_id': 'CM021',
|
||||
'name': 'Lisa Garcia',
|
||||
'rank': 'captain',
|
||||
'age': 36,
|
||||
'specialization': 'Medical Officer',
|
||||
'years_experience': 12,
|
||||
'is_active': True
|
||||
},
|
||||
{
|
||||
'member_id': 'CM022',
|
||||
'name': 'John Garcia',
|
||||
'rank': 'cadet',
|
||||
'age': 46,
|
||||
'specialization': 'Security',
|
||||
'years_experience': 25,
|
||||
'is_active': True
|
||||
},
|
||||
{
|
||||
'member_id': 'CM023',
|
||||
'name': 'Michael Johnson',
|
||||
'rank': 'officer',
|
||||
'age': 54,
|
||||
'specialization': 'Research',
|
||||
'years_experience': 30,
|
||||
'is_active': True
|
||||
},
|
||||
{
|
||||
'member_id': 'CM024',
|
||||
'name': 'Sarah Rodriguez',
|
||||
'rank': 'lieutenant',
|
||||
'age': 54,
|
||||
'specialization': 'Research',
|
||||
'years_experience': 30,
|
||||
'is_active': True
|
||||
},
|
||||
{
|
||||
'member_id': 'CM025',
|
||||
'name': 'Maria Smith',
|
||||
'rank': 'cadet',
|
||||
'age': 38,
|
||||
'specialization': 'Communications',
|
||||
'years_experience': 15,
|
||||
'is_active': True
|
||||
}
|
||||
],
|
||||
'mission_status': 'planned',
|
||||
'budget_millions': 4976.0
|
||||
},
|
||||
{
|
||||
'mission_id': 'M2024_LUNA',
|
||||
'mission_name': 'Mars Colony Mission',
|
||||
'destination': 'Mars',
|
||||
'launch_date': '2024-06-13T00:00:00',
|
||||
'duration_days': 222,
|
||||
'crew': [
|
||||
{
|
||||
'member_id': 'CM031',
|
||||
'name': 'Anna Davis',
|
||||
'rank': 'commander',
|
||||
'age': 27,
|
||||
'specialization': 'Communications',
|
||||
'years_experience': 14,
|
||||
'is_active': True
|
||||
},
|
||||
{
|
||||
'member_id': 'CM032',
|
||||
'name': 'Elena Garcia',
|
||||
'rank': 'lieutenant',
|
||||
'age': 42,
|
||||
'specialization': 'Science Officer',
|
||||
'years_experience': 23,
|
||||
'is_active': True
|
||||
},
|
||||
{
|
||||
'member_id': 'CM033',
|
||||
'name': 'Anna Brown',
|
||||
'rank': 'officer',
|
||||
'age': 55,
|
||||
'specialization': 'Engineering',
|
||||
'years_experience': 30,
|
||||
'is_active': True
|
||||
},
|
||||
{
|
||||
'member_id': 'CM034',
|
||||
'name': 'Emma Smith',
|
||||
'rank': 'captain',
|
||||
'age': 37,
|
||||
'specialization': 'Research',
|
||||
'years_experience': 23,
|
||||
'is_active': True
|
||||
},
|
||||
{
|
||||
'member_id': 'CM035',
|
||||
'name': 'Sofia Smith',
|
||||
'rank': 'lieutenant',
|
||||
'age': 53,
|
||||
'specialization': 'Security',
|
||||
'years_experience': 30,
|
||||
'is_active': True
|
||||
},
|
||||
{
|
||||
'member_id': 'CM036',
|
||||
'name': 'Maria Hernandez',
|
||||
'rank': 'commander',
|
||||
'age': 41,
|
||||
'specialization': 'Medical Officer',
|
||||
'years_experience': 30,
|
||||
'is_active': True
|
||||
},
|
||||
{
|
||||
'member_id': 'CM037',
|
||||
'name': 'John Hernandez',
|
||||
'rank': 'officer',
|
||||
'age': 42,
|
||||
'specialization': 'Science Officer',
|
||||
'years_experience': 20,
|
||||
'is_active': True
|
||||
}
|
||||
],
|
||||
'mission_status': 'planned',
|
||||
'budget_millions': 4984.6
|
||||
},
|
||||
{
|
||||
'mission_id': 'M2024_EUROPA',
|
||||
'mission_name': 'Saturn Rings Research Mission',
|
||||
'destination': 'Saturn Rings',
|
||||
'launch_date': '2024-09-18T00:00:00',
|
||||
'duration_days': 602,
|
||||
'crew': [
|
||||
{
|
||||
'member_id': 'CM041',
|
||||
'name': 'William Davis',
|
||||
'rank': 'captain',
|
||||
'age': 35,
|
||||
'specialization': 'Medical Officer',
|
||||
'years_experience': 14,
|
||||
'is_active': True
|
||||
},
|
||||
{
|
||||
'member_id': 'CM042',
|
||||
'name': 'Sarah Smith',
|
||||
'rank': 'captain',
|
||||
'age': 55,
|
||||
'specialization': 'Research',
|
||||
'years_experience': 30,
|
||||
'is_active': True
|
||||
},
|
||||
{
|
||||
'member_id': 'CM043',
|
||||
'name': 'Elena Garcia',
|
||||
'rank': 'commander',
|
||||
'age': 55,
|
||||
'specialization': 'Research',
|
||||
'years_experience': 30,
|
||||
'is_active': True
|
||||
},
|
||||
{
|
||||
'member_id': 'CM044',
|
||||
'name': 'Sofia Williams',
|
||||
'rank': 'officer',
|
||||
'age': 30,
|
||||
'specialization': 'Systems Analysis',
|
||||
'years_experience': 9,
|
||||
'is_active': True
|
||||
},
|
||||
{
|
||||
'member_id': 'CM045',
|
||||
'name': 'Sarah Jones',
|
||||
'rank': 'lieutenant',
|
||||
'age': 25,
|
||||
'specialization': 'Maintenance',
|
||||
'years_experience': 11,
|
||||
'is_active': True
|
||||
},
|
||||
{
|
||||
'member_id': 'CM046',
|
||||
'name': 'Lisa Rodriguez',
|
||||
'rank': 'officer',
|
||||
'age': 30,
|
||||
'specialization': 'Life Support',
|
||||
'years_experience': 12,
|
||||
'is_active': True
|
||||
},
|
||||
{
|
||||
'member_id': 'CM047',
|
||||
'name': 'Sarah Smith',
|
||||
'rank': 'cadet',
|
||||
'age': 28,
|
||||
'specialization': 'Pilot',
|
||||
'years_experience': 8,
|
||||
'is_active': True
|
||||
}
|
||||
],
|
||||
'mission_status': 'planned',
|
||||
'budget_millions': 1092.6
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user