Skip to content
Navigation Menu
{{ message }}
-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathnews.html
More file actions
562 lines (541 loc) · 20 KB
/
Copy pathnews.html
File metadata and controls
562 lines (541 loc) · 20 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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Latest news, notices, and upcoming Python conferences around the world."
/>
<title>News & Notices | Python Users Group Nepal</title>
<link rel="icon" href="../images/logo/python-ugn-condensed.png" />
<link rel="stylesheet" href="../css/style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
/>
<style>
.conference-card {
background: var(--card-bg);
border-radius: var(--radius-lg);
padding: var(--space-lg);
margin-bottom: var(--space-lg);
border: 1px solid var(--border-color);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.conference-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-lg);
}
.conference-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: var(--space-md);
flex-wrap: wrap;
gap: var(--space-sm);
}
.conference-title {
font-size: 1.5rem;
color: var(--text-primary);
margin: 0;
}
.conference-badge {
padding: 0.25rem 0.75rem;
border-radius: var(--radius-full);
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
}
.badge-upcoming {
background: var(--success-light);
color: var(--success);
}
.badge-cfp {
background: var(--warning-light);
color: var(--warning);
}
.badge-past {
background: var(--text-muted);
color: white;
}
.conference-meta {
display: flex;
flex-wrap: wrap;
gap: var(--space-lg);
margin-bottom: var(--space-md);
color: var(--text-secondary);
}
.conference-meta span {
display: flex;
align-items: center;
gap: var(--space-xs);
}
.conference-description {
color: var(--text-secondary);
margin-bottom: var(--space-md);
line-height: 1.7;
}
.conference-link {
display: inline-flex;
align-items: center;
gap: var(--space-xs);
color: var(--primary);
font-weight: 500;
text-decoration: none;
}
.conference-link:hover {
text-decoration: underline;
}
.news-item {
background: var(--card-bg);
border-radius: var(--radius-lg);
padding: var(--space-lg);
margin-bottom: var(--space-md);
border-left: 4px solid var(--primary);
}
.news-item h3 {
margin: 0 0 var(--space-sm) 0;
color: var(--text-primary);
}
.news-item p {
margin: 0;
color: var(--text-secondary);
}
.news-date {
font-size: 0.875rem;
color: var(--text-muted);
margin-bottom: var(--space-xs);
}
.section-tabs {
display: flex;
gap: var(--space-sm);
margin-bottom: var(--space-xl);
flex-wrap: wrap;
}
.section-tab {
padding: 0.5rem 1.25rem;
border-radius: var(--radius-full);
border: 2px solid var(--border-color);
background: transparent;
color: var(--text-secondary);
cursor: pointer;
font-weight: 500;
transition: all 0.3s ease;
}
.section-tab:hover,
.section-tab.active {
background: var(--primary);
border-color: var(--primary);
color: white;
}
</style>
</head>
<body>
<!-- Header Container - Loaded dynamically -->
<div id="header-container"></div>
<!-- Page Header -->
<header class="page-header">
<div class="container">
<h1><i class="fas fa-newspaper"></i> News & Notices</h1>
<p>
Stay updated with Python conferences, community news, and
announcements
</p>
</div>
</header>
<!-- Main Content -->
<main class="page-content">
<div class="container">
<!-- Upcoming Conferences Section -->
<section class="resources-section">
<h2>
<i class="fas fa-calendar-alt"></i> Upcoming Python Conferences 2026
</h2>
<p style="color: var(--text-muted); margin-bottom: var(--space-lg)">
Mark your calendars for these exciting Python events around the
world
</p>
<!-- PyCon US 2026 -->
<div class="conference-card">
<div class="conference-header">
<h3 class="conference-title">🇺🇸 PyCon US 2026</h3>
<span class="conference-badge badge-upcoming">Upcoming</span>
</div>
<div class="conference-meta">
<span><i class="fas fa-calendar"></i> May 14 - 22, 2026</span>
<span
><i class="fas fa-map-marker-alt"></i> Pittsburgh, Pennsylvania,
USA</span
>
</div>
<p class="conference-description">
The largest annual gathering for the Python community in North
America. PyCon US features tutorials, talks, sprints, and the
famous hallway track. A must-attend event for Python enthusiasts
worldwide with speakers from all corners of the globe.
</p>
<a
href="https://us.pycon.org/"
target="_blank"
class="conference-link"
>
<i class="fas fa-external-link-alt"></i> Visit Website
</a>
</div>
<!-- EuroPython 2026 -->
<div class="conference-card">
<div class="conference-header">
<h3 class="conference-title">🇪🇺 EuroPython 2026</h3>
<span class="conference-badge badge-upcoming">Upcoming</span>
</div>
<div class="conference-meta">
<span><i class="fas fa-calendar"></i> July 14 - 20, 2026</span>
<span><i class="fas fa-map-marker-alt"></i> Dublin, Ireland</span>
</div>
<p class="conference-description">
Europe's largest Python conference brings together developers,
data scientists, and enthusiasts from across the continent and
beyond. Features workshops, talks, sprints, and excellent
networking opportunities in a vibrant atmosphere.
</p>
<a
href="https://europython.eu/"
target="_blank"
class="conference-link"
>
<i class="fas fa-external-link-alt"></i> Visit Website
</a>
</div>
<!-- PyCon DE & PyData Berlin 2026 -->
<div class="conference-card">
<div class="conference-header">
<h3 class="conference-title">🇩🇪 PyCon DE & PyData Berlin 2026</h3>
<span class="conference-badge badge-cfp">CFP Open</span>
</div>
<div class="conference-meta">
<span><i class="fas fa-calendar"></i> April 23 - 25, 2026</span>
<span><i class="fas fa-map-marker-alt"></i> Berlin, Germany</span>
</div>
<p class="conference-description">
A joint conference combining Python development and data science
tracks. Perfect for those interested in both software engineering
and data-driven applications. Features excellent talks on Django,
FastAPI, machine learning, and scientific computing.
</p>
<a href="https://pycon.de/" target="_blank" class="conference-link">
<i class="fas fa-external-link-alt"></i> Visit Website
</a>
</div>
<!-- DjangoCon Europe 2026 -->
<div class="conference-card">
<div class="conference-header">
<h3 class="conference-title">🇪🇺 DjangoCon Europe 2026</h3>
<span class="conference-badge badge-upcoming">Upcoming</span>
</div>
<div class="conference-meta">
<span><i class="fas fa-calendar"></i> June 4 - 8, 2026</span>
<span
><i class="fas fa-map-marker-alt"></i> Edinburgh, Scotland</span
>
</div>
<p class="conference-description">
The premier Django conference in Europe, bringing together Django
developers for talks, tutorials, and sprints. Learn about the
latest Django features, best practices, and connect with the
Django community.
</p>
<a
href="https://djangocon.eu/"
target="_blank"
class="conference-link"
>
<i class="fas fa-external-link-alt"></i> Visit Website
</a>
</div>
<!-- DjangoCon US 2026 -->
<div class="conference-card">
<div class="conference-header">
<h3 class="conference-title">🇺🇸 DjangoCon US 2026</h3>
<span class="conference-badge badge-upcoming">Upcoming</span>
</div>
<div class="conference-meta">
<span
><i class="fas fa-calendar"></i> September 21 - 25, 2026</span
>
<span
><i class="fas fa-map-marker-alt"></i> Durham, North Carolina,
USA</span
>
</div>
<p class="conference-description">
The largest Django conference in North America featuring talks,
tutorials, and sprints. A welcoming community event focused on
Django web framework, its ecosystem, and the people who use it.
</p>
<a
href="https://djangocon.us/"
target="_blank"
class="conference-link"
>
<i class="fas fa-external-link-alt"></i> Visit Website
</a>
</div>
<!-- PyData Global 2026 -->
<div class="conference-card">
<div class="conference-header">
<h3 class="conference-title">🌍 PyData Global 2026</h3>
<span class="conference-badge badge-upcoming">Upcoming</span>
</div>
<div class="conference-meta">
<span><i class="fas fa-calendar"></i> December 3 - 5, 2026</span>
<span
><i class="fas fa-map-marker-alt"></i> Virtual / Online</span
>
</div>
<p class="conference-description">
A global online conference focused on data science, machine
learning, and AI with Python. Features talks from data
professionals worldwide, covering pandas, NumPy, scikit-learn,
PyTorch, and more. Accessible from anywhere!
</p>
<a
href="https://pydata.org/global/"
target="_blank"
class="conference-link"
>
<i class="fas fa-external-link-alt"></i> Visit Website
</a>
</div>
<!-- SciPy 2026 -->
<div class="conference-card">
<div class="conference-header">
<h3 class="conference-title">🇺🇸 SciPy 2026</h3>
<span class="conference-badge badge-upcoming">Upcoming</span>
</div>
<div class="conference-meta">
<span><i class="fas fa-calendar"></i> July 7 - 13, 2026</span>
<span
><i class="fas fa-map-marker-alt"></i> Tacoma, Washington,
USA</span
>
</div>
<p class="conference-description">
The annual Scientific Computing with Python conference. Focuses on
scientific computing, data visualization, and computational
research. Great for researchers, scientists, and engineers using
Python for scientific applications.
</p>
<a
href="https://www.scipy.org/"
target="_blank"
class="conference-link"
>
<i class="fas fa-external-link-alt"></i> Visit Website
</a>
</div>
</section>
<!-- Regional Conferences -->
<section class="resources-section">
<h2><i class="fas fa-globe-asia"></i> Regional Python Conferences</h2>
<p style="color: var(--text-muted); margin-bottom: var(--space-lg)">
Python conferences in the Asia-Pacific region
</p>
<!-- PyCon APAC 2026 -->
<div class="conference-card">
<div class="conference-header">
<h3 class="conference-title">🌏 PyCon APAC 2026</h3>
<span class="conference-badge badge-upcoming">Upcoming</span>
</div>
<div class="conference-meta">
<span
><i class="fas fa-calendar"></i> October 2026 (Dates TBA)</span
>
<span
><i class="fas fa-map-marker-alt"></i> Asia-Pacific Region</span
>
</div>
<p class="conference-description">
The Asia-Pacific Python Conference rotates between countries in
the region. A great opportunity for developers from Nepal to
attend a major Python conference closer to home. Watch for
announcements on location and dates.
</p>
<a
href="https://pycon.asia/"
target="_blank"
class="conference-link"
>
<i class="fas fa-external-link-alt"></i> Visit Website
</a>
</div>
<!-- PyCon India 2026 -->
<div class="conference-card">
<div class="conference-header">
<h3 class="conference-title">🇮🇳 PyCon India 2026</h3>
<span class="conference-badge badge-upcoming">Upcoming</span>
</div>
<div class="conference-meta">
<span
><i class="fas fa-calendar"></i> September 2026 (Dates
TBA)</span
>
<span><i class="fas fa-map-marker-alt"></i> India</span>
</div>
<p class="conference-description">
The largest Python conference in South Asia, PyCon India brings
together thousands of Python developers. Being our neighboring
country, this is a great opportunity for Nepali developers to
participate and present their work.
</p>
<a
href="https://in.pycon.org/"
target="_blank"
class="conference-link"
>
<i class="fas fa-external-link-alt"></i> Visit Website
</a>
</div>
</section>
<!-- Community News Section -->
<section class="resources-section">
<h2><i class="fas fa-bullhorn"></i> Community News & Notices</h2>
<p style="color: var(--text-muted); margin-bottom: var(--space-lg)">
Latest updates from Python Users Group Nepal
</p>
<div class="news-item">
<div class="news-date">January 2026</div>
<h3>🎉 Website Revamp Complete!</h3>
<p>
We're excited to announce the launch of our redesigned website!
The new site features a modern design, dark mode support, and
improved navigation. Thank you to all the contributors who made
this possible.
</p>
</div>
<div class="news-item">
<div class="news-date">December 2025</div>
<h3>🐍 Python 3.13 Released</h3>
<p>
Python 3.13 was released with exciting new features including
improved error messages, a new interactive interpreter (REPL), and
experimental free-threaded mode.
<a
href="https://docs.python.org/3/whatsnew/3.13.html"
target="_blank"
>Read the changelog</a
>.
</p>
</div>
<div class="news-item">
<div class="news-date">Ongoing</div>
<h3>💼 Add Your Company to Our Directory</h3>
<p>
Are you using Python at your company in Nepal? Get listed on our
<a href="companies.html">Companies page</a>! Submit a PR to our
<a
href="https://github.com/PythonNepal/pythonnepal.github.io"
target="_blank"
>GitHub repository</a
>.
</p>
</div>
<div class="news-item">
<div class="news-date">Ongoing</div>
<h3>👩💻 Join Our Developer Directory</h3>
<p>
Python developers from Nepal can add themselves to our
<a href="developers.html">Developers page</a>. Fork our repo, add
your details, and submit a pull request!
</p>
</div>
</section>
<!-- Conference Resources -->
<section class="resources-section">
<h2><i class="fas fa-link"></i> Useful Conference Resources</h2>
<p style="color: var(--text-muted); margin-bottom: var(--space-lg)">
Stay updated with Python events worldwide
</p>
<div class="resources-list">
<div class="resource-item">
<i class="fab fa-python"></i>
<a href="https://www.python.org/events/" target="_blank">
Python.org Events Calendar
</a>
<span
style="
margin-left: auto;
color: var(--text-muted);
font-size: 0.875rem;
"
>Official</span
>
</div>
<div class="resource-item">
<i class="fas fa-calendar-check"></i>
<a href="https://pycon.org/" target="_blank">
PyCon.org - Find PyCons Worldwide
</a>
<span
style="
margin-left: auto;
color: var(--text-muted);
font-size: 0.875rem;
"
>Directory</span
>
</div>
<div class="resource-item">
<i class="fas fa-chart-bar"></i>
<a href="https://pydata.org/events/" target="_blank">
PyData Events
</a>
<span
style="
margin-left: auto;
color: var(--text-muted);
font-size: 0.875rem;
"
>Data Science</span
>
</div>
<div class="resource-item">
<i class="fab fa-youtube"></i>
<a href="https://www.youtube.com/@PyConUS" target="_blank">
PyCon US YouTube Channel
</a>
<span
style="
margin-left: auto;
color: var(--text-muted);
font-size: 0.875rem;
"
>Past Talks</span
>
</div>
<div class="resource-item">
<i class="fab fa-youtube"></i>
<a
href="https://www.youtube.com/@EuroPythonConference"
target="_blank"
>
EuroPython YouTube Channel
</a>
<span
style="
margin-left: auto;
color: var(--text-muted);
font-size: 0.875rem;
"
>Past Talks</span
>
</div>
</div>
</section>
</div>
</main>
<!-- Footer Container - Loaded dynamically -->
<div id="footer-container"></div>
<script src="../js/main.js"></script>
</body>
</html>
You can’t perform that action at this time.
