-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathdata.py
More file actions
43 lines (43 loc) · 1.39 KB
/
data.py
File metadata and controls
43 lines (43 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
data = {
'name': 'James Tiberius Kirk',
'nickname': 'Jim',
'image': 'kirk.jpg',
'greeting_msg': 'Hi, there!',
'about': """
James Tiberius "Jim" Kirk was a male Human Starfleet officer in the 23rd century. He was arguably one of the most famous and highly decorated starship captains in the history of Starfleet. As the commanding officer of the Constitution-class starships USS Enterprise and USS Enterprise-A, Kirk served United Federation of Planets interests as an explorer, soldier, time-traveler, and diplomat.
""",
'work': {
'position': 'Starfleet officer',
'at': 'Starfleet'
},
'courses': [
{
'name': 'How to survive in Kobayashi Maru mission',
'school': 'Starfleet Academy',
'url': 'kobayashimaru'
},
{
'name': 'Advanced Navigation',
'school': 'Starfleet Academy',
'url': 'adv-nav'
},
{
'name': 'Basic Warp Design',
'school': 'Starfleet Academy',
'url': 'warp-design'
},
{
'name': 'Klingon Physiology',
'school': 'Valcan State Institute of Technology',
'url': 'klingon-phys'
}
],
'skills': [
'Leadership',
'Leadership',
'Human Language',
'Borg Language',
'Valcan Language',
'Sleeping'
]
}