-
Notifications
You must be signed in to change notification settings - Fork 5
/
events.html
2277 lines (2259 loc) · 160 KB
/
events.html
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
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://use.fontawesome.com/2231f865fc.js"></script>
<link rel="shortcut icon" href="https://pyvideo.org/theme/images/favicon.png">
<meta name="google-site-verification" content="cHuieLjiIIDAHKKXSPPDsnbLEz9QgVNTi23qy_mOzDU" />
<title>PyVideo.org · Events</title>
<link href="https://pyvideo.org/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="PyVideo.org Full Atom Feed" />
<link href="https://pyvideo.org/feeds/all.rss.xml" type="application/rss+xml" rel="alternate" title="PyVideo.org Full RSS Feed" />
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha256-7s5uDGW3AHqw6xtJmNNtr+OBRJUlgkNJEo78P4b0yRw= sha512-nNo+yCHEyn0smMxSswnf/OnX6/KwJuZTlNZBjauKhTK0c+zT+q5JOCx0UFhXQ6rJR9jg6Es8gPuD2uZcYDLqSw=="
crossorigin="anonymous">
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<link href="/theme/css/ie10-viewport-bug-workaround.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="/theme/css/base.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<a class="github" href="https://github.com/pyvideo/pyvideo/wiki/How-to-Contribute-Media">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 2;" src="/images/contribute_to_me_right_red_aa0000.png" alt="Contribute Media" />
</a>
<div class="header notice clearfix">
A thank you to everyone who makes this possible:
<a href="/pages/thank-you-contributors.html">Read More</a>
</div>
<header id="banner" class="header clearfix">
<nav class="header__nav"><div class="container">
<ul class="nav">
<li role="presentation">
<a href="https://pyvideo.org/index.html"><i class="fa fa-fw fa-home"></i> <span>Start</span></a>
</li>
<li role="presentation" class="active">
<a href="https://pyvideo.org/events.html"><i class="fa fa-fw fa-list-ul"></i> <span>Events</span></a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/tags.html"><i class="fa fa-fw fa-tags"></i> <span>Tags</span></a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/speakers.html"><i class="fa fa-fw fa-users"></i> <span>Speakers</span></a>
</li>
<li role="presentation"
>
<a href="https://pyvideo.org/pages/about.html"><i class="fa fa-fw fa-info"></i> <span>About</span></a>
</li>
<li role="presentation"
style="display: none;">
<a href="https://pyvideo.org/pages/thank-you-contributors.html"><i class="fa fa-fw fa-info"></i> <span>Thank You</span></a>
</li>
<li role="presentation"
style="display: none;">
<a href="https://pyvideo.org/pages/thanks-will-and-sheila.html"><i class="fa fa-fw fa-info"></i> <span></span></a>
</li>
</ul>
</div></nav>
<div class="container">
<h3 class="text-muted header__title">
<a href="https://pyvideo.org/"><img src="/theme/images/logo.png" alt="" style="height:50px"> <span><i>Py</i>Video</span> <strong></strong></a>
</h3>
<div class="header__searchbox">
<form method="GET" action="/search.html">
<input name="q" type="search" placeholder="Search...">
</form>
</div>
</div>
</header>
<div class="container">
<h2>All Events</h2>
<div class="row">
<nav class="events">
<div class="col-md-12">
<div class="row">
<div class="col-md-6 col-sm-12">
<ul class="events">
<li role="presentation">
<a href="https://pyvideo.org/events/bay-piggies.html">Bay Piggies</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/boston-python-meetup.html">Boston Python Meetup</a>
</li>
<li role="presentation">
Caipyra
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/caipyra-2016.html" title="Caipyra 2016">2016</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/caipyra-2018.html" title="Caipyra 2018">2018</a>
</li>
</ul>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/chipy.html">ChiPy</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/chicago-djangonauts.html">Chicago Djangonauts</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/data-school.html">Data School</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/datacamp.html">DataCamp</a>
</li>
<li role="presentation">
DePy
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/depy-2015.html" title="DePy 2015">2015</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/depy-2016.html" title="DePy 2016">2016</a>
</li>
</ul>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/django-birthday.html">Django Birthday</a>
</li>
<li role="presentation">
Django Day Copenhagen
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/django-day-copenhagen-2020.html" title="Django Day Copenhagen 2020">2020</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/django-day-copenhagen-2022.html" title="Django Day Copenhagen 2022">2022</a>
</li>
</ul>
</li>
<li role="presentation">
Django Under the Hood
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/django-under-the-hood-2014.html" title="Django Under the Hood 2014">2014</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/django-under-the-hood-2016.html" title="Django Under the Hood 2016">2016</a>
</li>
</ul>
</li>
<li role="presentation">
DjangoCon AU
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-au-2013.html" title="DjangoCon AU 2013">2013</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-au-2014.html" title="DjangoCon AU 2014">2014</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-au-2015.html" title="DjangoCon AU 2015">2015</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-au-2016.html" title="DjangoCon AU 2016">2016</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-au-2017.html" title="DjangoCon AU 2017">2017</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-au-2018.html" title="DjangoCon AU 2018">2018</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-au-2019.html" title="DjangoCon AU 2019">2019</a>
</li>
</ul>
</li>
<li role="presentation">
DjangoCon Europe
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-europe-2010.html" title="DjangoCon Europe 2010">2010</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-europe-2011.html" title="DjangoCon Europe 2011">2011</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-europe-2013.html" title="DjangoCon Europe 2013">2013</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-europe-2014.html" title="DjangoCon Europe 2014">2014</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-europe-2015.html" title="DjangoCon Europe 2015">2015</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-europe-2016.html" title="DjangoCon Europe 2016">2016</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-europe-2017.html" title="DjangoCon Europe 2017">2017</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-europe-2018.html" title="DjangoCon Europe 2018">2018</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-europe-2019.html" title="DjangoCon Europe 2019">2019</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-europe-2020.html" title="DjangoCon Europe 2020">2020</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-europe-2021.html" title="DjangoCon Europe 2021">2021</a>
</li>
</ul>
</li>
<li role="presentation">
DjangoCon Toulouse
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-toulouse-2012.html" title="DjangoCon Toulouse 2012">2012</a>
</li>
</ul>
</li>
<li role="presentation">
DjangoCon US
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-us-2008.html" title="DjangoCon US 2008">2008</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-us-2009.html" title="DjangoCon US 2009">2009</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-us-2010.html" title="DjangoCon US 2010">2010</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-us-2011.html" title="DjangoCon US 2011">2011</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-us-2012.html" title="DjangoCon US 2012">2012</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-us-2013.html" title="DjangoCon US 2013">2013</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-us-2014.html" title="DjangoCon US 2014">2014</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-us-2015.html" title="DjangoCon US 2015">2015</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-us-2016.html" title="DjangoCon US 2016">2016</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-us-2017.html" title="DjangoCon US 2017">2017</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-us-2018.html" title="DjangoCon US 2018">2018</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-us-2019.html" title="DjangoCon US 2019">2019</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-us-2021.html" title="DjangoCon US 2021">2021</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-us-2022.html" title="DjangoCon US 2022">2022</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/djangocon-us-2023.html" title="DjangoCon US 2023">2023</a>
</li>
</ul>
</li>
<li role="presentation">
DjangoCong Montpellier
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/djangocong-montpellier-2012.html" title="DjangoCong Montpellier 2012">2012</a>
</li>
</ul>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/en-attendant-la-pyconfr-2020-2021.html">En attendant la PyConFr (2020-2021)</a>
</li>
<li role="presentation">
EuroPython
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/europython-2011.html" title="EuroPython 2011">2011</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/europython-2012.html" title="EuroPython 2012">2012</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/europython-2013.html" title="EuroPython 2013">2013</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/europython-2014.html" title="EuroPython 2014">2014</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/europython-2015.html" title="EuroPython 2015">2015</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/europython-2016.html" title="EuroPython 2016">2016</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/europython-2017.html" title="EuroPython 2017">2017</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/europython-2018.html" title="EuroPython 2018">2018</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/europython-2019.html" title="EuroPython 2019">2019</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/europython-2020.html" title="EuroPython 2020">2020</a>
</li>
</ul>
</li>
<li role="presentation">
EuroSciPy
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/euroscipy-2014.html" title="EuroSciPy 2014">2014</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/euroscipy-2015.html" title="EuroSciPy 2015">2015</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/euroscipy-2017.html" title="EuroSciPy 2017">2017</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/euroscipy-2018.html" title="EuroSciPy 2018">2018</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/euroscipy-2019.html" title="EuroSciPy 2019">2019</a>
</li>
</ul>
</li>
<li role="presentation">
FOSDEM
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/fosdem-2017.html" title="FOSDEM 2017">2017</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/fosdem-2018.html" title="FOSDEM 2018">2018</a>
</li>
</ul>
</li>
<li role="presentation">
Flask Conf
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/flask-conf-2018.html" title="Flask Conf 2018">2018</a>
</li>
</ul>
</li>
<li role="presentation">
FlaskCon
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/flaskcon-2020.html" title="FlaskCon 2020">2020</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/flaskcon-2021.html" title="FlaskCon 2021">2021</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/flaskcon-2023.html" title="FlaskCon 2023">2023</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/flaskcon-2024.html" title="FlaskCon 2024">2024</a>
</li>
</ul>
</li>
<li role="presentation">
Florida PyCon
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/florida-pycon-2017.html" title="Florida PyCon 2017">2017</a>
</li>
</ul>
</li>
<li role="presentation">
GeoPython
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/geopython-2019.html" title="GeoPython 2019">2019</a>
</li>
</ul>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/google-cloud-platform.html">Google Cloud Platform</a>
</li>
<li role="presentation">
Google Python Class, circa
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/google-python-class-circa-2010.html" title="Google Python Class, circa 2010">2010</a>
</li>
</ul>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/hsvpy-huntsvilles-python-meetup.html">HSV.py - Huntsville's Python Meetup</a>
</li>
<li role="presentation">
JupyterCon
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/jupytercon-2017.html" title="JupyterCon 2017">2017</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/jupytercon-2018.html" title="JupyterCon 2018">2018</a>
</li>
</ul>
</li>
<li role="presentation">
Kiwi PyCon
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/kiwi-pycon-2009.html" title="Kiwi PyCon 2009">2009</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/kiwi-pycon-2013.html" title="Kiwi PyCon 2013">2013</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/kiwi-pycon-2014.html" title="Kiwi PyCon 2014">2014</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/kiwi-pycon-2015.html" title="Kiwi PyCon 2015">2015</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/kiwi-pycon-2016.html" title="Kiwi PyCon 2016">2016</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/kiwi-pycon-2017.html" title="Kiwi PyCon 2017">2017</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/kiwi-pycon-2019.html" title="Kiwi PyCon 2019">2019</a>
</li>
</ul>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/kyivpy.html">Kyiv.py</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/minsk-python-meetup.html">Minsk Python Meetup</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/montreal-python.html">Montréal-Python</a>
</li>
<li role="presentation">
Moscow Python Conf
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/moscow-python-conf-2018.html" title="Moscow Python Conf 2018">2018</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/moscow-python-conf-2019.html" title="Moscow Python Conf 2019">2019</a>
</li>
</ul>
</li>
<li role="presentation">
NDC Oslo
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/ndc-oslo-2016.html" title="NDC Oslo 2016">2016</a>
</li>
</ul>
</li>
<li role="presentation">
North Bay Python
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/north-bay-python-2017.html" title="North Bay Python 2017">2017</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/north-bay-python-2018.html" title="North Bay Python 2018">2018</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/north-bay-python-2019.html" title="North Bay Python 2019">2019</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/north-bay-python-2023.html" title="North Bay Python 2023">2023</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/north-bay-python-2024.html" title="North Bay Python 2024">2024</a>
</li>
</ul>
</li>
<li role="presentation">
OdessaPy
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/odessapy-2018.html" title="OdessaPy 2018">2018</a>
</li>
</ul>
</li>
<li role="presentation">
OpenStack Pycon AU
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/openstack-pycon-au-2013.html" title="OpenStack Pycon AU 2013">2013</a>
</li>
</ul>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/philadelphia-python-users-group.html">Philadelphia Python Users Group</a>
</li>
<li role="presentation">
PiterPy
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/piterpy-2018.html" title="PiterPy 2018">2018</a>
</li>
</ul>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/plone-conference-2016-boston.html">Plone Conference 2016 Boston</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/puppy-meetup-zillow-2016-jan-13.html">PuPPy Meetup @ Zillow 2016 Jan 13</a>
</li>
<li role="presentation">
PyAstro
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/pyastro-2015.html" title="PyAstro 2015">2015</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pyastro-2016.html" title="PyAstro 2016">2016</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pyastro-2018.html" title="PyAstro 2018">2018</a>
</li>
</ul>
</li>
<li role="presentation">
PyBay
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/pybay-2016.html" title="PyBay 2016">2016</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pybay-2017.html" title="PyBay 2017">2017</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pybay-2018.html" title="PyBay 2018">2018</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pybay-2019.html" title="PyBay 2019">2019</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pybay-2020.html" title="PyBay 2020">2020</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pybay-2021.html" title="PyBay 2021">2021</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pybay-2023.html" title="PyBay 2023">2023</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pybay-2024.html" title="PyBay 2024">2024</a>
</li>
</ul>
</li>
<li role="presentation">
PyCaribbean
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/pycaribbean-2016.html" title="PyCaribbean 2016">2016</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycaribbean-2017.html" title="PyCaribbean 2017">2017</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycaribbean-2018.html" title="PyCaribbean 2018">2018</a>
</li>
</ul>
</li>
<li role="presentation">
PyCascades
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/pycascades-2018.html" title="PyCascades 2018">2018</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycascades-2019.html" title="PyCascades 2019">2019</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycascades-2021.html" title="PyCascades 2021">2021</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycascades-2022.html" title="PyCascades 2022">2022</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycascades-2023.html" title="PyCascades 2023">2023</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycascades-2024.html" title="PyCascades 2024">2024</a>
</li>
</ul>
</li>
<li role="presentation">
PyCode Conference
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/pycode-conference-2018.html" title="PyCode Conference 2018">2018</a>
</li>
</ul>
</li>
<li role="presentation">
PyColorado
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/pycolorado-2019.html" title="PyColorado 2019">2019</a>
</li>
</ul>
</li>
<li role="presentation">
PyCon APAC
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-apac-2014.html" title="PyCon APAC 2014">2014</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-apac-2015.html" title="PyCon APAC 2015">2015</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-apac-2016.html" title="PyCon APAC 2016">2016</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-apac-2018.html" title="PyCon APAC 2018">2018</a>
</li>
</ul>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-apac-2013-in-japan.html">PyCon APAC 2013 in Japan</a>
</li>
<li role="presentation">
PyCon AU
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-au-2010.html" title="PyCon AU 2010">2010</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-au-2011.html" title="PyCon AU 2011">2011</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-au-2012.html" title="PyCon AU 2012">2012</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-au-2013.html" title="PyCon AU 2013">2013</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-au-2014.html" title="PyCon AU 2014">2014</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-au-2015.html" title="PyCon AU 2015">2015</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-au-2016.html" title="PyCon AU 2016">2016</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-au-2017.html" title="PyCon AU 2017">2017</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-au-2018.html" title="PyCon AU 2018">2018</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-au-2019.html" title="PyCon AU 2019">2019</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-au-2020.html" title="PyCon AU 2020">2020</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-au-2021.html" title="PyCon AU 2021">2021</a>
</li>
</ul>
</li>
<li role="presentation">
PyCon Ar
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-ar-2011.html" title="PyCon Ar 2011">2011</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-ar-2012.html" title="PyCon Ar 2012">2012</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-ar-2013.html" title="PyCon Ar 2013">2013</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-ar-2014.html" title="PyCon Ar 2014">2014</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-ar-2015.html" title="PyCon Ar 2015">2015</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-ar-2016.html" title="PyCon Ar 2016">2016</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-ar-2018.html" title="PyCon Ar 2018">2018</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-ar-2019.html" title="PyCon Ar 2019">2019</a>
</li>
</ul>
</li>
<li role="presentation">
PyCon Balkan Belgrade
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-balkan-belgrade-2018.html" title="PyCon Balkan Belgrade 2018">2018</a>
</li>
</ul>
</li>
<li role="presentation">
PyCon Belarus
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-belarus-2015.html" title="PyCon Belarus 2015">2015</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-belarus-2016.html" title="PyCon Belarus 2016">2016</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-belarus-2017.html" title="PyCon Belarus 2017">2017</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-belarus-2018.html" title="PyCon Belarus 2018">2018</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-belarus-2019.html" title="PyCon Belarus 2019">2019</a>
</li>
</ul>
</li>
<li role="presentation">
PyCon CA
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-ca-2012.html" title="PyCon CA 2012">2012</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-ca-2013.html" title="PyCon CA 2013">2013</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-ca-2015.html" title="PyCon CA 2015">2015</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-ca-2016.html" title="PyCon CA 2016">2016</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-ca-2017.html" title="PyCon CA 2017">2017</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-ca-2018.html" title="PyCon CA 2018">2018</a>
</li>
</ul>
</li>
<li role="presentation">
PyCon CZ
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-cz-2016.html" title="PyCon CZ 2016">2016</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-cz-2017.html" title="PyCon CZ 2017">2017</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-cz-2018.html" title="PyCon CZ 2018">2018</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-cz-2019.html" title="PyCon CZ 2019">2019</a>
</li>
</ul>
</li>
<li role="presentation">
PyCon China
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-china-2019.html" title="PyCon China 2019">2019</a>
</li>
</ul>
</li>
<li role="presentation">
PyCon Colombia
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-colombia-2018.html" title="PyCon Colombia 2018">2018</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-colombia-2019.html" title="PyCon Colombia 2019">2019</a>
</li>
</ul>
</li>
<li role="presentation">
PyCon DE
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-de-2011.html" title="PyCon DE 2011">2011</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-de-2012.html" title="PyCon DE 2012">2012</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-de-2013.html" title="PyCon DE 2013">2013</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-de-2016.html" title="PyCon DE 2016">2016</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-de-2017.html" title="PyCon DE 2017">2017</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-de-2018.html" title="PyCon DE 2018">2018</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-de-2019.html" title="PyCon DE 2019">2019</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-de-2022.html" title="PyCon DE 2022">2022</a>
</li>
</ul>
</li>
<li role="presentation">
PyCon ES
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-es-2013.html" title="PyCon ES 2013">2013</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-es-2014.html" title="PyCon ES 2014">2014</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-es-2015.html" title="PyCon ES 2015">2015</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-es-2016.html" title="PyCon ES 2016">2016</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-es-2017.html" title="PyCon ES 2017">2017</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-es-2018.html" title="PyCon ES 2018">2018</a>
</li>
</ul>
</li>
<li role="presentation">
PyCon Estonia
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-estonia-2018.html" title="PyCon Estonia 2018">2018</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-estonia-2019.html" title="PyCon Estonia 2019">2019</a>
</li>
</ul>
</li>
<li role="presentation">
PyCon FR
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-fr-2013.html" title="PyCon FR 2013">2013</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-fr-2015.html" title="PyCon FR 2015">2015</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-fr-2016.html" title="PyCon FR 2016">2016</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-fr-2017.html" title="PyCon FR 2017">2017</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-fr-2018.html" title="PyCon FR 2018">2018</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-fr-2019.html" title="PyCon FR 2019">2019</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-fr-2023.html" title="PyCon FR 2023">2023</a>
</li>
</ul>
</li>
<li role="presentation">
PyCon Finland
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-finland-2011.html" title="PyCon Finland 2011">2011</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-finland-2015.html" title="PyCon Finland 2015">2015</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-finland-2016.html" title="PyCon Finland 2016">2016</a>
</li>
</ul>
</li>
<li role="presentation">
PyCon HK
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-hk-2017.html" title="PyCon HK 2017">2017</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-hk-2018.html" title="PyCon HK 2018">2018</a>
</li>
</ul>
</li>
<li role="presentation">
PyCon India
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-india-2012.html" title="PyCon India 2012">2012</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-india-2013.html" title="PyCon India 2013">2013</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-india-2014.html" title="PyCon India 2014">2014</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-india-2015.html" title="PyCon India 2015">2015</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-india-2016.html" title="PyCon India 2016">2016</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-india-2017.html" title="PyCon India 2017">2017</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-india-2018.html" title="PyCon India 2018">2018</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-india-2019.html" title="PyCon India 2019">2019</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-india-2020.html" title="PyCon India 2020">2020</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-india-2021.html" title="PyCon India 2021">2021</a>
</li>
</ul>
</li>
<li role="presentation">
PyCon Ireland
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-ireland-2015.html" title="PyCon Ireland 2015">2015</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-ireland-2016.html" title="PyCon Ireland 2016">2016</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-ireland-2017.html" title="PyCon Ireland 2017">2017</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-ireland-2018.html" title="PyCon Ireland 2018">2018</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-ireland-2019.html" title="PyCon Ireland 2019">2019</a>
</li>
</ul>
</li>
<li role="presentation">
PyCon Israel
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-israel-2016.html" title="PyCon Israel 2016">2016</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-israel-2017.html" title="PyCon Israel 2017">2017</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-israel-2018.html" title="PyCon Israel 2018">2018</a>
</li>
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-israel-2019.html" title="PyCon Israel 2019">2019</a>
</li>
</ul>
</li>
<li role="presentation">
PyCon Italia
<ul class="list-inline">
<li role="presentation">
<a href="https://pyvideo.org/events/pycon-italia-2014.html" title="PyCon Italia 2014">2014</a>
</li>