forked from JesperDramsch/python-deadlines
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlegacy.yml
More file actions
7651 lines (7099 loc) · 187 KB
/
Copy pathlegacy.yml
File metadata and controls
7651 lines (7099 loc) · 187 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
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
---
- conference: Wagtail Space US
year: 2018
link: https://web.archive.org/web/20180531043322/https://us.wagtail.space/
cfp: None
place: Philadelphia, USA
start: 2018-06-14
end: 2018-06-16
mastodon: https://fosstodon.org/@wagtail
sub: WEB
location:
- title: Wagtail Space US 2018
latitude: 39.9533
longitude: -75.198
- conference: Wagtail Space Netherlands
year: 2018
link: https://web.archive.org/web/20171219231516/http://www.wagtail.space/
cfp: None
place: Arnhem, Netherlands
start: 2018-03-14
end: 2018-03-16
mastodon: https://fosstodon.org/@wagtail
sub: WEB
location:
- title: Wagtail Space Netherlands 2018
latitude: 51.984257
longitude: 5.9108573
- conference: Wagtail Space Netherlands
year: 2017
link: https://web.archive.org/web/20161222235503/https://www.wagtail.space/
cfp: None
place: Arnhem, Netherlands
start: 2017-03-21
end: 2017-03-25
mastodon: https://fosstodon.org/@wagtail
sub: WEB
location:
- title: Wagtail Space Netherlands 2017
latitude: 51.984257
longitude: 5.9108573
- conference: Wagtail Space Minsk
year: 2018
link: https://minsk.wagtail.space/
cfp: None
place: Minsk, Belarus
start: 2018-10-27
end: 2018-10-28
mastodon: https://fosstodon.org/@wagtail
sub: WEB
location:
- title: Wagtail Space Minsk 2018
latitude: 53.8901239
longitude: 27.5693855
- conference: Swiss Python Summit
year: 2018
link: https://web.archive.org/web/20180205001500/http://www.python-summit.ch/
cfp: '2017-10-31 23:59:00'
place: Rapperswil, Switzerland
start: 2018-02-16
end: 2018-02-16
sub: PY
location:
- title: Swiss Python Summit 2018
latitude: 47.2266532
longitude: 8.8164042
- conference: Swiss Python Summit
year: 2017
link: https://web.archive.org/web/20170214143104/http://www.python-summit.ch/
cfp: '2016-10-31 23:59:00'
place: Rapperswil, Switzerland
start: 2017-02-17
end: 2017-02-17
sub: PY
location:
- title: Swiss Python Summit 2017
latitude: 47.2266532
longitude: 8.8164042
- conference: Swiss Python Summit
year: 2016
link: https://web.archive.org/web/20160316131658/http://www.python-summit.ch/
cfp: '2015-10-31 23:59:00'
place: Rapperswil, Switzerland
start: 2016-02-05
end: 2016-02-06
sub: PY
location:
- title: Swiss Python Summit 2016
latitude: 47.2266532
longitude: 8.8164042
- conference: SciPy US
alt_name: SciPy
year: 2018
link: https://web.archive.org/web/20190625030722/https://scipy2018.scipy.org/
cfp: '2018-02-15 23:59:00'
place: Austin, USA
start: 2018-07-09
end: 2018-07-15
sub: SCIPY
location:
- title: SciPy US 2018
latitude: 30.2711286
longitude: -97.7436995
- conference: SciPy US
alt_name: SciPy
year: 2017
link: https://web.archive.org/web/20190502153803/https://scipy2017.scipy.org/
cfp: '2017-03-27 23:59:00'
timezone: America/Chicago
place: Austin, USA
start: 2017-07-10
end: 2017-07-16
sub: SCIPY
location:
- title: SciPy US 2017
latitude: 30.2711286
longitude: -97.7436995
- conference: SciPy US
alt_name: SciPy
year: 2016
link: https://web.archive.org/web/20190505024043/https://scipy2016.scipy.org/
cfp: '2016-04-01 23:59:00'
place: Austin, USA
start: 2016-07-10
end: 2016-07-16
sub: SCIPY
location:
- title: SciPy US 2016
latitude: 30.2711286
longitude: -97.7436995
- conference: SciPy US
alt_name: SciPy
year: 2015
link: https://web.archive.org/web/20190625031421/https://scipy2015.scipy.org/
cfp: '2015-04-10 23:59:00'
place: Austin, USA
start: 2015-07-06
end: 2015-07-12
sub: SCIPY
location:
- title: SciPy US 2015
latitude: 30.2711286
longitude: -97.7436995
- conference: SciPy US
alt_name: SciPy
year: 2014
link: https://web.archive.org/web/20140625194831/https://conference.scipy.org/scipy2014/
cfp: '2014-04-01 23:59:00'
place: Austin, USA
start: 2014-07-06
end: 2014-07-12
sub: SCIPY
location:
- title: SciPy US 2014
latitude: 30.2711286
longitude: -97.7436995
- conference: SciPy US
alt_name: SciPy
year: 2013
link: https://web.archive.org/web/20130621023952/http://conference.scipy.org/scipy2013/
cfp: '2013-03-20 23:59:00'
place: Austin, USA
start: 2013-06-24
end: 2013-06-29
sub: SCIPY
location:
- title: SciPy US 2013
latitude: 30.2711286
longitude: -97.7436995
- conference: SciPy US
alt_name: SciPy
year: 2012
link: https://web.archive.org/web/20120621023952/http://conference.scipy.org/scipy2012/
cfp: '2012-04-30 23:59:00'
place: Austin, USA
start: 2012-07-16
end: 2012-07-21
sub: SCIPY
location:
- title: SciPy US 2012
latitude: 30.2711286
longitude: -97.7436995
- conference: SciPy US
alt_name: SciPy
year: 2011
link: https://web.archive.org/web/20110621023952/http://conference.scipy.org/scipy2011/
cfp: '2011-04-24 23:59:00'
place: Austin, USA
start: 2011-07-11
end: 2011-07-16
sub: SCIPY
location:
- title: SciPy US 2011
latitude: 30.2711286
longitude: -97.7436995
- conference: SciPy US
alt_name: SciPy
year: 2010
link: https://web.archive.org/web/20100621023952/http://conference.scipy.org/scipy2010/
cfp: '2010-04-11 23:59:00'
place: Austin, USA
start: 2010-06-28
end: 2010-07-03
sub: SCIPY
location:
- title: SciPy US 2010
latitude: 30.2711286
longitude: -97.7436995
- conference: SciPy US
alt_name: SciPy
year: 2009
link: https://web.archive.org/web/20090621023952/http://conference.scipy.org/scipy2009/
cfp: '2009-07-03 23:59:00'
place: Pasadena, USA
start: 2009-08-18
end: 2009-08-23
sub: SCIPY
location:
- title: SciPy US 2009
latitude: 34.1476507
longitude: -118.144155
- conference: SciPy US
alt_name: SciPy
year: 2008
link: https://web.archive.org/web/20080621023952/http://conference.scipy.org/scipy2008/
cfp: '2008-06-30 23:59:00'
place: Pasadena, USA
start: 2008-08-19
end: 2008-08-24
sub: SCIPY
location:
- title: SciPy US 2008
latitude: 34.1476507
longitude: -118.144155
- conference: SciPy US
alt_name: SciPy
year: 2007
link: https://web.archive.org/web/20070426090312/http://www.scipy.org/SciPy2007
cfp: '2007-07-27 23:59:00'
place: Pasadena, USA
start: 2007-08-14
end: 2007-08-18
sub: SCIPY
location:
- title: SciPy US 2007
latitude: 34.1476507
longitude: -118.144155
- conference: SciPy US
alt_name: SciPy
year: 2006
link: https://web.archive.org/web/20060805100237/http://www.scipy.org/SciPy2006/
cfp: '2006-07-07 23:59:00'
place: Pasadena, USA
start: 2006-08-17
end: 2006-08-18
sub: SCIPY
location:
- title: SciPy US 2006
latitude: 34.1476507
longitude: -118.144155
- conference: SciPy US
alt_name: SciPy
year: 2005
link: https://web.archive.org/web/20111021085638/http://scipy.org/Developer_Zone/Conferences/SciPy2005
cfp: '2005-07-29 23:59:00'
place: Pasadena, USA
start: 2005-09-22
end: 2005-09-23
sub: SCIPY
location:
- title: SciPy US 2005
latitude: 34.1476507
longitude: -118.144155
- conference: SciPy US
alt_name: SciPy
year: 2004
link: https://web.archive.org/web/20041210084850/http://www.scipy.org/wikis/scipy04
cfp: '2004-07-23 23:59:00'
place: Pasadena, USA
start: 2004-09-02
end: 2004-09-03
sub: SCIPY
location:
- title: SciPy US 2004
latitude: 34.1476507
longitude: -118.144155
- conference: SciPy US
alt_name: SciPy Workshop
year: 2003
link: https://web.archive.org/web/20031207151811/http://www.scipy.org/site_content/scipy03/
cfp: None
place: Pasadena, USA
start: 2003-09-11
end: 2003-09-12
sub: SCIPY
location:
- title: SciPy US 2003
latitude: 34.1476507
longitude: -118.144155
- conference: SciPy US
alt_name: SciPy Workshop
year: 2002
link: https://web.archive.org/web/20021030003450/http://www.scipy.org/site_content/scipy02/
cfp: None
place: Pasadena, USA
start: 2002-09-05
end: 2002-09-06
sub: SCIPY
location:
- title: SciPy US 2002
latitude: 34.1476507
longitude: -118.144155
- conference: SciPy Latin America
alt_name: SciPyLA
year: 2018
link: https://web.archive.org/web/20180518213755/http://conf.scipyla.org/scipyla2018/
cfp: '2018-07-22 00:07:00'
timezone: UTC
place: Curitiba, Brazil
start: 2018-08-29
end: 2018-09-01
sub: SCIPY
location:
- title: SciPy Latin America 2018
latitude: -25.4295963
longitude: -49.2712724
- conference: SciPy Latin America
alt_name: SciPyLA
year: 2016
link: https://web.archive.org/web/20160518213755/http://conf.scipyla.org/scipyla2016/
cfp: '2016-04-08 23:59:00'
place: Florianópolis, Brazil
start: 2016-05-16
end: 2016-05-20
sub: SCIPY
location:
- title: SciPy Latin America 2016
latitude: -27.5973002
longitude: -48.5496098
- conference: SciPy Latin America
year: 2015
link: https://web.archive.org/web/20150508131405/http://conf.scipyla.org/
cfp: '2015-04-13 23:59:00'
place: Posadas, Argentina
start: 2015-05-20
end: 2015-05-22
sub: SCIPY
location:
- title: SciPy Latin America 2015
latitude: -27.4035083
longitude: -55.949711812781445
- conference: SciPy Latin America
alt_name: SciPyCon Argentina
year: 2014
link: https://web.archive.org/web/20141016082426/http://scipycon.com.ar/
cfp: None
place: Bahía Blanca, Argentina
start: 2014-10-20
end: 2014-10-24
sub: SCIPY
location:
- title: SciPy Latin America 2014
latitude: -38.7176522
longitude: -62.2654871
- conference: SciPy Latin America
alt_name: SciPyCon Argentina
year: 2013
link: https://web.archive.org/web/20210307212917/https://www.scipy.lat/conf/2013/
cfp: None
place: Puerto Madryn, Argentina
start: 2013-05-16
end: 2013-05-18
sub: SCIPY
location:
- title: SciPy Latin America 2013
latitude: -42.7729674
longitude: -65.0366104
- conference: SciPy India
year: 2018
link: https://web.archive.org/web/20190424124043/https://scipy.in/2018
cfp: '2018-12-03 23:59:00'
place: Mumbai, India
start: 2018-12-21
end: 2018-12-22
sub: SCIPY
location:
- title: SciPy India 2018
latitude: 18.9733536
longitude: 72.82810491917377
- conference: SciPy India
year: 2017
link: https://web.archive.org/web/20171005212148/http://scipy.in/2017
cfp: '2017-11-10 23:59:00'
place: Mumbai, India
start: 2017-11-29
end: 2017-11-30
sub: SCIPY
location:
- title: SciPy India 2017
latitude: 18.9733536
longitude: 72.82810491917377
- conference: SciPy India
year: 2016
link: https://web.archive.org/web/20170629091110/http://scipy.in/2016
cfp: '2016-11-28 23:59:00'
place: Mumbai, India
start: 2016-12-10
end: 2016-12-11
sub: SCIPY
location:
- title: SciPy India 2016
latitude: 18.9733536
longitude: 72.82810491917377
- conference: SciPy India
year: 2015
link: https://web.archive.org/web/20151222204316/http://scipy.in/2015
cfp: '2015-10-15 23:59:00'
place: Mumbai, India
start: 2015-12-14
end: 2015-12-16
sub: SCIPY
location:
- title: SciPy India 2015
latitude: 18.9733536
longitude: 72.82810491917377
- conference: SciPy India
year: 2014
link: https://web.archive.org/web/20141222103930/http://scipy.in/2014
cfp: '2014-10-15 23:59:00'
place: Mumbai, India
start: 2014-12-05
end: 2014-12-07
sub: SCIPY
location:
- title: SciPy India 2014
latitude: 18.9733536
longitude: 72.82810491917377
- conference: SciPy India
year: 2013
link: https://web.archive.org/web/20131023113605/http://scipy.in/2013
cfp: '2013-12-02 23:59:00'
place: Mumbai, India
start: 2013-12-13
end: 2013-12-15
sub: SCIPY
location:
- title: SciPy India 2013
latitude: 18.9733536
longitude: 72.82810491917377
- conference: SciPy India
year: 2012
link: https://web.archive.org/web/20140108235207/http://scipy.in/2012
cfp: '2012-11-01 23:59:00'
place: Mumbai, India
start: 2012-12-27
end: 2012-12-29
sub: SCIPY
location:
- title: SciPy India 2012
latitude: 18.9733536
longitude: 72.82810491917377
- conference: RuPy
alt_name: RuPy - Budapest Edition
year: 2013
link: https://web.archive.org/web/20130820170135/http://13.rupy.eu/
cfp: '2013-07-31 23:59:00'
place: Budapest, Hungary
start: 2013-10-11
end: 2013-10-13
sub: PY
location:
- title: RuPy 2013
latitude: 47.48138955
longitude: 19.14609412691246
- conference: RuPy
alt_name: RuPy - Brazil Edition
year: 2012
link: https://web.archive.org/web/20121205070033/http://rupy.com.br/
cfp: '2012-07-31 23:59:00'
place: São Paulo, Brazil
start: 2012-12-08
end: 2012-12-09
sub: PY
location:
- title: RuPy 2012
latitude: -1.2043218
longitude: -47.1583944
- conference: RuPy
alt_name: RuPy - Brno Edition
year: 2012
link: https://web.archive.org/web/20121207203445/http://12.rupy.eu/
cfp: '2012-07-31 23:59:00'
place: Brno, Czechia
start: 2012-11-16
end: 2012-11-18
sub: PY
location:
- title: RuPy 2012
latitude: 49.1922443
longitude: 16.6113382
- conference: Rencontres django
year: 2010
link: https://web.archive.org/web/20110301023828/http://rencontres.django-fr.org/2010/
cfp: None
place: Marseille, France
start: 2010-04-24
end: 2010-04-25
sub: WEB
location:
- title: Rencontres django 2010
latitude: 43.2961743
longitude: 5.3699525
- conference: PyWaw Summit
year: 2015
link: https://web.archive.org/web/20160324001812/http://summit.pywaw.org/2015/
cfp: '2015-03-31 23:59:00'
place: Warsaw, Poland
start: 2015-05-25
end: 2015-05-26
sub: PY
location:
- title: PyWaw Summit 2015
latitude: 52.2319581
longitude: 21.0067249
- conference: Python Weekend Romania
year: 2014
link: https://web.archive.org/web/20141018180902/http://conference.ropython.org/
cfp: None
place: Iași, Romania
start: 2014-10-18
end: 2014-10-19
sub: PY
location:
- title: Python Weekend Romania 2014
latitude: 47.1615416
longitude: 27.5837224
- conference: Python Unconference
year: 2016
link: https://web.archive.org/web/20160923012718/http://www.pyunconf.de/
cfp: None
place: Hamburg, Germany
start: 2016-09-09
end: 2016-09-12
sub: PY
location:
- title: Python Unconference 2016
latitude: 53.5672881
longitude: 9.941726150411604
- conference: Python Unconference
year: 2015
link: https://web.archive.org/web/20150906234810/http://www.pyunconf.de/
cfp: None
place: Hamburg, Germany
start: 2015-09-04
end: 2015-09-07
sub: PY
location:
- title: Python Unconference 2015
latitude: 53.5672881
longitude: 9.941726150411604
- conference: Python Unconference
year: 2014
link: https://web.archive.org/web/20150906234810/http://www.pyunconf.de/
cfp: None
place: Hamburg, Germany
start: 2014-11-29
end: 2014-12-01
sub: PY
location:
- title: Python Unconference 2014
latitude: 53.5672881
longitude: 9.941726150411604
- conference: Python Sul
alt_name: Python Sul (Brazil)
year: 2017
link: https://web.archive.org/web/20170902194604/http://pythonsul.org/
cfp_link: https://web.archive.org/web/20170816000716/http://speakerfight.com/events/python-sul-2017-palestras/
cfp: '2017-03-30 00:00:00'
place: Caxias do Sul, Brazil
start: 2017-09-08
end: 2017-09-10
sub: PY
location:
- title: Python Sul 2017
latitude: -29.1685045
longitude: -51.1796385
- conference: Python Serbia
year: 2018
link: https://web.archive.org/web/20180326165724/https://pyser.org
cfp: '2018-05-06 23:59:00'
place: Novi Sad, Serbia
start: 2018-06-09
end: 2018-06-09
sub: PY
location:
- title: Python Serbia 2018
latitude: 45.2551338
longitude: 19.8451756
- conference: Python San Sebastian
year: 2018
link: https://web.archive.org/web/20181008223234/http://pyss18.pyss.org/
cfp: '2018-09-15 23:59:00'
place: Kursaal, Spain
start: 2018-10-12
end: 2018-10-15
sub: PY
location:
- title: Python San Sebastian 2018
latitude: 43.3222716
longitude: -1.9856145
- conference: Python San Sebastian
year: 2017
link: https://web.archive.org/web/20170909095524/http://pyss17.pyss.org/
cfp: '2017-09-01 23:59:00'
place: San Sebastián, Spain
start: 2017-10-06
end: 2017-10-08
sub: PY
location:
- title: Python San Sebastian 2017
latitude: 43.3224219
longitude: -1.9838889
- conference: Python San Sebastian
year: 2016
link: http://pyss16.pyss.org/
cfp: '2017-08-31 23:59:00'
place: San Sebastian, Spain
start: 2016-09-30
end: 2016-10-03
sub: PY
location:
- title: Python San Sebastian 2016
latitude: 43.3224219
longitude: -1.9838889
- conference: Python San Sebastian
year: 2015
link: https://web.archive.org/web/20150805095718/http://pyss15.pyss.org/en/
cfp: '2015-09-25 23:59:00'
place: San Sebastian, Spain
start: 2015-10-24
end: 2015-10-25
sub: PY
location:
- title: Python San Sebastian 2015
latitude: 43.3224219
longitude: -1.9838889
- conference: Python San Sebastian
year: 2014
link: https://web.archive.org/web/20150109142404/http://www.pyss.org/
cfp: '2014-08-31 23:59:00'
place: San Sebastian, Spain
start: 2014-09-26
end: 2014-09-29
sub: PY
location:
- title: Python San Sebastian 2014
latitude: 43.3224219
longitude: -1.9838889
- conference: Python Nordeste
year: 2018
link: https://web.archive.org/web/20181220005202/https://2018.pythonnordeste.org/
cfp_link: https://web.archive.org/web/20210516001802/https://speakerfight.com/events/python-nordeste-2018-24-25-e-26-de-maio-campina-grandepb-palestras/
cfp: '2018-04-20 23:00:00'
cfp_ext: '2018-04-27 23:55:00'
timezone: America/Recife
place: Campina Grande, Brazil
start: 2018-05-24
end: 2018-05-26
twitter: pythonnordeste
sub: PY
location:
- title: Python Nordeste 2018
latitude: -7.23056
longitude: -35.88111
- conference: Python Nordeste
year: 2017
link: https://web.archive.org/web/20170609010039/http://2017.pythonnordeste.org/
cfp_link: https://web.archive.org/web/20170429161113/http://speakerfight.com/events/palestras-python-nordeste-2017-sao-luis-ma/
cfp: '2017-04-10 23:55:00'
timezone: America/Recife
place: São Luís, Brazil
start: 2017-06-08
end: 2017-06-10
twitter: pythonnordeste
sub: PY
location:
- title: Python Nordeste 2017
latitude: -2.5307316
longitude: -44.3068265
- conference: Python Nordeste
year: 2016
link: https://web.archive.org/web/20160614023844/http://2016.pythonnordeste.org/
cfp_link: https://web.archive.org/web/20160612043438/http://speakerfight.com/events/python-nordeste-2016/
cfp: '2016-05-07 23:55:00'
timezone: America/Recife
place: São Luís, Brazil
start: 2016-06-09
end: 2016-06-11
twitter: pythonnordeste
sub: PY
location:
- title: Python Nordeste 2016
latitude: -2.5307316
longitude: -44.3068265
- conference: Python Nordeste
year: 2015
link: https://web.archive.org/web/20150428210556/http://2015.pythonnordeste.org/
cfp_link: https://speakerfight.com/events/python-nordeste-2015/
cfp: '2015-03-27 12:00:00'
timezone: America/Recife
place: Natal, Brazil
start: 2015-05-15
end: 2015-06-16
twitter: pythonnordeste
sub: PY
location:
- title: Python Nordeste 2015
latitude: -5.7944777
longitude: -35.2119324
- conference: Python Nordeste
year: 2014
link: https://web.archive.org/web/20140411192842/http://2014.pythonnordeste.org/
cfp: '2014-03-31 23:55:00'
timezone: America/Recife
place: Salvador, Brazil
start: 2014-05-01
end: 2014-05-03
twitter: pythonnordeste
sub: PY
location:
- title: Python Nordeste 2014
latitude: -5.7944777
longitude: -35.2119324
- conference: Python Nordeste
year: 2013
link: https://web.archive.org/web/20160708210325/http://2013.pythonnordeste.org/
cfp: '2013-03-01 00:00:00'
place: Fortaleza, Brazil
start: 2013-05-24
end: 2013-05-25
sub: PY
location:
- title: Python Nordeste 2013
latitude: -3.7304512
longitude: -38.5217989
- conference: Python Namibia
year: 2015
link: https://web.archive.org/web/20150201083907/http://python-namibia.org/
cfp: '2014-12-15 23:59:00'
place: Windhoek, Namibia
start: 2015-02-02
end: 2015-02-05
sub: PY
location:
- title: Python Namibia 2015
latitude: -22.611456150000002
longitude: 17.05860104184979
- conference: Python in finance
year: 2013
link: https://web.archive.org/web/20130815205435/http://python-in-finance.com/
cfp: None
place: New York, USA
start: 2013-04-05
end: 2013-04-05
sub: PY
location:
- title: Python in finance 2013
latitude: 40.7127281
longitude: -74.0060152
- conference: Python in Astronomy
year: 2018
link: https://openastronomy.org/pyastro/2018/
cfp_link: https://docs.google.com/forms/d/e/1FAIpQLSeMA_t_fD86AJ0v2dI5iRgsQOoIW7ZavsnRd6JTi_LTHlrEeQ/closedform
cfp: '2017-10-16 23:59:00'
place: New York, USA
start: 2018-04-30
end: 2018-05-04
sub: DATA
location:
- title: Python in Astronomy 2018
latitude: 40.7127281
longitude: -74.0060152
- conference: Python in Astronomy
year: 2017
link: https://openastronomy.org/pyastro/2017/
cfp: '2016-12-09 23:59:00'
place: Leiden, Netherlands
start: 2017-05-08
end: 2017-05-12
sub: DATA
location:
- title: Python in Astronomy 2017
latitude: 52.1594747
longitude: 4.4908843
- conference: Python in Astronomy
year: 2016
link: https://web.archive.org/web/20160905071450/http://openastronomy.org/pyastro/2016/
cfp: '2015-12-06 23:59:00'
place: Seattle, USA
start: 2016-03-21
end: 2016-03-25
sub: DATA
location:
- title: Python in Astronomy 2016
latitude: 47.6038321
longitude: -122.330062
- conference: Python in Astronomy
year: 2015
link: https://web.archive.org/web/20160905071445/http://openastronomy.org/pyastro/2015/
cfp: '2014-12-10 23:59:00'
place: Leiden, Netherlands
start: 2015-04-20
end: 2015-04-24
sub: DATA
location:
- title: Python in Astronomy 2015
latitude: 52.1594747
longitude: 4.4908843
- conference: Python Brasil
alt_name: PythonBrasil[14]
year: 2018
link: https://web.archive.org/web/20180816032212/https://2018.pythonbrasil.org.br/
cfp: '2018-10-14 23:59:00'
place: Natal, Brazil
start: 2018-10-17
end: 2018-10-22
sub: PY
location:
- title: Python Brasil 2018
latitude: -5.7944777
longitude: -35.2119324
- conference: Python Brasil
alt_name: PythonBrasil[13]
year: 2017
link: https://web.archive.org/web/20170929071852/http://2017.pythonbrasil.org.br/
cfp: '2017-06-25 23:59:00'
place: Belo Horizonte, Brazil
start: 2017-10-06
end: 2017-10-11
sub: PY
location:
- title: Python Brasil 2017
latitude: -19.9227318
longitude: -43.9450948
- conference: Python Brasil
alt_name: PythonBrasil[12]
year: 2016
link: https://web.archive.org/web/20161016045439/http://2016.pythonbrasil.org.br/
cfp: '2016-08-31 23:59:00'
place: Florianópolis, Brazil
start: 2016-10-13
end: 2016-10-18
sub: PY
location:
- title: Python Brasil 2016
latitude: -27.5973002
longitude: -48.5496098
- conference: Python Brasil
alt_name: PythonBrasil[11]
year: 2015
link: https://web.archive.org/web/20150614065213/http://pythonbrasil.github.io/pythonbrasil11-site/
cfp: '2015-09-01 23:59:00'
place: Sao Jose dos Campos, Brazil
start: 2015-10-13
end: 2015-10-17
sub: PY
location:
- title: Python Brasil 2015
latitude: -23.1867782
longitude: -45.8854538
- conference: Python Brasil
alt_name: PythonBrasil[10]
year: 2014
link: https://web.archive.org/web/20141207142807/http://2014.pythonbrasil.org.br/
cfp: '2014-08-10 23:59:00'
cfp_ext: '2014-08-15 23:59:00'
place: Porto de Galinhas, Brazil
extra_places:
- Recife, Brazil
start: 2014-11-04
end: 2014-11-09
sub: PY
location:
- title: Python Brasil 2014
latitude: -8.5046818
longitude: -35.0049962
- title: Python Brasil 2014
latitude: -8.05389
longitude: -34.88111
- conference: Python Brasil
alt_name: PythonBrasil[9]
year: 2013
link: https://web.archive.org/web/20130530100705/http://2013.pythonbrasil.org.br/
cfp: '2013-07-31 23:59:00'
place: Brasilia, Brazil
start: 2013-09-30
end: 2013-10-06
sub: PY
note: The conference was held in conjunction with Plone Conference
location:
- title: Python Brasil 2013
latitude: -10.3333333
longitude: -53.2
- conference: Python Brasil
alt_name: PythonBrasil[8]
year: 2012
link: https://web.archive.org/web/20121117085723/http://2012.pythonbrasil.org.br/
cfp: '2012-09-30 23:59:00'
place: Rio de Janeiro, Brazil
start: 2012-11-21
end: 2012-11-24
sub: PY
location:
- title: Python Brasil 2012
latitude: -22.9110137
longitude: -43.2093727
- conference: Python Brasil
alt_name: PythonBrasil[7]
year: 2011
link: https://web.archive.org/web/20120827060031/http://2011.pythonbrasil.org.br/
cfp: '2011-08-19 23:59:00'
place: Sao Paulo, Brazil
start: 2011-09-29
end: 2011-10-01
sub: PY
location:
- title: Python Brasil 2011
latitude: -23.5506507
longitude: -46.6333824