-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathEventData.js
More file actions
127 lines (121 loc) · 3.43 KB
/
EventData.js
File metadata and controls
127 lines (121 loc) · 3.43 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
export const currentYear = 2025
// Array of events for the current year's PyCon
export const events = [
{
date: '1-2 March',
title: 'PyCon APAC',
location: 'Ateneo de Manila University, Quezon City, Manila, Philippines',
link: 'https://pycon-apac.python.ph/',
countryCode: 'PH',
},
{
date: '18-20 June',
title: 'PyCon SG',
location: 'Singapore Institute of Technology, Singapore',
link: 'https://pycon.sg',
countryCode: 'SG',
},
{
date: '15-17 August',
title: 'PyCon KR',
location: 'Dongguk University, Seoul, South Korea',
link: 'https://2025.pycon.kr/',
countryCode: 'KR',
},
{
date: '5-7 September',
title: 'PyCon TW ',
location: 'Taipei, Taiwan',
link: 'https://tw.pycon.org/2025/en-us',
countryCode: 'TW',
},
{
date: '12-15 September',
title: 'PyCon India',
location: 'Nimhans Convention Center, Bangalore, India',
link: 'https://in.pycon.org/2025/',
countryCode: 'IN',
},
{
date: '12-16 September',
title: 'PyCon AU',
location: 'Melbourne, Australia',
link: 'https://2025.pycon.org.au',
countryCode: 'AU',
},
{
date: '26-27 September',
title: 'PyCon JP',
location: 'Hiroshima, Japan',
link: 'https://2025.pycon.jp',
countryCode: 'JP',
},
{
date: '11-12 October',
title: 'PyCon HK',
location: 'City University of Hong Kong, Hong Kong',
link: 'https://pycon.hk',
countryCode: 'HK',
},
{
date: '17-18 October',
title: 'PyCon TH',
location: 'Avani Sukhumvit Bangkok Hotel, Bangkok, Thailand',
link: 'https://th.pycon.org',
countryCode: 'TH',
},
{
date: '25-26 October',
title: 'PyCon Davao',
location: 'Ateneo de Davao University, Davao City, Philippines',
link: 'https://pycon-davao.durianpy.org',
countryCode: 'PH',
},
{
date: '1-2 November',
title: 'PyCon MY',
location: 'Sunway University, Subang Jaya, Malaysia',
link: 'https://pycon.my',
countryCode: 'MY',
},
{
date: '21-23 November',
title: 'PyCon NZ',
location: 'Wellington Waterfront, New Zealand',
link: 'https://kiwipycon.nz',
countryCode: 'NZ',
},
{
date: '13-14 December',
title: 'PyCon ID',
location: 'Jakarta, Indonesia',
link: 'https://pycon.id',
countryCode: 'ID',
}
];
// Array of upcoming events for the next year
export const upcomingEvents = [
// e.g.
// {
// date: '1-2 March',
// title: 'PyCon APAC',
// location: 'Ateneo de Manila University, Quezon City, Philippines',
// link: 'https://pycon-apac.python.ph/',
// },
];
// Array of event slides, primarily used to showcase the incoming host for
// the upcoming PyCon APAC
export const slides = [
{
key: 1,
img: 'images/event-slide-1.png',
title: 'PythonAsia 2026 ',
badgeText: 'FLAGSHIP REGIONAL EVENT',
badgeType: 'success',
description: "PythonAsia 2026 will be proudly hosted in the Philippines, by PythonPH in collaboration with the Python Asia Organization (PAO). The same heart of PyCon APAC, now as PythonAsia.",
info: [
"2026 March 21-23",
"Malate, Metro Manila, Philippines"
]
},
]