-
Notifications
You must be signed in to change notification settings - Fork 0
/
expand.out
1281 lines (1281 loc) · 95.8 KB
/
expand.out
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
Active event path is: ./site/content/event/active/2023-08-16.1830_2023-wieting-guild-meetings.md
Active event path is: ./site/content/event/active/2023-06-24.0000_elemental-2d.md
Active event path is: ./site/content/event/active/2023-06-22.1700_private-rental-62223.md
Active event path is: ./site/content/event/active/2023-06-19.0000_elemental-3d.md
Active event path is: ./site/content/event/active/2023-07-31.0900_stem-camp.md
Active event path is: ./site/content/event/active/2023-08-03.1700_cv-meetings-2023.md
Active event path is: ./site/content/event/active/2023-12-30.1300_private-rental-12-30-23.md
Active event path is: ./site/content/event/active/2023-08-01.0900_stem-camp.md
Active event path is: ./site/content/event/active/2023-07-01.0000_indiana-jones-and-the-dial-of-destiny.md
Active event path is: ./site/content/event/active/2023-10-18.1830_2023-wieting-guild-meetings.md
Active event path is: ./site/content/event/active/2024-05-18.0800_private-rental-51824.md
Active event path is: ./site/content/event/active/2023-08-05.0800_private-rental-8-5-23.md
Active event path is: ./site/content/event/active/2023-08-02.0900_stem-camp.md
Active event path is: ./site/content/event/active/2023-11-02.1700_cv-meetings-2023.md
Active event path is: ./site/content/event/active/2023-07-06.1700_cv-meetings-2023.md
Active event path is: ./site/content/event/active/2023-09-07.1700_cv-meetings-2023.md
Active event path is: ./site/content/event/active/2023-08-12.1000_private-rental-8-12-23.md
Active event path is: ./site/content/event/active/2023-08-03.0900_stem-camp.md
Active event path is: ./site/content/event/active/2023-07-19.1830_2023-wieting-guild-meetings.md
Active event path is: ./site/content/event/active/2023-07-18.1000_2023-childrens-theatre-camp.md
Active event path is: ./site/content/event/active/2023-07-20.1000_2023-childrens-theatre-camp.md
Active event path is: ./site/content/event/active/2023-07-17.1000_2023-childrens-theatre-camp.md
Active event path is: ./site/content/event/active/2023-09-20.1830_2023-wieting-guild-meetings.md
Active event path is: ./site/content/event/active/2023-07-03.0000_indiana-jones-and-the-dial-of-destiny.md
Active event path is: ./site/content/event/active/2023-11-15.1830_2023-wieting-guild-meetings.md
Active event path is: ./site/content/event/active/2023-06-21.1830_2023-wieting-guild-meetings.md
Active event path is: ./site/content/event/active/2023-07-08.0000_indiana-jones-and-the-dial-of-destiny.md
Active event path is: ./site/content/event/active/2023-07-29.1000_private-rental-7-29-23.md
Active event path is: ./site/content/event/active/2023-06-26.0000_elemental-2d.md
Active event path is: ./site/content/event/active/2023-06-20.1100_private-rental.md
Active event path is: ./site/content/event/active/2023-07-16.1200_private-rental-7-16-23.md
Active event path is: ./site/content/event/active/2023-10-05.1700_cv-meetings-2023.md
Active event path is: ./site/content/event/active/2023-07-19.1000_2023-childrens-theatre-camp.md
Active event path is: ./site/content/event/active/2023-07-22.0000_the-secret-of-the-sphinx.md
Active event path is: ./site/content/event/active/2024-04-05.1700_special-cv-meeting.md
Active event path is: ./site/content/event/active/2024-05-26.0800_private-rental.md
Active event path is: ./site/content/event/active/2023-07-21.1000_2023-childrens-theatre-camp.md
Active event path is: ./site/content/event/active/2023-07-10.0000_indiana-jones-and-the-dial-of-destiny.md
Active event found in: ./site/content/event/active/2023-08-16.1830_2023-wieting-guild-meetings.md
active event ./site/content/event/active/2023-08-16.1830_2023-wieting-guild-meetings.md was moved to backup file ./site/content/event/active/2023-08-16.1830_2023-wieting-guild-meetings.bak
Active event found in: ./site/content/event/active/2023-06-24.0000_elemental-2d.md
active event ./site/content/event/active/2023-06-24.0000_elemental-2d.md was moved to backup file ./site/content/event/active/2023-06-24.0000_elemental-2d.bak
Active event found in: ./site/content/event/active/2023-06-22.1700_private-rental-62223.md
active event ./site/content/event/active/2023-06-22.1700_private-rental-62223.md was moved to backup file ./site/content/event/active/2023-06-22.1700_private-rental-62223.bak
Active event found in: ./site/content/event/active/2023-06-19.0000_elemental-3d.md
active event ./site/content/event/active/2023-06-19.0000_elemental-3d.md was moved to backup file ./site/content/event/active/2023-06-19.0000_elemental-3d.bak
Active event found in: ./site/content/event/active/2023-07-31.0900_stem-camp.md
active event ./site/content/event/active/2023-07-31.0900_stem-camp.md was moved to backup file ./site/content/event/active/2023-07-31.0900_stem-camp.bak
Active event found in: ./site/content/event/active/2023-08-03.1700_cv-meetings-2023.md
active event ./site/content/event/active/2023-08-03.1700_cv-meetings-2023.md was moved to backup file ./site/content/event/active/2023-08-03.1700_cv-meetings-2023.bak
Active event found in: ./site/content/event/active/2023-12-30.1300_private-rental-12-30-23.md
active event ./site/content/event/active/2023-12-30.1300_private-rental-12-30-23.md was moved to backup file ./site/content/event/active/2023-12-30.1300_private-rental-12-30-23.bak
Active event found in: ./site/content/event/active/2023-08-01.0900_stem-camp.md
active event ./site/content/event/active/2023-08-01.0900_stem-camp.md was moved to backup file ./site/content/event/active/2023-08-01.0900_stem-camp.bak
Active event found in: ./site/content/event/active/2023-07-01.0000_indiana-jones-and-the-dial-of-destiny.md
active event ./site/content/event/active/2023-07-01.0000_indiana-jones-and-the-dial-of-destiny.md was moved to backup file ./site/content/event/active/2023-07-01.0000_indiana-jones-and-the-dial-of-destiny.bak
Active event found in: ./site/content/event/active/2023-10-18.1830_2023-wieting-guild-meetings.md
active event ./site/content/event/active/2023-10-18.1830_2023-wieting-guild-meetings.md was moved to backup file ./site/content/event/active/2023-10-18.1830_2023-wieting-guild-meetings.bak
Active event found in: ./site/content/event/active/2024-05-18.0800_private-rental-51824.md
active event ./site/content/event/active/2024-05-18.0800_private-rental-51824.md was moved to backup file ./site/content/event/active/2024-05-18.0800_private-rental-51824.bak
Active event found in: ./site/content/event/active/2023-08-05.0800_private-rental-8-5-23.md
active event ./site/content/event/active/2023-08-05.0800_private-rental-8-5-23.md was moved to backup file ./site/content/event/active/2023-08-05.0800_private-rental-8-5-23.bak
Active event found in: ./site/content/event/active/2023-08-02.0900_stem-camp.md
active event ./site/content/event/active/2023-08-02.0900_stem-camp.md was moved to backup file ./site/content/event/active/2023-08-02.0900_stem-camp.bak
Active event found in: ./site/content/event/active/2023-11-02.1700_cv-meetings-2023.md
active event ./site/content/event/active/2023-11-02.1700_cv-meetings-2023.md was moved to backup file ./site/content/event/active/2023-11-02.1700_cv-meetings-2023.bak
Active event found in: ./site/content/event/active/2023-07-06.1700_cv-meetings-2023.md
active event ./site/content/event/active/2023-07-06.1700_cv-meetings-2023.md was moved to backup file ./site/content/event/active/2023-07-06.1700_cv-meetings-2023.bak
Active event found in: ./site/content/event/active/2023-09-07.1700_cv-meetings-2023.md
active event ./site/content/event/active/2023-09-07.1700_cv-meetings-2023.md was moved to backup file ./site/content/event/active/2023-09-07.1700_cv-meetings-2023.bak
Active event found in: ./site/content/event/active/2023-08-12.1000_private-rental-8-12-23.md
active event ./site/content/event/active/2023-08-12.1000_private-rental-8-12-23.md was moved to backup file ./site/content/event/active/2023-08-12.1000_private-rental-8-12-23.bak
Active event found in: ./site/content/event/active/2023-08-03.0900_stem-camp.md
active event ./site/content/event/active/2023-08-03.0900_stem-camp.md was moved to backup file ./site/content/event/active/2023-08-03.0900_stem-camp.bak
Active event found in: ./site/content/event/active/2023-07-19.1830_2023-wieting-guild-meetings.md
active event ./site/content/event/active/2023-07-19.1830_2023-wieting-guild-meetings.md was moved to backup file ./site/content/event/active/2023-07-19.1830_2023-wieting-guild-meetings.bak
Active event found in: ./site/content/event/active/2023-07-18.1000_2023-childrens-theatre-camp.md
active event ./site/content/event/active/2023-07-18.1000_2023-childrens-theatre-camp.md was moved to backup file ./site/content/event/active/2023-07-18.1000_2023-childrens-theatre-camp.bak
Active event found in: ./site/content/event/active/2023-07-20.1000_2023-childrens-theatre-camp.md
active event ./site/content/event/active/2023-07-20.1000_2023-childrens-theatre-camp.md was moved to backup file ./site/content/event/active/2023-07-20.1000_2023-childrens-theatre-camp.bak
Active event found in: ./site/content/event/active/2023-07-17.1000_2023-childrens-theatre-camp.md
active event ./site/content/event/active/2023-07-17.1000_2023-childrens-theatre-camp.md was moved to backup file ./site/content/event/active/2023-07-17.1000_2023-childrens-theatre-camp.bak
Active event found in: ./site/content/event/active/2023-09-20.1830_2023-wieting-guild-meetings.md
active event ./site/content/event/active/2023-09-20.1830_2023-wieting-guild-meetings.md was moved to backup file ./site/content/event/active/2023-09-20.1830_2023-wieting-guild-meetings.bak
Active event found in: ./site/content/event/active/2023-07-03.0000_indiana-jones-and-the-dial-of-destiny.md
active event ./site/content/event/active/2023-07-03.0000_indiana-jones-and-the-dial-of-destiny.md was moved to backup file ./site/content/event/active/2023-07-03.0000_indiana-jones-and-the-dial-of-destiny.bak
Active event found in: ./site/content/event/active/2023-11-15.1830_2023-wieting-guild-meetings.md
active event ./site/content/event/active/2023-11-15.1830_2023-wieting-guild-meetings.md was moved to backup file ./site/content/event/active/2023-11-15.1830_2023-wieting-guild-meetings.bak
Active event found in: ./site/content/event/active/2023-06-21.1830_2023-wieting-guild-meetings.md
active event ./site/content/event/active/2023-06-21.1830_2023-wieting-guild-meetings.md was moved to backup file ./site/content/event/active/2023-06-21.1830_2023-wieting-guild-meetings.bak
Active event found in: ./site/content/event/active/2023-07-08.0000_indiana-jones-and-the-dial-of-destiny.md
active event ./site/content/event/active/2023-07-08.0000_indiana-jones-and-the-dial-of-destiny.md was moved to backup file ./site/content/event/active/2023-07-08.0000_indiana-jones-and-the-dial-of-destiny.bak
Active event found in: ./site/content/event/active/2023-07-29.1000_private-rental-7-29-23.md
active event ./site/content/event/active/2023-07-29.1000_private-rental-7-29-23.md was moved to backup file ./site/content/event/active/2023-07-29.1000_private-rental-7-29-23.bak
Active event found in: ./site/content/event/active/2023-06-26.0000_elemental-2d.md
active event ./site/content/event/active/2023-06-26.0000_elemental-2d.md was moved to backup file ./site/content/event/active/2023-06-26.0000_elemental-2d.bak
Active event found in: ./site/content/event/active/2023-06-20.1100_private-rental.md
active event ./site/content/event/active/2023-06-20.1100_private-rental.md was moved to backup file ./site/content/event/active/2023-06-20.1100_private-rental.bak
Active event found in: ./site/content/event/active/2023-07-16.1200_private-rental-7-16-23.md
active event ./site/content/event/active/2023-07-16.1200_private-rental-7-16-23.md was moved to backup file ./site/content/event/active/2023-07-16.1200_private-rental-7-16-23.bak
Active event found in: ./site/content/event/active/2023-10-05.1700_cv-meetings-2023.md
active event ./site/content/event/active/2023-10-05.1700_cv-meetings-2023.md was moved to backup file ./site/content/event/active/2023-10-05.1700_cv-meetings-2023.bak
Active event found in: ./site/content/event/active/2023-07-19.1000_2023-childrens-theatre-camp.md
active event ./site/content/event/active/2023-07-19.1000_2023-childrens-theatre-camp.md was moved to backup file ./site/content/event/active/2023-07-19.1000_2023-childrens-theatre-camp.bak
Active event found in: ./site/content/event/active/2023-07-22.0000_the-secret-of-the-sphinx.md
active event ./site/content/event/active/2023-07-22.0000_the-secret-of-the-sphinx.md was moved to backup file ./site/content/event/active/2023-07-22.0000_the-secret-of-the-sphinx.bak
Active event found in: ./site/content/event/active/2024-04-05.1700_special-cv-meeting.md
active event ./site/content/event/active/2024-04-05.1700_special-cv-meeting.md was moved to backup file ./site/content/event/active/2024-04-05.1700_special-cv-meeting.bak
Active event found in: ./site/content/event/active/2024-05-26.0800_private-rental.md
active event ./site/content/event/active/2024-05-26.0800_private-rental.md was moved to backup file ./site/content/event/active/2024-05-26.0800_private-rental.bak
Active event found in: ./site/content/event/active/2023-07-21.1000_2023-childrens-theatre-camp.md
active event ./site/content/event/active/2023-07-21.1000_2023-childrens-theatre-camp.md was moved to backup file ./site/content/event/active/2023-07-21.1000_2023-childrens-theatre-camp.bak
Active event found in: ./site/content/event/active/2023-07-10.0000_indiana-jones-and-the-dial-of-destiny.md
active event ./site/content/event/active/2023-07-10.0000_indiana-jones-and-the-dial-of-destiny.md was moved to backup file ./site/content/event/active/2023-07-10.0000_indiana-jones-and-the-dial-of-destiny.bak
Show path is: ./site/content/show/2023-07-22_the-secret-of-the-sphinx.md
named_date and event_name are: 2023-07-22 and the-secret-of-the-sphinx.md
WARNING: 'dates' is neither discrete nor recurring!
WARNING: Discrete performanceList date '2023-07-22 00:00:14.771000' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2023, 7, 22, 0, 0, 14, 771000)]
discrete/expanded datetime is: 2023-07-22 00:00:14.771000
Old performance 'format' and 'notes' have been preserved!
expiryDate is: 2023-07-23
Show path is: ./site/content/show/2023-06-19_elemental-3d.md
named_date and event_name are: 2023-06-19 and elemental-3d.md
WARNING: 'dates' is neither discrete nor recurring!
WARNING: Discrete performanceList date '2023-06-19 00:00:37.382000' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2023, 6, 19, 0, 0, 37, 382000)]
discrete/expanded datetime is: 2023-06-19 00:00:37.382000
Old performance 'format' and 'notes' have been preserved!
expiryDate is: 2023-06-20
Show path is: ./site/content/show/2023-06-26_elemental-2d.md
named_date and event_name are: 2023-06-26 and elemental-2d.md
WARNING: 'dates' is neither discrete nor recurring!
WARNING: Discrete performanceList date '2023-06-24 00:00:55.039000' will be used.
WARNING: Discrete performanceList date '2023-06-26 00:00:26.297000' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2023, 6, 24, 0, 0, 55, 39000), datetime.datetime(2023, 6, 26, 0, 0, 26, 297000)]
discrete/expanded datetime is: 2023-06-24 00:00:55.039000
discrete/expanded datetime is: 2023-06-26 00:00:26.297000
Old performance 'format' and 'notes' have been preserved!
expiryDate is: 2023-06-27
Show path is: ./site/content/show/2023-07-10_indiana-jones-and-the-dial-of-destiny.md
named_date and event_name are: 2023-07-10 and indiana-jones-and-the-dial-of-destiny.md
WARNING: 'dates' is neither discrete nor recurring!
WARNING: Discrete performanceList date '2023-07-01 00:00:49.953000' will be used.
WARNING: Discrete performanceList date '2023-07-03 00:00:33.669000' will be used.
WARNING: Discrete performanceList date '2023-07-08 00:00:34.114000' will be used.
WARNING: Discrete performanceList date '2023-07-10 00:00:34.578000' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2023, 7, 1, 0, 0, 49, 953000), datetime.datetime(2023, 7, 3, 0, 0, 33, 669000), datetime.datetime(2023, 7, 8, 0, 0, 34, 114000), datetime.datetime(2023, 7, 10, 0, 0, 34, 578000)]
discrete/expanded datetime is: 2023-07-01 00:00:49.953000
discrete/expanded datetime is: 2023-07-03 00:00:33.669000
discrete/expanded datetime is: 2023-07-08 00:00:34.114000
discrete/expanded datetime is: 2023-07-10 00:00:34.578000
Old performance 'format' and 'notes' have been preserved!
expiryDate is: 2023-07-11
Event path is: ./site/data/events/2022-11-10_stc-nhs-induction.md
named_date and event_name are: 2022-11-10 and stc-nhs-induction.md
dates string '7:00 pm on Nov 10 2022' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2022-11-10 19:00:00-06:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2022, 11, 10, 19, 0, tzinfo=<DstTzInfo 'America/Chicago' CST-1 day, 18:00:00 STD>)]
discrete/expanded datetime is: 2022-11-10 19:00:00-06:00
datetime event is in the past!
Event path is: ./site/data/events/2023-04-13_toledo-library-program-titanic.md
named_date and event_name are: 2023-04-13 and toledo-library-program-titanic.md
dates string '6:30 pm on Apr 13 2023' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2023-04-13 18:30:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2023, 4, 13, 18, 30, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2023-04-13 18:30:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2023-04-05_special-cv-meeting.md
named_date and event_name are: 2023-04-05 and special-cv-meeting.md
dates string '5:00 pm on Apr 05' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2024-04-05 17:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2024, 4, 5, 17, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2024-04-05 17:00:00-05:00
Event path is: ./site/data/events/2022-09-09_private-rental.md
named_date and event_name are: 2022-09-09 and private-rental.md
dates string '4:00 pm Sep 9 2022' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2022-09-09 16:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2022, 9, 9, 16, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2022-09-09 16:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2022-08-29_scholarship-meeting.md
named_date and event_name are: 2022-08-29 and scholarship-meeting.md
dates string '5:15pm on Aug 29 2022' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2022-08-29 17:15:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2022, 8, 29, 17, 15, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2022-08-29 17:15:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2022-11-03_musical-rehearsal.md
named_date and event_name are: 2022-11-03 and musical-rehearsal.md
dates string '4:00 pm every monday tuesday thursday from sep 8 2022 thru nov 3 2022' successfully parsed
recurrence params are: {'byday': 'MO,TU,TH', 'byhour': '16', 'byminute': '0', 'interval': 1, 'freq': 'weekly', 'dtstart': '20220908', 'until': '20221103'}
incoming recur_string is: DTSTART:20220908
RRULE:BYDAY=MO,TU,TH;BYHOUR=16;BYMINUTE=0;INTERVAL=1;FREQ=WEEKLY;UNTIL=20221103
until is: 20221103
outgoing recur_string is: DTSTART:20220908
RRULE:BYDAY=MO,TU,TH;BYHOUR=16;BYMINUTE=0;INTERVAL=1;FREQ=WEEKLY;UNTIL=20221104
this recurring event string is: DTSTART:20220908
RRULE:BYDAY=MO,TU,TH;BYHOUR=16;BYMINUTE=0;INTERVAL=1;FREQ=WEEKLY;UNTIL=20221104
individual datetime is: 2022-09-08 16:00:00-05:00
individual datetime is: 2022-09-12 16:00:00-05:00
individual datetime is: 2022-09-13 16:00:00-05:00
individual datetime is: 2022-09-15 16:00:00-05:00
individual datetime is: 2022-09-19 16:00:00-05:00
individual datetime is: 2022-09-20 16:00:00-05:00
individual datetime is: 2022-09-22 16:00:00-05:00
individual datetime is: 2022-09-26 16:00:00-05:00
individual datetime is: 2022-09-27 16:00:00-05:00
individual datetime is: 2022-09-29 16:00:00-05:00
individual datetime is: 2022-10-03 16:00:00-05:00
individual datetime is: 2022-10-04 16:00:00-05:00
individual datetime is: 2022-10-06 16:00:00-05:00
individual datetime is: 2022-10-10 16:00:00-05:00
individual datetime is: 2022-10-11 16:00:00-05:00
individual datetime is: 2022-10-13 16:00:00-05:00
individual datetime is: 2022-10-17 16:00:00-05:00
individual datetime is: 2022-10-18 16:00:00-05:00
individual datetime is: 2022-10-20 16:00:00-05:00
individual datetime is: 2022-10-24 16:00:00-05:00
individual datetime is: 2022-10-25 16:00:00-05:00
individual datetime is: 2022-10-27 16:00:00-05:00
individual datetime is: 2022-10-31 16:00:00-05:00
individual datetime is: 2022-11-01 16:00:00-05:00
individual datetime is: 2022-11-03 16:00:00-05:00
parse_dates_string returns datetime list: [datetime.datetime(2022, 9, 8, 16, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 9, 12, 16, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 9, 13, 16, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 9, 15, 16, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 9, 19, 16, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 9, 20, 16, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 9, 22, 16, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 9, 26, 16, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 9, 27, 16, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 9, 29, 16, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 10, 3, 16, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 10, 4, 16, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 10, 6, 16, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 10, 10, 16, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 10, 11, 16, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 10, 13, 16, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 10, 17, 16, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 10, 18, 16, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 10, 20, 16, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 10, 24, 16, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 10, 25, 16, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 10, 27, 16, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 10, 31, 16, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 11, 1, 16, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 11, 3, 16, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2022-09-08 16:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-09-12 16:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-09-13 16:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-09-15 16:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-09-19 16:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-09-20 16:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-09-22 16:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-09-26 16:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-09-27 16:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-09-29 16:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-10-03 16:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-10-04 16:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-10-06 16:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-10-10 16:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-10-11 16:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-10-13 16:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-10-17 16:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-10-18 16:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-10-20 16:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-10-24 16:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-10-25 16:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-10-27 16:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-10-31 16:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-11-01 16:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-11-03 16:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2023-06-07_rehearsal.md
named_date and event_name are: 2023-06-07 and rehearsal.md
dates string '6:00 pm on June 7 2023 ' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2023-06-07 18:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2023, 6, 7, 18, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2023-06-07 18:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2023-05-13_private-rental-may-13.md
named_date and event_name are: 2023-05-13 and private-rental-may-13.md
dates string '10:00 am on May 13 2023' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2023-05-13 10:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2023, 5, 13, 10, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2023-05-13 10:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2022-12-18_private-rental.md
named_date and event_name are: 2022-12-18 and private-rental.md
dates string '11:00 am on Dec 18 2022' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2022-12-18 11:00:00-06:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2022, 12, 18, 11, 0, tzinfo=<DstTzInfo 'America/Chicago' CST-1 day, 18:00:00 STD>)]
discrete/expanded datetime is: 2022-12-18 11:00:00-06:00
datetime event is in the past!
Event path is: ./site/data/events/2022-09-07_tama-county-historical-society-live-program.md
named_date and event_name are: 2022-09-07 and tama-county-historical-society-live-program.md
dates string '7:00 pm on Sept 7 2022' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2023-06-18 19:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2023, 6, 18, 19, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2023-06-18 19:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2022-12-04_private-rental.md
named_date and event_name are: 2022-12-04 and private-rental.md
dates string '12:00 pm on Dec 4 2022' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2022-12-04 12:00:00-06:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2022, 12, 4, 12, 0, tzinfo=<DstTzInfo 'America/Chicago' CST-1 day, 18:00:00 STD>)]
discrete/expanded datetime is: 2022-12-04 12:00:00-06:00
datetime event is in the past!
Event path is: ./site/data/events/2022-05-28_private-rental.md
named_date and event_name are: 2022-05-28 and private-rental.md
dates string '8:00 am on May 28 2022' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2022-05-28 08:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2022, 5, 28, 8, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2022-05-28 08:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2022-08-04_recurring-community-visioning-meeting.md
named_date and event_name are: 2022-08-04 and recurring-community-visioning-meeting.md
dates string '5:00 pm monthly every 1st thursday from august 1 2022 to december 31 2022' successfully parsed
recurrence params are: {'byday': '1TH', 'byhour': '17', 'byminute': '0', 'interval': 1, 'freq': 'monthly', 'dtstart': '20220801', 'until': '20221231'}
incoming recur_string is: DTSTART:20220801
RRULE:BYDAY=1TH;BYHOUR=17;BYMINUTE=0;INTERVAL=1;FREQ=MONTHLY;UNTIL=20221231
until is: 20221231
outgoing recur_string is: DTSTART:20220801
RRULE:BYDAY=1TH;BYHOUR=17;BYMINUTE=0;INTERVAL=1;FREQ=MONTHLY;UNTIL=20230101
this recurring event string is: DTSTART:20220801
RRULE:BYDAY=1TH;BYHOUR=17;BYMINUTE=0;INTERVAL=1;FREQ=MONTHLY;UNTIL=20230101
individual datetime is: 2022-08-04 17:00:00-05:00
individual datetime is: 2022-09-01 17:00:00-05:00
individual datetime is: 2022-10-06 17:00:00-05:00
individual datetime is: 2022-11-03 17:00:00-05:00
individual datetime is: 2022-12-01 17:00:00-06:00
parse_dates_string returns datetime list: [datetime.datetime(2022, 8, 4, 17, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 9, 1, 17, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 10, 6, 17, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 11, 3, 17, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 12, 1, 17, 0, tzinfo=<DstTzInfo 'America/Chicago' CST-1 day, 18:00:00 STD>)]
discrete/expanded datetime is: 2022-08-04 17:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-09-01 17:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-10-06 17:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-11-03 17:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-12-01 17:00:00-06:00
datetime event is in the past!
Event path is: ./site/data/events/2022-06-25_stc-esports-banquet.md
named_date and event_name are: 2022-06-25 and stc-esports-banquet.md
dates string '5:00 pm Jun 25 2022' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2022-06-25 17:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2022, 6, 25, 17, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2022-06-25 17:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2023-05-27_private-rental.md
named_date and event_name are: 2023-05-27 and private-rental.md
dates string '12:00 pm on May 27 2023' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2023-05-27 12:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2023, 5, 27, 12, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2023-05-27 12:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2023-01-20_private-rental.md
named_date and event_name are: 2023-01-20 and private-rental.md
dates string '4:00 pm on Jan 20 2023' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2023-01-20 16:00:00-06:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2023, 1, 20, 16, 0, tzinfo=<DstTzInfo 'America/Chicago' CST-1 day, 18:00:00 STD>)]
discrete/expanded datetime is: 2023-01-20 16:00:00-06:00
datetime event is in the past!
Event path is: ./site/data/events/2022-06-11_private-rental.md
named_date and event_name are: 2022-06-11 and private-rental.md
dates string '8:00 am on Jun 11 2022' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2022-06-11 08:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2022, 6, 11, 8, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2022-06-11 08:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2023-01-08_private-rental.md
named_date and event_name are: 2023-01-08 and private-rental.md
dates string '11:00 am on Jan 8 2023' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2023-01-08 11:00:00-06:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2023, 1, 8, 11, 0, tzinfo=<DstTzInfo 'America/Chicago' CST-1 day, 18:00:00 STD>)]
discrete/expanded datetime is: 2023-01-08 11:00:00-06:00
datetime event is in the past!
Event path is: ./site/data/events/2022-06-13_play-rehearsal.md
named_date and event_name are: 2022-06-13 and play-rehearsal.md
dates string '6:00 pm every Mon Tue Thurs from Jun 13 2022 until Jun 17 2022' successfully parsed
recurrence params are: {'byday': 'MO,TU,TH', 'byhour': '18', 'byminute': '0', 'interval': 1, 'freq': 'weekly', 'dtstart': '20220613', 'until': '20220617'}
incoming recur_string is: DTSTART:20220613
RRULE:BYDAY=MO,TU,TH;BYHOUR=18;BYMINUTE=0;INTERVAL=1;FREQ=WEEKLY;UNTIL=20220617
until is: 20220617
outgoing recur_string is: DTSTART:20220613
RRULE:BYDAY=MO,TU,TH;BYHOUR=18;BYMINUTE=0;INTERVAL=1;FREQ=WEEKLY;UNTIL=20220618
this recurring event string is: DTSTART:20220613
RRULE:BYDAY=MO,TU,TH;BYHOUR=18;BYMINUTE=0;INTERVAL=1;FREQ=WEEKLY;UNTIL=20220618
individual datetime is: 2022-06-13 18:00:00-05:00
individual datetime is: 2022-06-14 18:00:00-05:00
individual datetime is: 2022-06-16 18:00:00-05:00
parse_dates_string returns datetime list: [datetime.datetime(2022, 6, 13, 18, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 6, 14, 18, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 6, 16, 18, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2022-06-13 18:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-06-14 18:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-06-16 18:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2022-07-27_private-rental.md
named_date and event_name are: 2022-07-27 and private-rental.md
dates string '5:00 pm on July 27 2022' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2022-07-27 17:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2022, 7, 27, 17, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2022-07-27 17:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2023-06-22_private-rental-62223.md
named_date and event_name are: 2023-06-22 and private-rental-62223.md
dates string '5:00 pm on June 22 2023' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2023-06-22 17:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2023, 6, 22, 17, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2023-06-22 17:00:00-05:00
Event path is: ./site/data/events/2023-06-08_private-rental-6823.md
named_date and event_name are: 2023-06-08 and private-rental-6823.md
dates string '5pm on Jun 8 2023' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2023-06-08 17:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2023, 6, 8, 17, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2023-06-08 17:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2022-06-27_play-rehearsal.md
named_date and event_name are: 2022-06-27 and play-rehearsal.md
dates string '6:00 pm every Mon Tue Wed Thurs from Jun 27 2022 until Jun 30 2022' successfully parsed
recurrence params are: {'byday': 'MO,TU,WE,TH', 'byhour': '18', 'byminute': '0', 'interval': 1, 'freq': 'weekly', 'dtstart': '20220627', 'until': '20220630'}
incoming recur_string is: DTSTART:20220627
RRULE:BYDAY=MO,TU,WE,TH;BYHOUR=18;BYMINUTE=0;INTERVAL=1;FREQ=WEEKLY;UNTIL=20220630
until is: 20220630
outgoing recur_string is: DTSTART:20220627
RRULE:BYDAY=MO,TU,WE,TH;BYHOUR=18;BYMINUTE=0;INTERVAL=1;FREQ=WEEKLY;UNTIL=20220701
this recurring event string is: DTSTART:20220627
RRULE:BYDAY=MO,TU,WE,TH;BYHOUR=18;BYMINUTE=0;INTERVAL=1;FREQ=WEEKLY;UNTIL=20220701
individual datetime is: 2022-06-27 18:00:00-05:00
individual datetime is: 2022-06-28 18:00:00-05:00
individual datetime is: 2022-06-29 18:00:00-05:00
individual datetime is: 2022-06-30 18:00:00-05:00
parse_dates_string returns datetime list: [datetime.datetime(2022, 6, 27, 18, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 6, 28, 18, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 6, 29, 18, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 6, 30, 18, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2022-06-27 18:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-06-28 18:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-06-29 18:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-06-30 18:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2022-05-29_private-rental.md
named_date and event_name are: 2022-05-29 and private-rental.md
dates string '3:00 pm on May 29 2022' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2022-05-29 15:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2022, 5, 29, 15, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2022-05-29 15:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2022-08-10_private-rental.md
named_date and event_name are: 2022-08-10 and private-rental.md
dates string '8:00 am on Aug 10 2022' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2022-08-10 08:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2022, 8, 10, 8, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2022-08-10 08:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2022-10-05_tama-county-historical-society-live-program.md
named_date and event_name are: 2022-10-05 and tama-county-historical-society-live-program.md
dates string '7:00 pm on Oct 5 2022' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2022-10-05 19:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2022, 10, 5, 19, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2022-10-05 19:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2023-08-12_private-rental-8-12-23.md
named_date and event_name are: 2023-08-12 and private-rental-8-12-23.md
dates string '10:00 am on Aug 12 2023' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2023-08-12 10:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2023, 8, 12, 10, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2023-08-12 10:00:00-05:00
Event path is: ./site/data/events/2022-08-04_high-flying-fun-stem-camp.md
named_date and event_name are: 2022-08-04 and high-flying-fun-stem-camp.md
dates string '8:30 am every day from Aug 1 2022 to Aug 4 2022' successfully parsed
recurrence params are: {'byhour': '8', 'byminute': '30', 'interval': 1, 'freq': 'daily', 'dtstart': '20220801', 'until': '20220804'}
incoming recur_string is: DTSTART:20220801
RRULE:BYHOUR=8;BYMINUTE=30;INTERVAL=1;FREQ=DAILY;UNTIL=20220804
until is: 20220804
outgoing recur_string is: DTSTART:20220801
RRULE:BYHOUR=8;BYMINUTE=30;INTERVAL=1;FREQ=DAILY;UNTIL=20220805
this recurring event string is: DTSTART:20220801
RRULE:BYHOUR=8;BYMINUTE=30;INTERVAL=1;FREQ=DAILY;UNTIL=20220805
individual datetime is: 2022-08-01 08:30:00-05:00
individual datetime is: 2022-08-02 08:30:00-05:00
individual datetime is: 2022-08-03 08:30:00-05:00
individual datetime is: 2022-08-04 08:30:00-05:00
parse_dates_string returns datetime list: [datetime.datetime(2022, 8, 1, 8, 30, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 8, 2, 8, 30, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 8, 3, 8, 30, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 8, 4, 8, 30, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2022-08-01 08:30:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-08-02 08:30:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-08-03 08:30:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-08-04 08:30:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2023-12-30_private-rental-12-30-23.md
named_date and event_name are: 2023-12-30 and private-rental-12-30-23.md
dates string '1:00 pm on Dec 30 2023' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2023-12-30 13:00:00-06:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2023, 12, 30, 13, 0, tzinfo=<DstTzInfo 'America/Chicago' CST-1 day, 18:00:00 STD>)]
discrete/expanded datetime is: 2023-12-30 13:00:00-06:00
Event path is: ./site/data/events/2023-05-07_private-rental-5-7-23.md
named_date and event_name are: 2023-05-07 and private-rental-5-7-23.md
dates string '10 am on May 7 2023' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2023-05-07 10:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2023, 5, 7, 10, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2023-05-07 10:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2022-11-09_tama-county-historical-society-program.md
named_date and event_name are: 2022-11-09 and tama-county-historical-society-program.md
dates string '7:00 pm on Nov 9 2022' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2022-11-09 19:00:00-06:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2022, 11, 9, 19, 0, tzinfo=<DstTzInfo 'America/Chicago' CST-1 day, 18:00:00 STD>)]
discrete/expanded datetime is: 2022-11-09 19:00:00-06:00
datetime event is in the past!
Event path is: ./site/data/events/2023-07-29_private-rental-7-29-23.md
named_date and event_name are: 2023-07-29 and private-rental-7-29-23.md
dates string '10 am on Jul 29 2023' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2023-07-29 10:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2023, 7, 29, 10, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2023-07-29 10:00:00-05:00
Event path is: ./site/data/events/2022-05-07_cinco-de-mayo-celebration.md
named_date and event_name are: 2022-05-07 and cinco-de-mayo-celebration.md
dates string '9:00 am on May 7 2022' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2022-05-07 09:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2022, 5, 7, 9, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2022-05-07 09:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2023-04-27_private-meeting.md
named_date and event_name are: 2023-04-27 and private-meeting.md
dates string '7:00 pm on Apr 27 2023' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2023-04-27 19:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2023, 4, 27, 19, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2023-04-27 19:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2023-03-02_stc-individual-speech-parent-night.md
named_date and event_name are: 2023-03-02 and stc-individual-speech-parent-night.md
dates string '6:30 pm on Mar 2 2023' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2023-03-02 18:30:00-06:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2023, 3, 2, 18, 30, tzinfo=<DstTzInfo 'America/Chicago' CST-1 day, 18:00:00 STD>)]
discrete/expanded datetime is: 2023-03-02 18:30:00-06:00
datetime event is in the past!
Event path is: ./site/data/events/2024-05-26_private-rental.md
named_date and event_name are: 2024-05-26 and private-rental.md
dates string '8:00 am on May 26 2024' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2024-05-26 08:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2024, 5, 26, 8, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2024-05-26 08:00:00-05:00
Event path is: ./site/data/events/2023-07-21_2023-childrens-theatre-camp.md
named_date and event_name are: 2023-07-21 and 2023-childrens-theatre-camp.md
dates string '10:00 am every day from Jul 17 2023 to Jul 21 2023' successfully parsed
recurrence params are: {'byhour': '10', 'byminute': '0', 'interval': 1, 'freq': 'daily', 'dtstart': '20230717', 'until': '20230721'}
incoming recur_string is: DTSTART:20230717
RRULE:BYHOUR=10;BYMINUTE=0;INTERVAL=1;FREQ=DAILY;UNTIL=20230721
until is: 20230721
outgoing recur_string is: DTSTART:20230717
RRULE:BYHOUR=10;BYMINUTE=0;INTERVAL=1;FREQ=DAILY;UNTIL=20230722
this recurring event string is: DTSTART:20230717
RRULE:BYHOUR=10;BYMINUTE=0;INTERVAL=1;FREQ=DAILY;UNTIL=20230722
individual datetime is: 2023-07-17 10:00:00-05:00
individual datetime is: 2023-07-18 10:00:00-05:00
individual datetime is: 2023-07-19 10:00:00-05:00
individual datetime is: 2023-07-20 10:00:00-05:00
individual datetime is: 2023-07-21 10:00:00-05:00
parse_dates_string returns datetime list: [datetime.datetime(2023, 7, 17, 10, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2023, 7, 18, 10, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2023, 7, 19, 10, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2023, 7, 20, 10, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2023, 7, 21, 10, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2023-07-17 10:00:00-05:00
discrete/expanded datetime is: 2023-07-18 10:00:00-05:00
discrete/expanded datetime is: 2023-07-19 10:00:00-05:00
discrete/expanded datetime is: 2023-07-20 10:00:00-05:00
discrete/expanded datetime is: 2023-07-21 10:00:00-05:00
Event path is: ./site/data/events/2022-09-21_guild-picnic.md
named_date and event_name are: 2022-09-21 and guild-picnic.md
dates string '6pm on Sep 21 2022' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2022-09-21 18:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2022, 9, 21, 18, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2022-09-21 18:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2022-02-03_recurring-community-visioning-meeting.md
named_date and event_name are: 2022-02-03 and recurring-community-visioning-meeting.md
dates string '5:00 pm monthly every 1st thursday from april 1 2022 to june 30 2022' successfully parsed
recurrence params are: {'byday': '1TH', 'byhour': '17', 'byminute': '0', 'interval': 1, 'freq': 'monthly', 'dtstart': '20220401', 'until': '20220630'}
incoming recur_string is: DTSTART:20220401
RRULE:BYDAY=1TH;BYHOUR=17;BYMINUTE=0;INTERVAL=1;FREQ=MONTHLY;UNTIL=20220630
until is: 20220630
outgoing recur_string is: DTSTART:20220401
RRULE:BYDAY=1TH;BYHOUR=17;BYMINUTE=0;INTERVAL=1;FREQ=MONTHLY;UNTIL=20220701
this recurring event string is: DTSTART:20220401
RRULE:BYDAY=1TH;BYHOUR=17;BYMINUTE=0;INTERVAL=1;FREQ=MONTHLY;UNTIL=20220701
individual datetime is: 2022-04-07 17:00:00-05:00
individual datetime is: 2022-05-05 17:00:00-05:00
individual datetime is: 2022-06-02 17:00:00-05:00
parse_dates_string returns datetime list: [datetime.datetime(2022, 4, 7, 17, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 5, 5, 17, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 6, 2, 17, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2022-04-07 17:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-05-05 17:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-06-02 17:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2023-02-18_private-rental-feb-18.md
named_date and event_name are: 2023-02-18 and private-rental-feb-18.md
dates string '9:00 am on Feb 18 2023' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2023-02-18 09:00:00-06:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2023, 2, 18, 9, 0, tzinfo=<DstTzInfo 'America/Chicago' CST-1 day, 18:00:00 STD>)]
discrete/expanded datetime is: 2023-02-18 09:00:00-06:00
datetime event is in the past!
Event path is: ./site/data/events/2022-06-20_play-rehearsal.md
named_date and event_name are: 2022-06-20 and play-rehearsal.md
dates string '6:00 pm every Mon Tue Wed Thurs from Jun 20 2022 until Jun 24 2022' successfully parsed
recurrence params are: {'byday': 'MO,TU,WE,TH', 'byhour': '18', 'byminute': '0', 'interval': 1, 'freq': 'weekly', 'dtstart': '20220620', 'until': '20220624'}
incoming recur_string is: DTSTART:20220620
RRULE:BYDAY=MO,TU,WE,TH;BYHOUR=18;BYMINUTE=0;INTERVAL=1;FREQ=WEEKLY;UNTIL=20220624
until is: 20220624
outgoing recur_string is: DTSTART:20220620
RRULE:BYDAY=MO,TU,WE,TH;BYHOUR=18;BYMINUTE=0;INTERVAL=1;FREQ=WEEKLY;UNTIL=20220625
this recurring event string is: DTSTART:20220620
RRULE:BYDAY=MO,TU,WE,TH;BYHOUR=18;BYMINUTE=0;INTERVAL=1;FREQ=WEEKLY;UNTIL=20220625
individual datetime is: 2022-06-20 18:00:00-05:00
individual datetime is: 2022-06-21 18:00:00-05:00
individual datetime is: 2022-06-22 18:00:00-05:00
individual datetime is: 2022-06-23 18:00:00-05:00
parse_dates_string returns datetime list: [datetime.datetime(2022, 6, 20, 18, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 6, 21, 18, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 6, 22, 18, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 6, 23, 18, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2022-06-20 18:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-06-21 18:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-06-22 18:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-06-23 18:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2022-05-18_wieting-guild-meeting.md
named_date and event_name are: 2022-05-18 and wieting-guild-meeting.md
dates string '6:30 pm on the 3rd Wednesday of every month from Mar 2022 thru Dec 2022' successfully parsed
recurrence params are: {'byday': '3WE', 'byhour': '18', 'byminute': '30', 'interval': 1, 'freq': 'monthly', 'dtstart': '20220301', 'until': '20221201'}
incoming recur_string is: DTSTART:20220301
RRULE:BYDAY=3WE;BYHOUR=18;BYMINUTE=30;INTERVAL=1;FREQ=MONTHLY;UNTIL=20221201
until is: 20221201
outgoing recur_string is: DTSTART:20220301
RRULE:BYDAY=3WE;BYHOUR=18;BYMINUTE=30;INTERVAL=1;FREQ=MONTHLY;UNTIL=20221202
this recurring event string is: DTSTART:20220301
RRULE:BYDAY=3WE;BYHOUR=18;BYMINUTE=30;INTERVAL=1;FREQ=MONTHLY;UNTIL=20221202
individual datetime is: 2022-03-16 18:30:00-05:00
individual datetime is: 2022-04-20 18:30:00-05:00
individual datetime is: 2022-05-18 18:30:00-05:00
individual datetime is: 2022-06-15 18:30:00-05:00
individual datetime is: 2022-07-20 18:30:00-05:00
individual datetime is: 2022-08-17 18:30:00-05:00
individual datetime is: 2022-09-21 18:30:00-05:00
individual datetime is: 2022-10-19 18:30:00-05:00
individual datetime is: 2022-11-16 18:30:00-06:00
parse_dates_string returns datetime list: [datetime.datetime(2022, 3, 16, 18, 30, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 4, 20, 18, 30, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 5, 18, 18, 30, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 6, 15, 18, 30, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 7, 20, 18, 30, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 8, 17, 18, 30, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 9, 21, 18, 30, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 10, 19, 18, 30, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 11, 16, 18, 30, tzinfo=<DstTzInfo 'America/Chicago' CST-1 day, 18:00:00 STD>)]
discrete/expanded datetime is: 2022-03-16 18:30:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-04-20 18:30:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-05-18 18:30:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-06-15 18:30:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-07-20 18:30:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-08-17 18:30:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-09-21 18:30:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-10-19 18:30:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-11-16 18:30:00-06:00
datetime event is in the past!
Event path is: ./site/data/events/2023-06-04_private-rental.md
named_date and event_name are: 2023-06-04 and private-rental.md
dates string '8:00 am on June 4 2023' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2023-06-04 08:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2023, 6, 4, 8, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2023-06-04 08:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2023-02-19_foundation-private-meeting.md
named_date and event_name are: 2023-02-19 and foundation-private-meeting.md
dates string '4:45 pm on Feb 19 2023' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2023-02-19 16:45:00-06:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2023, 2, 19, 16, 45, tzinfo=<DstTzInfo 'America/Chicago' CST-1 day, 18:00:00 STD>)]
discrete/expanded datetime is: 2023-02-19 16:45:00-06:00
datetime event is in the past!
Event path is: ./site/data/events/2023-05-20_private-rental.md
named_date and event_name are: 2023-05-20 and private-rental.md
dates string '8:00 am on May 20 2023' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2023-05-20 08:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2023, 5, 20, 8, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2023-05-20 08:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2023-04-24_scholarship-meeting.md
named_date and event_name are: 2023-04-24 and scholarship-meeting.md
dates string '5:15 pm on Apr 24 2023' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2023-04-24 17:15:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2023, 4, 24, 17, 15, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2023-04-24 17:15:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2022-05-30_play-rehearsal.md
named_date and event_name are: 2022-05-30 and play-rehearsal.md
dates string '6:00 pm every Tue Wed Thurs from May 31 2022 until Jun 3 2022' successfully parsed
recurrence params are: {'byday': 'TU,WE,TH', 'byhour': '18', 'byminute': '0', 'interval': 1, 'freq': 'weekly', 'dtstart': '20220531', 'until': '20220603'}
incoming recur_string is: DTSTART:20220531
RRULE:BYDAY=TU,WE,TH;BYHOUR=18;BYMINUTE=0;INTERVAL=1;FREQ=WEEKLY;UNTIL=20220603
until is: 20220603
outgoing recur_string is: DTSTART:20220531
RRULE:BYDAY=TU,WE,TH;BYHOUR=18;BYMINUTE=0;INTERVAL=1;FREQ=WEEKLY;UNTIL=20220604
this recurring event string is: DTSTART:20220531
RRULE:BYDAY=TU,WE,TH;BYHOUR=18;BYMINUTE=0;INTERVAL=1;FREQ=WEEKLY;UNTIL=20220604
individual datetime is: 2022-05-31 18:00:00-05:00
individual datetime is: 2022-06-01 18:00:00-05:00
individual datetime is: 2022-06-02 18:00:00-05:00
parse_dates_string returns datetime list: [datetime.datetime(2022, 5, 31, 18, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 6, 1, 18, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 6, 2, 18, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2022-05-31 18:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-06-01 18:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-06-02 18:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2023-05-14_private-rental.md
named_date and event_name are: 2023-05-14 and private-rental.md
dates string '9am on May 14 2023' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2023-05-14 09:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2023, 5, 14, 9, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2023-05-14 09:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2023-03-10_opera-iowa.md
named_date and event_name are: 2023-03-10 and opera-iowa.md
dates string '7:00 pm on Mar 10 2023' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2023-03-10 19:00:00-06:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2023, 3, 10, 19, 0, tzinfo=<DstTzInfo 'America/Chicago' CST-1 day, 18:00:00 STD>)]
discrete/expanded datetime is: 2023-03-10 19:00:00-06:00
datetime event is in the past!
Event path is: ./site/data/events/2022-05-22_private-rental.md
named_date and event_name are: 2022-05-22 and private-rental.md
dates string '9 AM on May 22 2022' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2022-05-22 09:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2022, 5, 22, 9, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2022-05-22 09:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2022-05-11_tama-county-historical-society-live-program-4.md
named_date and event_name are: 2022-05-11 and tama-county-historical-society-live-program-4.md
dates string '7:00 pm on May 11 2022' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2022-05-11 19:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2022, 5, 11, 19, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2022-05-11 19:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2023-06-20_private-rental.md
named_date and event_name are: 2023-06-20 and private-rental.md
dates string '11:00 am on June 20 2023' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2023-06-20 11:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2023, 6, 20, 11, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2023-06-20 11:00:00-05:00
Event path is: ./site/data/events/2022-04-21_tama-county-foundation-award-night.md
named_date and event_name are: 2022-04-21 and tama-county-foundation-award-night.md
dates string '6:00 pm on Apr 21 2022' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2022-04-21 18:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2022, 4, 21, 18, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2022-04-21 18:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2023-03-25_private-rental.md
named_date and event_name are: 2023-03-25 and private-rental.md
dates string '8:00 am on Mar 25 2023' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2023-03-25 08:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2023, 3, 25, 8, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2023-03-25 08:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2022-04-20_private-rental.md
named_date and event_name are: 2022-04-20 and private-rental.md
dates string '9:00 am on Apr 20 2022' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2022-04-20 09:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2022, 4, 20, 9, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2022-04-20 09:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2022-11-06_private-rental.md
named_date and event_name are: 2022-11-06 and private-rental.md
dates string '10 am on Nov 6 2022' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2022-11-06 10:00:00-06:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2022, 11, 6, 10, 0, tzinfo=<DstTzInfo 'America/Chicago' CST-1 day, 18:00:00 STD>)]
discrete/expanded datetime is: 2022-11-06 10:00:00-06:00
datetime event is in the past!
Event path is: ./site/data/events/2023-01-05_cv-meetings-2023.md
named_date and event_name are: 2023-01-05 and cv-meetings-2023.md
dates string '5:00 pm on the 1st Thursday of every month from May 2023 thru Dec 2023' successfully parsed
recurrence params are: {'byday': '1TH', 'byhour': '17', 'byminute': '0', 'interval': 1, 'freq': 'monthly', 'dtstart': '20230501', 'until': '20231201'}
incoming recur_string is: DTSTART:20230501
RRULE:BYDAY=1TH;BYHOUR=17;BYMINUTE=0;INTERVAL=1;FREQ=MONTHLY;UNTIL=20231201
until is: 20231201
outgoing recur_string is: DTSTART:20230501
RRULE:BYDAY=1TH;BYHOUR=17;BYMINUTE=0;INTERVAL=1;FREQ=MONTHLY;UNTIL=20231202
this recurring event string is: DTSTART:20230501
RRULE:BYDAY=1TH;BYHOUR=17;BYMINUTE=0;INTERVAL=1;FREQ=MONTHLY;UNTIL=20231202
individual datetime is: 2023-05-04 17:00:00-05:00
individual datetime is: 2023-06-01 17:00:00-05:00
individual datetime is: 2023-07-06 17:00:00-05:00
individual datetime is: 2023-08-03 17:00:00-05:00
individual datetime is: 2023-09-07 17:00:00-05:00
individual datetime is: 2023-10-05 17:00:00-05:00
individual datetime is: 2023-11-02 17:00:00-05:00
parse_dates_string returns datetime list: [datetime.datetime(2023, 5, 4, 17, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2023, 6, 1, 17, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2023, 7, 6, 17, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2023, 8, 3, 17, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2023, 9, 7, 17, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2023, 10, 5, 17, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2023, 11, 2, 17, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2023-05-04 17:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2023-06-01 17:00:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2023-07-06 17:00:00-05:00
discrete/expanded datetime is: 2023-08-03 17:00:00-05:00
discrete/expanded datetime is: 2023-09-07 17:00:00-05:00
discrete/expanded datetime is: 2023-10-05 17:00:00-05:00
discrete/expanded datetime is: 2023-11-02 17:00:00-05:00
Event path is: ./site/data/events/2022-07-02_play-rehearsal.md
named_date and event_name are: 2022-07-02 and play-rehearsal.md
dates string '7:30 pm every Sat Tue Wed from Jul 1 2022 until Jul 6 2022' successfully parsed
recurrence params are: {'byday': 'SA,TU,WE', 'byhour': '19', 'byminute': '30', 'interval': 1, 'freq': 'weekly', 'dtstart': '20220701', 'until': '20220706'}
incoming recur_string is: DTSTART:20220701
RRULE:BYDAY=SA,TU,WE;BYHOUR=19;BYMINUTE=30;INTERVAL=1;FREQ=WEEKLY;UNTIL=20220706
until is: 20220706
outgoing recur_string is: DTSTART:20220701
RRULE:BYDAY=SA,TU,WE;BYHOUR=19;BYMINUTE=30;INTERVAL=1;FREQ=WEEKLY;UNTIL=20220707
this recurring event string is: DTSTART:20220701
RRULE:BYDAY=SA,TU,WE;BYHOUR=19;BYMINUTE=30;INTERVAL=1;FREQ=WEEKLY;UNTIL=20220707
individual datetime is: 2022-07-02 19:30:00-05:00
individual datetime is: 2022-07-05 19:30:00-05:00
individual datetime is: 2022-07-06 19:30:00-05:00
parse_dates_string returns datetime list: [datetime.datetime(2022, 7, 2, 19, 30, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 7, 5, 19, 30, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 7, 6, 19, 30, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2022-07-02 19:30:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-07-05 19:30:00-05:00
datetime event is in the past!
discrete/expanded datetime is: 2022-07-06 19:30:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2022-12-16_private-rental.md
named_date and event_name are: 2022-12-16 and private-rental.md
dates string '11:00 am on Dec 16 2022' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2022-12-16 11:00:00-06:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2022, 12, 16, 11, 0, tzinfo=<DstTzInfo 'America/Chicago' CST-1 day, 18:00:00 STD>)]
discrete/expanded datetime is: 2022-12-16 11:00:00-06:00
datetime event is in the past!
Event path is: ./site/data/events/2023-01-23_scholarship-meetings.md
named_date and event_name are: 2023-01-23 and scholarship-meetings.md
dates string '5:15 pm on the 4th Monday of every month from Jan 2023 thru April 2023' successfully parsed
recurrence params are: {'byday': '4MO', 'byhour': '17', 'byminute': '15', 'interval': 1, 'freq': 'monthly', 'dtstart': '20230101', 'until': '20230401'}
incoming recur_string is: DTSTART:20230101
RRULE:BYDAY=4MO;BYHOUR=17;BYMINUTE=15;INTERVAL=1;FREQ=MONTHLY;UNTIL=20230401
until is: 20230401
outgoing recur_string is: DTSTART:20230101
RRULE:BYDAY=4MO;BYHOUR=17;BYMINUTE=15;INTERVAL=1;FREQ=MONTHLY;UNTIL=20230402
this recurring event string is: DTSTART:20230101
RRULE:BYDAY=4MO;BYHOUR=17;BYMINUTE=15;INTERVAL=1;FREQ=MONTHLY;UNTIL=20230402
individual datetime is: 2023-01-23 17:15:00-06:00
individual datetime is: 2023-02-27 17:15:00-06:00
individual datetime is: 2023-03-27 17:15:00-05:00
parse_dates_string returns datetime list: [datetime.datetime(2023, 1, 23, 17, 15, tzinfo=<DstTzInfo 'America/Chicago' CST-1 day, 18:00:00 STD>), datetime.datetime(2023, 2, 27, 17, 15, tzinfo=<DstTzInfo 'America/Chicago' CST-1 day, 18:00:00 STD>), datetime.datetime(2023, 3, 27, 17, 15, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2023-01-23 17:15:00-06:00
datetime event is in the past!
discrete/expanded datetime is: 2023-02-27 17:15:00-06:00
datetime event is in the past!
discrete/expanded datetime is: 2023-03-27 17:15:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2022-05-14_private-rental.md
named_date and event_name are: 2022-05-14 and private-rental.md
dates string '9 AM on May 14 2022' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2022-05-14 09:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2022, 5, 14, 9, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2022-05-14 09:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2024-05-18_private-rental-51824.md
named_date and event_name are: 2024-05-18 and private-rental-51824.md
dates string '8am on May 18 2024' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2024-05-18 08:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2024, 5, 18, 8, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2024-05-18 08:00:00-05:00
Event path is: ./site/data/events/2022-07-07_tama-county-tourism-meeting.md
named_date and event_name are: 2022-07-07 and tama-county-tourism-meeting.md
dates string '9:30 am on July 7 2022' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2022-07-07 09:30:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2022, 7, 7, 9, 30, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2022-07-07 09:30:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2022-08-03_tama-county-historical-society-live-program.md
named_date and event_name are: 2022-08-03 and tama-county-historical-society-live-program.md
dates string '7:00 pm on the first Wednesday in August 2022' successfully parsed
recurrence params are: {}
Parsed event['dates'] is a discrete datetime object
Attention: Discrete date '2022-08-03 19:00:00-05:00' will be used.
parse_dates_string returns datetime list: [datetime.datetime(2022, 8, 3, 19, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]
discrete/expanded datetime is: 2022-08-03 19:00:00-05:00
datetime event is in the past!
Event path is: ./site/data/events/2022-06-06_play-rehearsal.md
named_date and event_name are: 2022-06-06 and play-rehearsal.md
dates string '6:00 pm every Mon Tue Thurs from Jun 6 2022 until Jun 10 2022' successfully parsed
recurrence params are: {'byday': 'MO,TU,TH', 'byhour': '18', 'byminute': '0', 'interval': 1, 'freq': 'weekly', 'dtstart': '20220606', 'until': '20220610'}
incoming recur_string is: DTSTART:20220606
RRULE:BYDAY=MO,TU,TH;BYHOUR=18;BYMINUTE=0;INTERVAL=1;FREQ=WEEKLY;UNTIL=20220610
until is: 20220610
outgoing recur_string is: DTSTART:20220606
RRULE:BYDAY=MO,TU,TH;BYHOUR=18;BYMINUTE=0;INTERVAL=1;FREQ=WEEKLY;UNTIL=20220611
this recurring event string is: DTSTART:20220606
RRULE:BYDAY=MO,TU,TH;BYHOUR=18;BYMINUTE=0;INTERVAL=1;FREQ=WEEKLY;UNTIL=20220611
individual datetime is: 2022-06-06 18:00:00-05:00
individual datetime is: 2022-06-07 18:00:00-05:00
individual datetime is: 2022-06-09 18:00:00-05:00
parse_dates_string returns datetime list: [datetime.datetime(2022, 6, 6, 18, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 6, 7, 18, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>), datetime.datetime(2022, 6, 9, 18, 0, tzinfo=<DstTzInfo 'America/Chicago' CDT-1 day, 19:00:00 DST>)]