-
Notifications
You must be signed in to change notification settings - Fork 10
/
events_minimal_download.yml
1907 lines (1798 loc) · 54.8 KB
/
events_minimal_download.yml
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
# Historical of events scraped with "minimal_download: true"
# pyvideo_scarpe.py don't read this file
minimal_download:
# == [ 2012 ] =================================================================
- title: PyCon Ar 2012
dir: pycon-ar-2012
youtube_list:
- https://www.youtube.com/playlist?list=PLkuS0waF8kril9T9qQUAW6NCptNLZXmHc
- https://www.youtube.com/playlist?list=PLkuS0waF8krjwcRHzSJMq_nA67mCFi24T
- https://www.youtube.com/playlist?list=PLkuS0waF8krgk1ULTg6sGrEBMs46AfoMt
related_urls:
- label: "PyCon Argentina 2012 Brouchure"
url: https://es.scribd.com/document/116769116/PyCon-Argentina-2012-Brouchure
language: eng
dates:
begin: 2012-11-12
end: 2012-11-17
default: 2012-11-12
issue: 35
minimal_download: true
tags:
- title: PyCon India 2012
dir: pycon-india-2012
youtube_list:
- https://www.youtube.com/playlist?list=PL6GW05BfqWIdWaV_aP6kHJKFY0ybOOfoA
related_urls:
- label: Conference schedule
url: https://in.pycon.org/2012/index.html#schedule
language: eng
dates:
begin: 2012-09-28
end: 2012-09-30
default: 2012-09-28
issue: 516
minimal_download: true
tags:
- title: PyCon Japan 2012
dir: pycon-jp-2012
youtube_list:
- https://www.youtube.com/playlist?list=PLMkWB0UjwFGnG0fLNi1kyNqFI19s3kCeH
related_urls:
- label: Conference schedule
url: https://2012.pycon.jp/en/program/index.html
language: eng
dates:
begin: 2012-09-15
end: 2012-09-16
default: 2012-09-15
issue: 41
minimal_download: true
tags:
- title: PyCon Philippines 2012
dir: pycon-ph-2012
youtube_list:
- https://www.youtube.com/playlist?list=PLCBCxsuKTqkAPJFl4O8dTBRJdfHMuT76I
related_urls:
- label: Conference schedule (external web)
url: https://www.pydanny.com/pycon-philippines-day-1.html
language: eng
dates:
begin: 2012-06-30
end: 2012-07-01
default: 2012-06-30
issue: 616
minimal_download: true
tags:
# == [ 2013 ] =================================================================
- title: PyCon India 2013
dir: pycon-india-2013
youtube_list:
- https://www.youtube.com/playlist?list=PL6GW05BfqWIdsaaV35jcHWPWTI-DAw6Yn
related_urls:
- label: Conference schedule
url: https://in.pycon.org/2013/index.html#schedule
language: eng
dates:
begin: 2013-08-30
end: 2013-09-01
default: 2013-08-30
issue: 529
minimal_download: true
tags:
- title: EuroPython 2013
dir: europython-2013
youtube_list:
- https://www.youtube.com/playlist?list=PL8uoeex94UhF5drIP18ZB9uU3r2P_DARE
related_urls:
- label: Conference schedule
url: https://www.pycon.it/en/ep2013/
language: eng
dates:
begin: 2013-07-01
end: 2013-07-06
default: 2013-07-03
issue: 662
minimal_download: true
tags:
# == [ 2014 ] =================================================================
- title: PyCon India 2014
dir: pycon-india-2014
youtube_list:
- https://www.youtube.com/playlist?list=PL6GW05BfqWIfX0-YkKI7Ge5f9IKjOxirf
related_urls:
- label: Conference schedule
url: https://in.pycon.org/2014/index.html#schedule
language: eng
dates:
begin: 2014-09-27
end: 2014-09-28
default: 2014-09-27
issue: 534
minimal_download: true
tags:
- title: PyCon Japan 2014
dir: pycon-jp-2014
youtube_list:
- https://www.youtube.com/playlist?list=PLMkWB0UjwFGm4Ao5w2CKv24tl_Op_kxs5
related_urls:
- label: Conference schedule
url: https://pycon.jp/2014/schedule/
language: jpn
dates:
begin: 2014-09-12
end: 2014-09-15
default: 2014-09-12
issue: 43
minimal_download: true
tags:
- title: PyData New York City 2014
dir: pydata-new-york-city-2014
youtube_list:
# downloaded https://www.youtube.com/user/PyDataTV/videos and grep PyData NYC 2014
# grep -i "PyData NYC 2014" * -l | xargs -d '\n' grep -h 'watch?' | tr -d '"' | sed -e 's/url:/-/'
- https://www.youtube.com/watch?v=jPSP9aMs_3U
- https://www.youtube.com/watch?v=ryYuZziQ50c
- https://www.youtube.com/watch?v=3cFx9HKxCqk
- https://www.youtube.com/watch?v=ZL77pbWBZQA
- https://www.youtube.com/watch?v=E70AO8r5sMs
- https://www.youtube.com/watch?v=XNVgQ55wWxs
- https://www.youtube.com/watch?v=R5CoqldQMz4
- https://www.youtube.com/watch?v=WhoFbu9dBe0
- https://www.youtube.com/watch?v=VEo2shBuOrc
- https://www.youtube.com/watch?v=BoXW0kLCwsQ
- https://www.youtube.com/watch?v=1uVWjdAbgBg
- https://www.youtube.com/watch?v=k5uNhUomHU8
- https://www.youtube.com/watch?v=Lp_UdtQMsx4
- https://www.youtube.com/watch?v=XSXcz7rEzY4
- https://www.youtube.com/watch?v=jJO1s2Z-oAQ
- https://www.youtube.com/watch?v=jtkSaHC6Hy0
- https://www.youtube.com/watch?v=8T-sQztK6uc
- https://www.youtube.com/watch?v=PUsntnCp65c
- https://www.youtube.com/watch?v=ryZL4XNUmwo
- https://www.youtube.com/watch?v=9POxdONvzhs
- https://www.youtube.com/watch?v=nZ0L8DOo3V4
- https://www.youtube.com/watch?v=D3gZUyyYm78
- https://www.youtube.com/watch?v=MBH2qrwRhEE
- https://www.youtube.com/watch?v=heGtUhFm1-A
- https://www.youtube.com/watch?v=ntdjDlLH2B4
- https://www.youtube.com/watch?v=G4RmVni8nxc
- https://www.youtube.com/watch?v=Tcb2-sOU76M
- https://www.youtube.com/watch?v=wUhMmR1JgAw
- https://www.youtube.com/watch?v=6fFZgc2q9nw
- https://www.youtube.com/watch?v=mx0j7uBdD8k
- https://www.youtube.com/watch?v=4QpwcjD2Lpw
- https://www.youtube.com/watch?v=IQksDvFl2_8
- https://www.youtube.com/watch?v=s9waj52SdgE
- https://www.youtube.com/watch?v=uvP6aHOYY9c
- https://www.youtube.com/watch?v=_NVd8oxhzgA
- https://www.youtube.com/watch?v=PsjANO10KgM
- https://www.youtube.com/watch?v=-FDTK80zsXc
- https://www.youtube.com/watch?v=ylhwYXBlHHw
- https://www.youtube.com/watch?v=lwQNwbZX8V4
- https://www.youtube.com/watch?v=FjeIHfRHeY4
- https://www.youtube.com/watch?v=fHUZWgNm3vs
- https://www.youtube.com/watch?v=b6N7X_bN_Zk
- https://www.youtube.com/watch?v=ksaMXd3knZg
related_urls:
- label: Conference schedule
url: https://pydata.org/nyc2014/schedule/
language: eng
dates:
begin: 2014-11-22
end: 2014-11-23
default: 2014-11-22
issue: 405
minimal_download: true
tags:
- title: PyData Silicon Valley 2014
dir: pydata-sv-2014
youtube_list:
# downloaded https://www.youtube.com/user/PyDataTV/videos and grep PyData SV 2014
# grep -i "PyData SV 2014" * -l | xargs -d '\n' grep -h 'watch?' | tr -d '"' | sed -e 's/url:/-/'
- https://www.youtube.com/watch?v=9R9n7zpkauQ
- https://www.youtube.com/watch?v=od8U-XijzlQ
- https://www.youtube.com/watch?v=WD7b1jLeZZ4
- https://www.youtube.com/watch?v=VaV10VNZCLA
- https://www.youtube.com/watch?v=vE_CJTen15M
- https://www.youtube.com/watch?v=o7Tb7YhJZR0
- https://www.youtube.com/watch?v=t4zEeujVht8
- https://www.youtube.com/watch?v=vO1lTVVS2xo
- https://www.youtube.com/watch?v=gpMT17644mM
- https://www.youtube.com/watch?v=poQKuXgNd88
- https://www.youtube.com/watch?v=DrCKkQeU4kg
- https://www.youtube.com/watch?v=6RrDBKUlO4Q
- https://www.youtube.com/watch?v=Ayd4sqPH2DE
- https://www.youtube.com/watch?v=p7oFxz_NykQ
- https://www.youtube.com/watch?v=pHrwqLhAaMw
- https://www.youtube.com/watch?v=vyvxiljc5vA
- https://www.youtube.com/watch?v=ucwLrTb4iFY
- https://www.youtube.com/watch?v=RdhoN4VVqq8
- https://www.youtube.com/watch?v=wPBXDgMRF9M
- https://www.youtube.com/watch?v=cZEOdm83I78
- https://www.youtube.com/watch?v=qiydAZdB-o0
- https://www.youtube.com/watch?v=UP94gMK7fEc
- https://www.youtube.com/watch?v=PpBK4zIaFLE
- https://www.youtube.com/watch?v=KKoVeiQOmik
- https://www.youtube.com/watch?v=M0VCbhfQ3HQ
- https://www.youtube.com/watch?v=6JL-H2_xDLo
- https://www.youtube.com/watch?v=QPimD4gL0ak
- https://www.youtube.com/watch?v=5R3oFD07LWI
- https://www.youtube.com/watch?v=e3-DjsKhFug
- https://www.youtube.com/watch?v=1-Ni-pzTW2c
- https://www.youtube.com/watch?v=kmy-sfm3cC8
- https://www.youtube.com/watch?v=nVBD0jUp0uE
- https://www.youtube.com/watch?v=y3ZTKFZ-1QQ
- https://www.youtube.com/watch?v=-J9ZICyev5E
- https://www.youtube.com/watch?v=l-ZyeCKQu1I
- https://www.youtube.com/watch?v=T5CZyNwBa9c
- https://www.youtube.com/watch?v=29A-ifomodc
- https://www.youtube.com/watch?v=FgfKA-HJFI0
- https://www.youtube.com/watch?v=xnfnv6WT1Ng
- https://www.youtube.com/watch?v=wPEmoT018s8
related_urls:
- label: Conference schedule
url: https://pydata.org/sv2014/schedule/
language: eng
dates:
begin: 2014-05-02
end: 2014-05-04
default: 2014-05-02
issue: 406
minimal_download: true
tags:
# == [ 2015 ] =================================================================
- title: PyAstro 2015
dir: pyastro-2015
youtube_list:
- https://www.youtube.com/playlist?list=PL7P5HEbvYRSYciQ91uP2BRF3B-VXdc2dG
related_urls:
- label: Workshop proceedings
url: https://python-in-astronomy.github.io/2015/
language: eng
dates:
begin: 2015-04-20
end: 2015-04-20
default: 2015-04-24
issue: 512
minimal_download: true
tags:
- title: PyData Berlin 2015
dir: pydata-berlin-2015
youtube_list:
- https://www.youtube.com/playlist?list=PLGVZCDnMOq0pmTLkkMe4DIqLIOCMr9TMy
related_urls:
- label: Conference schedule
url: https://pydata.org/berlin2015/schedule.html
language: eng
dates:
begin: 2015-05-29
end: 2015-05-30
default: 2015-05-29
issue: 403
minimal_download: true
tags:
- title: PyData Dallas 2015
dir: pydata-dallas-2015
youtube_list:
- https://www.youtube.com/playlist?list=PLGVZCDnMOq0pX83sNsFy7X3xEjcsK9gXM
related_urls:
- label: Conference schedule
url: https://pydata.org/dal2015/schedule/
language: eng
dates:
begin: 2015-04-24
end: 2015-04-26
default: 2015-04-24
issue: 404
minimal_download: true
tags:
- title: PyCon Japan 2015
dir: pycon-jp-2015
youtube_list:
- https://www.youtube.com/playlist?list=PLMkWB0UjwFGkE3BIm4qpwaK5oPrmLLJoT
related_urls:
- label: Conference schedule
url: https://pycon.jp/2015/schedule/
language: jpn
dates:
begin: 2015-10-09
end: 2015-10-12
default: 2015-10-10
issue: 44
minimal_download: true
tags:
- title: PyData New York City 2015
dir: pydata-new-york-city-2015
youtube_list:
- https://www.youtube.com/playlist?list=PLGVZCDnMOq0ourWlul1F7aYE30VQPaMRL
related_urls:
- label: Conference schedule
url: https://pydata.org/nyc2015/schedule/
language: eng
dates:
begin: 2015-11-09
end: 2015-11-11
default: 2015-11-09
issue: 402
minimal_download: true
tags:
- title: PyCon Philippines 2015
dir: pycon-ph-2015
youtube_list:
- https://www.youtube.com/playlist?list=PLCBCxsuKTqkB4qypKQ1oKgmpTGRjqlYyS
related_urls:
- label: Conference schedule
url: https://pycon-2015.python.ph/schedule.html
language: eng
dates:
begin: 2015-06-04
end: 2015-06-05
default: 2015-06-04
issue: 615
minimal_download: true
tags:
# == [ 2016 ] =================================================================
- title: PyAstro 2016
dir: pyastro-2016
youtube_list:
- https://www.youtube.com/playlist?list=PL7P5HEbvYRSYdEp8i28NoVd7GeKvrBHXm
related_urls:
- label: Workshop proceedings
url: https://python-in-astronomy.github.io/2016/
language: eng
dates:
begin: 2016-03-21
end: 2016-03-25
default: 2016-03-21
issue: 511
minimal_download: true
tags:
- title: PyCon Singapore 2016
dir: pycon-sg-2016
youtube_list:
- https://www.youtube.com/playlist?list=PLECEw2eFfW7iTsIrldRO2b6NLEuRQYD2L
related_urls:
- label: Conference schedule
url: https://pycon.sg/archive/2016/schedule/index.html
language: eng
dates:
begin: 2016-06-23
end: 2016-06-23
default: 2016-06-23
issue: 29
minimal_download: true
tags:
- title: PyCon Philippines 2016
dir: pycon-ph-2016
youtube_list:
- https://www.youtube.com/playlist?list=PLCBCxsuKTqkCs_V098h4p6QcVZ7CJ7Lie
related_urls:
- label: Conference schedule
url: https://pycon-2016.python.ph/#schedule
language: eng
dates:
begin: 2016-02-27
end: 2016-02-28
default: 2016-02-27
issue: 614
minimal_download: true
tags:
# == [ 2017 ] =================================================================
- title: PyCon CA 2017
dir: pycon-ca-2017
youtube_list:
- https://www.youtube.com/playlist?list=PLFE1rxhwe5KYWc2m9948bonoKCdOwYw3L
related_urls:
- label: Conference schedule
url: https://2017.pycon.ca/schedule
language: eng
dates:
begin: 2017-11-18
end: 2017-11-21
default: 2017-11-18
issue: 484
minimal_download: true
tags:
- title: PyCon Ukraine 2017
dir: pycon-ukraine-2017
youtube_list:
- https://www.youtube.com/playlist?list=PLq8sY4Lwwt28IjX2wfRgVbZYt8q57W9zO
related_urls:
- label: Conference schedule
url: https://web.archive.org/web/20170705070602/https://ua.pycon.org/en/schedule.html
language: rus
dates:
begin: 2017-04-08
end: 2017-04-09
default: 2017-04-08
issue: 222
minimal_download: true
tags:
- title: PyCon Japan 2017
dir: pycon-jp-2017
youtube_list:
- https://www.youtube.com/playlist?list=PLMkWB0UjwFGmZacud6MiX_mcoiIFSwbmO
related_urls:
- label: Conference schedule
url: https://pycon.jp/2017/ja/schedule/
language: jpn
dates:
begin: 2017-09-07
end: 2017-09-08
default: 2017-09-10
issue: 371
minimal_download: true
tags:
- title: PyCon Korea 2017
dir: pycon-kr-2017
youtube_list:
- https://www.youtube.com/playlist?list=PLZPhyNeJvHRmvCnWMBZJiFXu9kDUcn5FG
related_urls:
- label: Conference schedule
url: https://www.pycon.kr/2017/program/schedule/
language: kor
dates:
begin: 2017-08-12
end: 2017-08-15
default: 2017-08-12
issue: 378
minimal_download: true
tags:
- title: PyCon Kenya 2017
dir: pycon-ke-2017
youtube_list:
- https://www.youtube.com/playlist?list=PLGMI6pYdNJXcaKJ_ai89bmiqfU_aRh9yI
related_urls:
- label: Conference schedule
url: https://web.archive.org/web/20180818151308/https://i2.wp.com/blog.leicunnstudio.com/wp-content/uploads/2017/11/pyconkeprog.png?ssl=1
language: eng
dates:
begin: 2017-09-28
end: 2017-09-28
default: 2017-09-29
issue: 380
minimal_download: true
tags:
- title: PyCon Nigeria 2017
dir: pycon-ng-2017
youtube_list:
- https://www.youtube.com/playlist?list=PLE2LJQvu0iDx0ZkTYPB3TQVIRUcYlcVQY
related_urls:
- label: PyCon Nigeria web
url: https://www.pycon.ng/
language: eng
dates:
begin: 2107-09-15
end: 2107-09-17
default: 2107-09-15
issue: 546
minimal_download: true
tags:
- title: Write the Docs Prague 2017
dir: writethedocs-eu-2017
youtube_list:
- https://www.youtube.com/playlist?list=PLZAeFn6dfHplBYPCwJt6ItkMDt7JSgUiL
related_urls:
- label: Conference schedule
url: http://www.writethedocs.org/conf/eu/2017/schedule/
language: eng
dates:
begin: 2017-09-09
end: 2017-09-09
default: 2017-09-11
issue: 413
minimal_download: true
tags:
- title: Write the Docs Portland 2017
dir: writethedocs-na-2017
youtube_list:
- https://www.youtube.com/playlist?list=PLZAeFn6dfHpkBld-70TsOoYToM3CaTxRC
related_urls:
- label: Conference schedule
url: http://www.writethedocs.org/conf/na/2017/
language: eng
dates:
begin: 2017-05-13
end: 2017-05-16
default: 2017-05-15
issue: 414
minimal_download: true
tags:
- title: Python Brasil 2017
dir: pythonbrasil-2017
youtube_list:
- https://www.youtube.com/playlist?list=PLDC3uVLxaEQ0SdTRwwZm7jCTXgAOXcgfn
related_urls:
- label: Conference schedule
url: http://2017.pythonbrasil.org.br/#schedule
language: por
dates:
begin: 2017-10-06
end: 2017-10-11
default: 2017-10-06
issue: 446
minimal_download: true
tags:
- title: JupyterCon 2017
dir: jupytercon-2017
youtube_list:
- https://www.youtube.com/playlist?list=PL055Epbe6d5aP6Ru42r7hk68GTSaclYgi
related_urls:
- label: Conference schedule
url: https://conferences.oreilly.com/jupyter/jup-ny-2017/public/schedule/grid/public/2017-08-24
language: eng
dates:
begin: 2017-08-22
end: 2017-08-25
default: 2017-08-24
issue: 467
minimal_download: true
tags:
- title: PyCaribbean 2017
dir: pycaribbean-2017
youtube_list:
- https://www.youtube.com/playlist?list=PLW4Oc02uR1b2o7FG8xjCSTb70Y4sLUJdK
related_urls:
- label: Conference schedule
url: https://web.archive.org/web/20170504140840/http://pycaribbean.com:80/schedule
language: eng
dates:
begin: 2017-02-18
end: 2017-02-19
default: 2017-02-18
issue: 477
minimal_download: true
tags:
- title: PyCon Taiwan 2017
dir: pycon-tw-2017
youtube_list:
- https://www.youtube.com/playlist?list=PLqtzN042Qpffip6u4_WUTRXxFZDgdgrPV
related_urls:
- label: Conference schedule
url: https://tw.pycon.org/2017/en-us/events/schedule/
dates:
begin: 2017-06-09
end: 2017-06-11
default: 2017-06-09
issue: 411
minimal_download: true
tags:
- title: PyCon Philippines 2017
dir: pycon-ph-2017
youtube_list:
- https://www.youtube.com/playlist?list=PLCBCxsuKTqkB2u-P7KMNNkHYXzKBXEyZc
related_urls:
- label: Conference schedule
url: https://pycon-2017.python.ph/#schedule
language: eng
dates:
begin: 2017-02-25
end: 2017-02-26
default: 2017-02-25
issue: 613
minimal_download: true
tags:
- title: PyData Warsaw 2017
dir: pydata-warsaw-2017
youtube_list:
- https://www.youtube.com/playlist?list=PLGVZCDnMOq0oe0eD-edj_2CuBIZ938bWT
related_urls:
- label: Conference schedule
url: https://pydata.org/warsaw2017/schedule/
language: eng
dates:
begin: 2017-10-18
end: 2017-10-20
default: 2017-10-19
issue: 424
minimal_download: true
tags:
- title: Pyninsula 2017
dir: pyninsula-2017
youtube_list:
- https://www.youtube.com/playlist?list=PLG7O5yXq5eayxiq1EVBE906gVJ4UiTxG9
related_urls:
- label: Group web
url: http://pyninsula.org/
- label: Group meeting schedule
url: https://www.meetup.com/Pyninsula-Python-Peninsula-Meetup/
language: eng
issue: 642
minimal_download: true
tags:
# Duplicate
- title: North Bay Python 2017
dir: north-bay-python-2017
youtube_list:
- https://www.youtube.com/playlist?list=PLaeNpBNgqQWvWl273wwS3f-iEgDWNuoxN
related_urls:
- label: Group web
url: https://2017.northbaypython.org/
- label: Group meeting schedule
url: https://2017.northbaypython.org/schedule/
language: eng
issue: 637
minimal_download: true
tags:
- title: PyCon India 2017
dir: pycon-india-2017
youtube_list:
- https://www.youtube.com/playlist?list=PL6GW05BfqWIebMtGTSzrafZi2HWORxzu0
related_urls:
- label: Conference schedule
url: https://in.pycon.org/2017/#schedule
language: eng
dates:
begin: 2017-11-02
end: 2017-11-05
default: 2017-11-04
issue: 659
minimal_download: true
tags:
- title: Python Sudeste 2017
dir: python-sudeste-2017
youtube_list:
- https://www.youtube.com/playlist?list=PLA-HOyS1nFHd3Ui4fSuDGhgsie8TD8nK0
related_urls:
- label: Conference schedule
url: https://2017.pythonsudeste.org/#schedule
language: por
dates:
begin: 2017-05-05
end: 2017-05-07
default: 2017-05-05
issue: 822
minimal_download: true
tags:
# == [ 2018 ] =================================================================
- title: PyData Berlin 2018
dir: pydata-berlin-2018
youtube_list:
- https://www.youtube.com/playlist?list=PLGVZCDnMOq0oQh7daBKy1AW5Q34d0LDsC
related_urls:
- label: Conference schedule
url: https://pydata.org/berlin2018/schedule/
language: eng
dates:
begin: 2018-07-06
end: 2018-07-08
default: 2018-07-06
issue: 531
minimal_download: true
tags:
- title: PyData London 2018
dir: pydata-london-2018
youtube_list:
- https://www.youtube.com/playlist?list=PLGVZCDnMOq0ovNxfxOqYcBcQOIny9Zvb-
related_urls:
- label: Conference schedule
url: https://pydata.org/london2018/schedule/
language: eng
dates:
begin: 2018-04-27
end: 2018-04-29
default: 2018-04-27
issue: 506
minimal_download: true
tags:
- title: EuroPython 2018
dir: europython-2018
youtube_list:
- https://www.youtube.com/playlist?list=PL8uoeex94UhG24HeepNtb8G4evYvJNR38
related_urls:
- label: Conference schedule
url: https://ep2018.europython.eu/p3/schedule/ep2018/
language: eng
dates:
begin: 2018-07-23
end: 2018-07-29
default: 2018-07-25
issue: 527
minimal_download: true
tags:
- title: PyOhio 2018
dir: pyohio-2018
youtube_list:
- https://www.youtube.com/playlist?list=PL2k6bbM_wgjvY02EFUMhwHRyaSaEokT2B
related_urls:
- label: Conference schedule
url: https://www.pyohio.org/2018/schedule/
# https://www.pyohio.org/2018/schedule/conference.json
language: eng
dates:
begin: 2018-07-28
end: 2018-07-29
default: 2018-07-28
issue: 522
minimal_download: true
tags:
- title: SciPy 2018
dir: scipy-2018
youtube_list:
- https://www.youtube.com/playlist?list=PLYx7XA2nY5Gd-tNhm79CNMe_qvi35PgUR
related_urls:
- label: Conference schedule
url: https://scipy2018.scipy.org/ehome/299527/721463/
- label: Conference slides
url: https://github.com/deniederhut/Slides-SciPyConf-2018
language: eng
dates:
begin: 2018-07-11
end: 2018-07-15
default: 2018-07-09
issue: 524
minimal_download: true
tags:
- title: PyCon Ukraine 2018
dir: pycon-ukraine-2018
youtube_list:
- https://www.youtube.com/playlist?list=PLq8sY4Lwwt2_8pcWVl6hC80_wwGZt_2zS
related_urls:
- label: Conference schedule
url: https://2018.uapycon.org/#schedule
language: rus
dates:
begin: 2018-04-28
end: 2018-04-29
default: 2018-04-28
issue: 559
minimal_download: true
tags:
- title: PyData Delhi 2018
dir: pydata-delhi-2018
youtube_list:
- https://www.youtube.com/watch?v=mCQYXHJKZW8
- https://www.youtube.com/watch?v=bTVOF64_Uq0
- https://www.youtube.com/watch?v=jtxc4bifzAo
- https://www.youtube.com/watch?v=HauxN2ZEIeE
related_urls:
- label: Conference schedule
url: https://docs.google.com/spreadsheets/d/e/2PACX-1vT7wSZ4z4Vr__D06TflKPlyk49CFfFcJ-WfP-XARavtoB3xLPEQjIuk48pvwpShyT7DpBmPiC5GieCS/pubhtml?gid=0&single=true
language: eng
dates:
begin: 2018-08-11
end: 2018-08-12
default: 2018-08-11
issue: 563
minimal_download: true
tags:
- title: PyCon Russia 2018
dir: pycon-ru-2018
youtube_list:
- https://www.youtube.com/playlist?list=PLRdS-n5seLRp2es9T9CHzS1W1-apIezYB
related_urls:
- label: Conference content
url: http://pycon.ru/2018/en/program/content/
language: rus
dates:
begin: 2018-06-22
end: 2018-06-23
default: 2018-06-22
issue: 562
minimal_download: true
tags:
- title: PyCon APAC 2018
dir: pycon-apac-2018
youtube_list:
- https://www.youtube.com/playlist?list=PLMrPHnpQRHYY23mWiF7415gvVOXi1G83d
related_urls:
- label: Conference schedule
url: https://pycon.sg/schedule/
language: eng
dates:
begin: 2018-05-31
end: 2018-06-02
default: 2018-06-01
issue: 510
minimal_download: true
tags:
- title: PyCon ZA 2018
dir: pycon-za-2018
youtube_list:
- https://www.youtube.com/playlist?list=PLGjWYNrNnSuc78h5x23A5mLAzWlCl9LGf
related_urls:
- label: Conference schedule
url: https://2018.za.pycon.org/schedule/
language: eng
dates:
begin: 2018-10-11
end: 2018-10-12
default: 2018-10-11
issue: 588
minimal_download: true
tags:
- title: PyCon UK 2018
dir: pycon-uk-2018
youtube_list:
# 2018-09-15 # TODO: Add dates to lists
- https://www.youtube.com/watch?v=PCIBNnU90Ss&list=PLrkpavSsBQZ6RqewjANdmC94nsXRnmKMc
- https://www.youtube.com/watch?v=BC0agLto2tQ&list=PLrkpavSsBQZ6jA7Jg65nfKIyfOaeMJQXU
- https://www.youtube.com/watch?v=-weU0Zy4Yd8&list=PLrkpavSsBQZ5cLFUhjj9N8nTCHh2-nlQh
# 2018-09-16
- https://www.youtube.com/watch?v=0OcHs9FGvdA&list=PLrkpavSsBQZ4_W9i0RvM4ebvnC1GHuhVI
- https://www.youtube.com/watch?v=oXGWOoiMe2w&list=PLrkpavSsBQZ4NgL8kMaXDu2zdZvB0lJvG
- https://www.youtube.com/watch?v=p8895Xe5G6w&list=PLrkpavSsBQZ5m7vf3v-3jZRyZeM1CZF5F
- https://www.youtube.com/watch?v=n_Sp2hciNCQ&list=PLrkpavSsBQZ6jV1_075I2FRcmg6Qv8-LO
# 2018-09-17
- https://www.youtube.com/watch?v=kq9wOv545lE&list=PLrkpavSsBQZ6eHsOKzfNZK2-NberFDNqs
- https://www.youtube.com/watch?v=R-6n-WGMOU8&list=PLrkpavSsBQZ4VLxjAGMCkst6yau6aZkpN
# 2018-09-18
- https://www.youtube.com/watch?v=dQWdIxpvT5I&list=PLrkpavSsBQZ5BaUHxOd17g0deE8hgfrht
- https://www.youtube.com/watch?v=5LuvB3bD-QY&list=PLrkpavSsBQZ5ph6EdkC_W9dso02rOZXwE
# 2018-09-19
- https://www.youtube.com/watch?v=76Woe9QHzcs&list=PLrkpavSsBQZ6CyfT1HxBIR30x-XDyGHJn
# sponsor
- https://www.youtube.com/watch?v=BzYI5xVvNCk&list=PLrkpavSsBQZ6qwlOwBn5zAQ-sjsMP0OYt
related_urls:
- label: Conference schedule
url: http://2018.pyconuk.org/schedule/
language: eng
dates:
begin: 2018-09-15
end: 2018-09-19
default: 2018-09-15
issue: 590
minimal_download: true
tags:
- title: PyCon Thailand 2018
dir: pycon-thailand-2018
youtube_list:
- https://www.youtube.com/playlist?list=PLTv50MjNM7OpbcJbEs7EtfYGzliyPcMrV
related_urls:
- label: Conference schedule
url: https://th.pycon.org/en/schedule/
language: null
dates:
begin: 2018-06-15
end: 2018-06-17
default: 2018-06-16
issue: 592
minimal_download: true
tags:
- title: PyCon Philippines 2018
dir: pycon-ph-2018
youtube_list:
- https://www.youtube.com/playlist?list=PLCBCxsuKTqkD2kbRhbnckF62aiGzL9ar5
related_urls:
- label: Conference schedule
url: https://pycon-2018.python.ph//#schedule-section
language: eng
dates:
begin: 2018-02-24
end: 2018-02-25
default: 2018-02-24
issue: 612
minimal_download: true
tags:
- title: PyCon Korea 2018
dir: pycon-kr-2018
youtube_list:
- https://www.youtube.com/playlist?list=PLZPhyNeJvHRmnMr5yucZ9Eu-yVhjRRsOM
related_urls:
- label: Conference schedule
url: https://www.pycon.kr/2018/en/program/schedule/
language: kor
dates:
begin: 2018-08-18
end: 2018-08-19
default: 2018-08-18
issue: 617
minimal_download: true
tags:
- title: PyCon Italia 2018
# dir: pycon-italia-full
# grep '"recorded": "2018-' * -l | xargs -d '\n' grep -h 'watch?' | tr -d '"' | sed -e 's/url:/-/'
dir: pycon-italia-2018
youtube_list:
# ~ - https://www.youtube.com/user/pyconitalia/videos
- https://www.youtube.com/watch?v=-UzMJiNLpG8
- https://www.youtube.com/watch?v=RhtXHI5KRzw
- https://www.youtube.com/watch?v=bO2lrE3gzFo
- https://www.youtube.com/watch?v=ja09MfzBGZ0
- https://www.youtube.com/watch?v=EEdRP9PUmPg
- https://www.youtube.com/watch?v=yGYDH1t8d4k
- https://www.youtube.com/watch?v=JnVUhQi90-w
- https://www.youtube.com/watch?v=kMQIP83e0l0
- https://www.youtube.com/watch?v=MhNcE7jXrcY
- https://www.youtube.com/watch?v=gd-nxA_qb8I
- https://www.youtube.com/watch?v=K-FNSL2SzcY
- https://www.youtube.com/watch?v=rK4rGrhIWsk
- https://www.youtube.com/watch?v=NgvdpR9ySR4
- https://www.youtube.com/watch?v=nFlTzPl1lfA
- https://www.youtube.com/watch?v=2jKj7YC-IXE
- https://www.youtube.com/watch?v=HifBcFuKC9U
- https://www.youtube.com/watch?v=8zCXszF_y1U
- https://www.youtube.com/watch?v=Xy4W-srVSGc
- https://www.youtube.com/watch?v=t39lnVSROpQ
- https://www.youtube.com/watch?v=-wFf73rBdPE
- https://www.youtube.com/watch?v=hjzQrjbGZi0
- https://www.youtube.com/watch?v=QVGHS3frwzw
- https://www.youtube.com/watch?v=FobedfVmMSo
- https://www.youtube.com/watch?v=nAL0RoHJSTc
- https://www.youtube.com/watch?v=-E60tXVMUjU
- https://www.youtube.com/watch?v=HPQQng93wXk
- https://www.youtube.com/watch?v=54Bq9Qt-cBY
- https://www.youtube.com/watch?v=4R656lpy3Kk
- https://www.youtube.com/watch?v=Z6DxKJsylJY
- https://www.youtube.com/watch?v=JiJ5a4CXRF8
- https://www.youtube.com/watch?v=0ZwK0_N1ug0
- https://www.youtube.com/watch?v=Yapdso_6EGA
- https://www.youtube.com/watch?v=m_CWNZ870eI
- https://www.youtube.com/watch?v=1Lfa7FEK3hM
- https://www.youtube.com/watch?v=etUlUnEOuVk
- https://www.youtube.com/watch?v=Y759HZI7JJo
- https://www.youtube.com/watch?v=7PnM3DOLOo0
- https://www.youtube.com/watch?v=iA5gD8ZKMQ4
- https://www.youtube.com/watch?v=vrXvLFK9-jI
- https://www.youtube.com/watch?v=DFYnIa4bEkE
- https://www.youtube.com/watch?v=67qGS4SJx1M
- https://www.youtube.com/watch?v=wSHdhJc165s
- https://www.youtube.com/watch?v=AA2QyQI3rZs
- https://www.youtube.com/watch?v=OsyG2WQ_5V8
- https://www.youtube.com/watch?v=JMus67jDSCg
- https://www.youtube.com/watch?v=HVd218XV4mY
- https://www.youtube.com/watch?v=60ZLDsUEehM
- https://www.youtube.com/watch?v=33n-Wb1bpzU
- https://www.youtube.com/watch?v=LMYdF9bcyUg
- https://www.youtube.com/watch?v=UHdw2ay2SdU
- https://www.youtube.com/watch?v=ixs9XutuOSA
- https://www.youtube.com/watch?v=2djFmeZRk6A