-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame_data.py
More file actions
182 lines (182 loc) · 4.45 KB
/
game_data.py
File metadata and controls
182 lines (182 loc) · 4.45 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
data = [
{
'name': 'Uganda Wildlife Authority',
'follower_count': 350,
'description': 'Government agency for wildlife conservation',
'country': 'Uganda'
},
{
'name': 'Nina Roz',
'follower_count': 230,
'description': 'Musician',
'country': 'Uganda'
},
{
'name': 'Bobi Wine',
'follower_count': 275,
'description': 'Musician and politician',
'country': 'Uganda'
},
{
'name': 'Brian White',
'follower_count': 250,
'description': 'Philanthropist and businessman',
'country': 'Uganda'
},
{
'name': 'Kemi Sifa',
'follower_count': 220,
'description': 'Gospel singer',
'country': 'Uganda'
},
{
'name': 'Cindy Sanyu',
'follower_count': 210,
'description': 'Musician and dancer',
'country': 'Uganda'
},
{
'name': 'Uganda Cranes',
'follower_count': 200,
'description': 'National football team',
'country': 'Uganda'
},
{
'name': 'Radio & Weasel',
'follower_count': 190,
'description': 'Music duo',
'country': 'Uganda'
},
{
'name': 'Zari Hassan',
'follower_count': 180,
'description': 'Entrepreneur and socialite',
'country': 'Uganda'
},
{
'name': 'Maro',
'follower_count': 170,
'description': 'Musician',
'country': 'Uganda'
},
{
'name': 'Uganda Tourism Board',
'follower_count': 160,
'description': 'Promotes tourism in Uganda',
'country': 'Uganda'
},
{
'name': 'Martha Kay',
'follower_count': 150,
'description': 'Comedian and media personality',
'country': 'Uganda'
},
{
'name': 'Uganda Police Force',
'follower_count': 140,
'description': 'National law enforcement agency',
'country': 'Uganda'
},
{
'name': 'Jose Chameleone',
'follower_count': 130,
'description': 'Musician',
'country': 'Uganda'
},
{
'name': 'Kenzo Eddy',
'follower_count': 100,
'description': 'Musician',
'country': 'Uganda'
},
{
'name': 'Swangz Avenue',
'follower_count': 120,
'description': 'Music record label',
'country': 'Uganda'
},
{
'name': 'Uganda Revenue Authority',
'follower_count': 110,
'description': 'Government agency for tax collection',
'country': 'Uganda'
},
{
'name': 'Pallaso',
'follower_count': 95,
'description': 'Musician',
'country': 'Uganda'
},
{
'name': 'Angelina Nabuufu',
'follower_count': 90,
'description': 'Gospel singer',
'country': 'Uganda'
},
{
'name': 'Tina Fierce',
'follower_count': 80,
'description': 'Media personality',
'country': 'Uganda'
},
{
'name': 'Uganda Wildlife Safari',
'follower_count': 70,
'description': 'Wildlife safari company',
'country': 'Uganda'
},
{
'name': 'NBS Television',
'follower_count': 60,
'description': 'Television station',
'country': 'Uganda'
},
{
'name': 'Apass',
'follower_count': 50,
'description': 'Musician',
'country': 'Uganda'
},
{
'name': 'Samanya Uganda',
'follower_count': 45,
'description': 'Online news platform',
'country': 'Uganda'
},
{
'name': 'Vinka',
'follower_count': 40,
'description': 'Musician',
'country': 'Uganda'
},
{
'name': 'Farouk Ndemere',
'follower_count': 35,
'description': 'Influencer and activist',
'country': 'Uganda'
},
{
'name': 'UGANDA Martyrs Shrine',
'follower_count': 30,
'description': 'Religious site',
'country': 'Uganda'
},
{
'name': 'Bebe Cool',
'follower_count': 20,
'description': 'Musician',
'country': 'Uganda'
},
{
'name': 'Uganda National Roads Authority',
'follower_count': 25,
'description': 'Government agency for road construction',
'country': 'Uganda'
},
{
'name': 'Sheebah Karungi',
'follower_count': 300,
'description': 'Musician and actress',
'country': 'Uganda'
}
]