-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGameReport.py
2078 lines (1719 loc) · 55.8 KB
/
GameReport.py
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# CAVEAT UTILITOR
#
# This file was automatically generated by TatSu.
#
# https://pypi.python.org/pypi/tatsu/
#
# Any changes you make to it will be overwritten the next time
# the file is generated.
from __future__ import print_function, division, absolute_import, unicode_literals
import sys
from tatsu.buffering import Buffer
from tatsu.parsing import Parser
from tatsu.parsing import tatsumasu
from tatsu.util import re, generic_main # noqa
KEYWORDS = {} # type: ignore
class GameReportBuffer(Buffer):
def __init__(
self,
text,
whitespace=None,
nameguard=None,
comments_re=None,
eol_comments_re=None,
ignorecase=None,
namechars='',
**kwargs
):
super(GameReportBuffer, self).__init__(
text,
whitespace=whitespace,
nameguard=nameguard,
comments_re=comments_re,
eol_comments_re=eol_comments_re,
ignorecase=ignorecase,
namechars=namechars,
**kwargs
)
class GameReportParser(Parser):
def __init__(
self,
whitespace=None,
nameguard=None,
comments_re=None,
eol_comments_re=None,
ignorecase=None,
left_recursion=True,
parseinfo=True,
keywords=None,
namechars='',
buffer_class=GameReportBuffer,
**kwargs
):
if keywords is None:
keywords = KEYWORDS
super(GameReportParser, self).__init__(
whitespace=whitespace,
nameguard=nameguard,
comments_re=comments_re,
eol_comments_re=eol_comments_re,
ignorecase=ignorecase,
left_recursion=left_recursion,
parseinfo=parseinfo,
keywords=keywords,
namechars=namechars,
buffer_class=buffer_class,
**kwargs
)
@tatsumasu()
def _pre_(self): # noqa
self._token('<pre>')
@tatsumasu()
def _pre_close_(self): # noqa
self._token('</pre>')
@tatsumasu()
def _tr_(self): # noqa
self._token('<tr>')
@tatsumasu()
def _tr_close_(self): # noqa
self._token('</tr>')
@tatsumasu()
def _td_(self): # noqa
self._token('<td valign="top">')
@tatsumasu()
def _td_close_(self): # noqa
self._token('</td>')
@tatsumasu()
def _p_(self): # noqa
self._token('<p class="bnorm">')
@tatsumasu()
def _p_norm_(self): # noqa
self._token('<p class="norm">')
@tatsumasu()
def _p_close_(self): # noqa
self._token('</p>')
@tatsumasu()
def _table_(self): # noqa
self._pattern('<table[^>]*>')
@tatsumasu()
def _table_close_(self): # noqa
self._token('</table>')
@tatsumasu()
def _anything_but_font_close_(self): # noqa
self._pattern('.*(?=<\\/font>)')
@tatsumasu()
def _font_size_2_(self): # noqa
self._token('<font size="2">')
@tatsumasu()
def _font_white_(self): # noqa
self._token('<font color="#000000">')
@tatsumasu()
def _font_red_(self): # noqa
self._token('<font color="#FF0000">')
@tatsumasu()
def _font_close_(self): # noqa
self._token('</font>')
@tatsumasu()
def _short_name_(self): # noqa
self._pattern("[A-Z]\\.[A-Za-z\\*\\-\\'\\s]+")
@tatsumasu()
def _short_name_no_pos_(self): # noqa
self._pattern("[A-Z]\\.[A-Za-z\\s\\*\\-\\']+[A-Za-z](?= (1B|1|2B|2|3B|3|SS|S|LF|L|CF|C|RF|R|PR|DH|D|PH|P))")
@tatsumasu()
def _short_name_no_result_(self): # noqa
self._pattern("[A-Z]\\.[A-Za-z\\s\\*\\-\\']+(?= (WIN|W|LOSS|L|HOLD|H|SAVE|S|BS|B|[0-9]))")
@tatsumasu()
def _last_name_(self): # noqa
self._pattern("[A-Za-z\\-\\'\\s\\*]+")
@tatsumasu()
def _last_name_no_in_(self): # noqa
self._pattern("[A-Za-z\\-\\'\\s\\*]+(?= In)")
@tatsumasu()
def _full_name_(self): # noqa
self._pattern("[A-Za-z\\.\\-\\'\\s\\*]+")
@tatsumasu()
def _full_name_no_injured_(self): # noqa
self._pattern("[A-Za-z\\.\\s\\-\\'\\*]+(?= INJURED)")
@tatsumasu()
def _full_name_no_gem_event_(self): # noqa
self._pattern("[A-Za-z\\.\\s\\-\\'\\*]+(?= (robbed|blocked|turns))")
@tatsumasu()
def _full_name_no_of_(self): # noqa
self._pattern("[A-Za-z\\.\\s\\-\\'\\*]+(?= of)")
@tatsumasu()
def _nickname_no_sep_(self): # noqa
self._pattern("[A-Za-z0-9\\'\\s]+(?=(\\:|\\.|\\s+AB|\\s+IP|\\())")
@tatsumasu()
def _ws_(self): # noqa
self._pattern('\\s+')
@tatsumasu()
def _phrase_(self): # noqa
self._pattern("[A-Za-z0-9\\'\\s\\.\\/]*")
@tatsumasu()
def _position_(self): # noqa
with self._choice():
with self._option():
self._token('1B')
with self._option():
self._token('1')
with self._option():
self._token('2B')
with self._option():
self._token('2')
with self._option():
self._token('3B')
with self._option():
self._token('3')
with self._option():
self._token('SS')
with self._option():
self._token('S')
with self._option():
self._token('LF')
with self._option():
self._token('L')
with self._option():
self._token('CF')
with self._option():
self._token('C')
with self._option():
self._token('RF')
with self._option():
self._token('R')
with self._option():
self._token('PR')
with self._option():
self._token('DH')
with self._option():
self._token('D')
with self._option():
self._token('PH')
with self._option():
self._token('P')
self._error('no available options')
@tatsumasu()
def _parenthesized_position_(self): # noqa
self._token('(')
self._position_()
self.name_last_node('@')
self._token(')')
@tatsumasu()
def _year_(self): # noqa
self._pattern('[0-9]{4}')
@tatsumasu()
def _mdy_(self): # noqa
self._pattern('[0-9]{1,2}\\/[0-9]{1,2}\\/[0-9]{4}')
@tatsumasu()
def _dash_(self): # noqa
self._token('-')
@tatsumasu()
def _decimal_number_(self): # noqa
self._pattern('[0-9]?\\.?[0-9]+')
@tatsumasu()
def _not_a_number_(self): # noqa
self._token('----')
@tatsumasu()
def _partial_inning_number_(self): # noqa
self._pattern('([12]{1}\\/3){0,1}')
@tatsumasu()
def _whole_number_(self): # noqa
self._pattern('[0-9]+')
@tatsumasu()
def _whole_number_comma_(self): # noqa
self._pattern('[0-9,]+')
@tatsumasu()
def _optionaless_(self): # noqa
self._pattern('s?')
@tatsumasu()
def _whitespace_(self): # noqa
self._pattern('\\s+')
@tatsumasu()
def _weekday_long_(self): # noqa
with self._choice():
with self._option():
self._token('Sunday')
with self._option():
self._token('Monday')
with self._option():
self._token('Tuesday')
with self._option():
self._token('Wednesday')
with self._option():
self._token('Thursday')
with self._option():
self._token('Friday')
with self._option():
self._token('Saturday')
self._error('no available options')
@tatsumasu()
def _month_long_(self): # noqa
with self._choice():
with self._option():
self._token('January')
with self._option():
self._token('February')
with self._option():
self._token('March')
with self._option():
self._token('April')
with self._option():
self._token('May')
with self._option():
self._token('June')
with self._option():
self._token('July')
with self._option():
self._token('August')
with self._option():
self._token('September')
with self._option():
self._token('October')
with self._option():
self._token('November')
with self._option():
self._token('December')
self._error('no available options')
@tatsumasu()
def _duration_(self): # noqa
self._whole_number_()
self.name_last_node('hours')
self._token(':')
self._whole_number_()
self.name_last_node('minutes')
self.ast._define(
['hours', 'minutes'],
[]
)
@tatsumasu()
def _day_night_time_(self): # noqa
with self._choice():
with self._option():
self._token('Day')
with self._option():
self._token('Night')
self._error('no available options')
@tatsumasu()
def _weather_(self): # noqa
with self._choice():
with self._option():
self._token('Good')
with self._option():
self._token('Average')
with self._option():
self._token('Bad')
self._error('no available options')
@tatsumasu()
def _long_date_(self): # noqa
self._weekday_long_()
self.name_last_node('weekday')
self._token(',')
self._month_long_()
self.name_last_node('month')
self._whole_ordinal_()
self.name_last_node('day')
self._whole_number_()
self.name_last_node('year')
self.ast._define(
['day', 'month', 'weekday', 'year'],
[]
)
@tatsumasu()
def _whole_ordinal_(self): # noqa
self._whole_number_()
self.name_last_node('@')
with self._group():
with self._choice():
with self._option():
self._token('st')
with self._option():
self._token('nd')
with self._option():
self._token('rd')
with self._option():
self._token('th')
self._error('no available options')
@tatsumasu()
def _innings_pitched_number_(self): # noqa
self._whole_number_()
self.name_last_node('whole')
with self._optional():
self._partial_inning_number_()
self.name_last_node('part')
self.ast._define(
['part', 'whole'],
[]
)
@tatsumasu()
def _half_inning_(self): # noqa
with self._group():
with self._choice():
with self._option():
self._token('Top')
with self._option():
self._token('Bot')
self._error('no available options')
self.name_last_node('half')
self._whole_ordinal_()
self.name_last_node('number')
self.ast._define(
['half', 'number'],
[]
)
@tatsumasu()
def _parenthesized_whole_ordinal_(self): # noqa
self._token('(')
self._whole_ordinal_()
self.name_last_node('@')
with self._optional():
self._token(')')
@tatsumasu()
def _boxscore_td_start_(self): # noqa
self._token('<td valign="top">')
@tatsumasu()
def _boxscore_p_start_(self): # noqa
self._token('<p class="bnorm">')
@tatsumasu()
def _boxscore_spacer_(self): # noqa
self._token('<font color="#000000">')
self._pattern('\\s*')
self._token('</font>')
@tatsumasu()
def _boxscore_header_(self): # noqa
self._boxscore_td_start_()
self._pre_()
self._boxscore_p_start_()
@tatsumasu()
def _boxscore_matchup_(self): # noqa
with self._optional():
self._token('BOXSCORE:')
self._phrase_()
self.name_last_node('phrase')
self.ast._define(
['phrase'],
[]
)
@tatsumasu()
def _boxscore_matchup_header_(self): # noqa
self._token('<font color="#FF0000">')
self._boxscore_matchup_()
self.name_last_node('@')
self._token('</font>')
@tatsumasu()
def _boxscore_hitting_stat_label_(self): # noqa
with self._choice():
with self._option():
self._token('AB')
with self._option():
self._token('R')
with self._option():
self._token('H')
with self._option():
self._token('RBI')
with self._option():
self._token('AVG')
self._error('no available options')
@tatsumasu()
def _boxscore_hitting_header_(self): # noqa
self._token('<font color="#FF0000">')
self._phrase_()
self.name_last_node('phrase')
self._token('</font>')
self.ast._define(
['phrase'],
[]
)
@tatsumasu()
def _boxscore_hitting_sub_annotation_(self): # noqa
self._pattern('[A-Z]?')
@tatsumasu()
def _boxscore_hitting_substitution_(self): # noqa
self._boxscore_hitting_sub_annotation_()
self.name_last_node('@')
self._token('-')
@tatsumasu()
def _boxscore_hitting_position_(self): # noqa
def sep0():
self._token(',')
def block0():
self._position_()
self._gather(block0, sep0)
@tatsumasu()
def _boxscore_hitting_stat_line_(self): # noqa
def block1():
self._boxscore_hitting_substitution_()
self._closure(block1)
self.name_last_node('substitution')
self._short_name_no_pos_()
self.name_last_node('player_name')
self._boxscore_hitting_position_()
self.name_last_node('positions')
def block5():
with self._group():
with self._choice():
with self._option():
self._decimal_number_()
with self._option():
self._not_a_number_()
self._error('no available options')
self._closure(block5)
self.name_last_node('statistics')
self.ast._define(
['player_name', 'positions', 'statistics', 'substitution'],
[]
)
@tatsumasu()
def _boxscore_hitting_player_line_(self): # noqa
self._token('<font color="#000000">')
def block1():
self._boxscore_hitting_stat_line_()
self._closure(block1)
self.name_last_node('players')
self._token('</font>')
self.ast._define(
['players'],
[]
)
@tatsumasu()
def _dashes_(self): # noqa
self._pattern('[\\-]{2,3}')
@tatsumasu()
def _boxscore_hitting_separator_(self): # noqa
self._token('<font color="#000000">')
self._pattern('[\\-\\s]*')
self._token('</font>')
@tatsumasu()
def _boxscore_hitting_total_line_(self): # noqa
self._token('Totals')
def block1():
self._whole_number_()
self._closure(block1)
self.name_last_node('totals')
self.ast._define(
['totals'],
[]
)
@tatsumasu()
def _boxscore_hitting_totals_(self): # noqa
self._token('<font color="#FF0000">')
def block1():
self._boxscore_hitting_total_line_()
self._closure(block1)
self.name_last_node('@')
self._token('</font>')
@tatsumasu()
def _boxscore_hitting_(self): # noqa
self._boxscore_hitting_header_()
self.name_last_node('header')
def block2():
self._boxscore_hitting_player_line_()
self._closure(block2)
self.name_last_node('player_stats')
self._boxscore_hitting_separator_()
self._boxscore_hitting_totals_()
self.name_last_node('team_stats')
self.ast._define(
['header', 'player_stats', 'team_stats'],
[]
)
@tatsumasu()
def _boxscore_run_substitution_(self): # noqa
self._token('<font color="#000000">')
with self._optional():
self._boxscore_hitting_substitution_()
self.name_last_node('substitution')
self._token('Pinch')
self._token('Ran')
self.name_last_node('type')
self._token('For')
self._last_name_no_in_()
self.name_last_node('player')
self._token('In')
self._whole_ordinal_()
self.name_last_node('inning')
self._token('Inning')
self._token('</font>')
self.ast._define(
['inning', 'player', 'substitution', 'type'],
[]
)
@tatsumasu()
def _boxscore_hit_substitution_(self): # noqa
self._token('<font color="#000000">')
with self._optional():
self._boxscore_hitting_substitution_()
self.name_last_node('substitution')
self._token('Pinch')
self._token('Hit')
self.name_last_node('type')
self._token('For')
self._last_name_no_in_()
self.name_last_node('player')
self._token('In')
self._whole_ordinal_()
self.name_last_node('inning')
self._token('Inning')
self._token('</font>')
self.ast._define(
['inning', 'player', 'substitution', 'type'],
[]
)
@tatsumasu()
def _boxscore_defensive_substitution_(self): # noqa
self._token('<font color="#000000">')
with self._optional():
self._boxscore_hitting_substitution_()
self.name_last_node('substitution')
self._token('Subbed')
self._token('Defensively')
self.name_last_node('type')
self._parenthesized_position_()
self.name_last_node('position')
self._token('For')
self._last_name_no_in_()
self.name_last_node('player')
self._token('In')
self._whole_ordinal_()
self.name_last_node('inning')
self._token('Inning')
self._token('</font>')
self.ast._define(
['inning', 'player', 'position', 'substitution', 'type'],
[]
)
@tatsumasu()
def _boxscore_dh_substitution_(self): # noqa
self._token('<font color="#000000">')
with self._optional():
self._boxscore_hitting_substitution_()
self.name_last_node('substitution')
self._token('Subbed')
self._parenthesized_position_()
self.name_last_node('position')
self._token('For')
self._last_name_no_in_()
self.name_last_node('player')
self._token('In')
self._whole_ordinal_()
self.name_last_node('inning')
self._token('Inning')
self._token('</font>')
self.ast._define(
['inning', 'player', 'position', 'substitution'],
[]
)
@tatsumasu()
def _boxscore_substitution_(self): # noqa
with self._choice():
with self._option():
self._boxscore_run_substitution_()
with self._option():
self._boxscore_hit_substitution_()
with self._option():
self._boxscore_defensive_substitution_()
with self._option():
self._boxscore_dh_substitution_()
self._error('no available options')
@tatsumasu()
def _boxscore_injury_duration_(self): # noqa
self._token('(for ')
self._whole_number_()
self.name_last_node('@')
self._token('more')
with self._group():
with self._choice():
with self._option():
self._token('game)')
with self._option():
self._token('games)')
self._error('no available options')
@tatsumasu()
def _boxscore_injury_(self): # noqa
self._token('<font color="#000000">')
self._token('INJURY:')
self._full_name_no_injured_()
self.name_last_node('name')
self._token('INJURED')
self._boxscore_injury_duration_()
self.name_last_node('duration')
self._token('in')
self._whole_ordinal_()
self.name_last_node('inning')
self._token('inning')
self._token('</font>')
self.ast._define(
['duration', 'inning', 'name'],
[]
)
@tatsumasu()
def _boxscore_team_inning_runs_(self): # noqa
self._pattern('[0-9]+')
@tatsumasu()
def _boxscore_team_totals_(self): # noqa
self._whole_number_()
self.name_last_node('runs')
self._whole_number_()
self.name_last_node('hits')
self._whole_number_()
self.name_last_node('errors')
self.ast._define(
['errors', 'hits', 'runs'],
[]
)
@tatsumasu()
def _boxscore_team_(self): # noqa
self._token('<font color="#000000">')
self._nickname_no_sep_()
self.name_last_node('nickname')
self._pattern('\\.*')
def block2():
self._boxscore_team_inning_runs_()
self._closure(block2)
self.name_last_node('runs')
self._token('-')
self._boxscore_team_totals_()
self.name_last_node('totals')
self._token('</font>')
self.ast._define(
['nickname', 'runs', 'totals'],
[]
)
@tatsumasu()
def _boxscore_pitching_stat_label_(self): # noqa
with self._choice():
with self._option():
self._token('IP')
with self._option():
self._token('H')
with self._option():
self._token('R')
with self._option():
self._token('ER')
with self._option():
self._token('BB')
with self._option():
self._token('SO')
with self._option():
self._token('HR')
with self._option():
self._token('PC')
with self._option():
self._token('ERA')
with self._option():
self._token('SCORESHEET')
self._error('no available options')
@tatsumasu()
def _record_(self): # noqa
self._whole_number_()
self.name_last_node('wins')
self._token('-')
self._whole_number_()
self.name_last_node('losses')
self.ast._define(
['losses', 'wins'],
[]
)
@tatsumasu()
def _parenthesized_record_(self): # noqa
self._token('(')
self._record_()
self.name_last_node('@')
with self._optional():
self._token(')')
@tatsumasu()
def _boxscore_pitching_header_team_(self): # noqa
self._token('<font color="#FF0000">')
self._nickname_no_sep_()
self.name_last_node('nickname')
with self._optional():
self._parenthesized_record_()
self.name_last_node('record')
def block3():
self._boxscore_pitching_stat_label_()
self._closure(block3)
self.name_last_node('headers')
self._token('</font>')
self.ast._define(
['headers', 'nickname', 'record'],
[]
)
@tatsumasu()
def _boxscore_pitching_result_win_(self): # noqa
self._token('WIN')
self.name_last_node('@')
with self._optional():
self._parenthesized_record_()
@tatsumasu()
def _boxscore_pitching_result_win_abv_(self): # noqa
self._token('W')
self.name_last_node('@')
self._parenthesized_record_()
@tatsumasu()
def _boxscore_pitching_result_loss_(self): # noqa
self._token('LOSS')
self.name_last_node('@')
with self._optional():
self._parenthesized_record_()
@tatsumasu()
def _boxscore_pitching_result_loss_abv_(self): # noqa
self._token('L')
self.name_last_node('@')
self._parenthesized_record_()
@tatsumasu()
def _boxscore_pitching_result_hold_(self): # noqa
self._token('HOLD')
self.name_last_node('@')
self._parenthesized_whole_ordinal_()
@tatsumasu()
def _boxscore_pitching_result_hold_abv_(self): # noqa
self._token('H')
self.name_last_node('@')
self._parenthesized_whole_ordinal_()
@tatsumasu()
def _boxscore_pitching_result_save_(self): # noqa
self._token('SAVE')
self.name_last_node('@')
self._parenthesized_whole_ordinal_()
@tatsumasu()
def _boxscore_pitching_result_save_abv_(self): # noqa
self._token('S')
self.name_last_node('@')
self._parenthesized_whole_ordinal_()
@tatsumasu()
def _boxscore_pitching_result_blown_save_(self): # noqa
self._token('BS')
self.name_last_node('@')
self._parenthesized_whole_ordinal_()
@tatsumasu()
def _boxscore_pitching_result_blown_save_abv_(self): # noqa
self._token('B')
self.name_last_node('@')
self._parenthesized_whole_ordinal_()
@tatsumasu()
def _boxscore_pitching_result_stat_(self): # noqa
with self._choice():
with self._option():
self._boxscore_pitching_result_loss_()
with self._option():
self._boxscore_pitching_result_win_()
with self._option():
self._boxscore_pitching_result_win_abv_()
with self._option():
self._boxscore_pitching_result_loss_abv_()
with self._option():
self._boxscore_pitching_result_hold_()
with self._option():
self._boxscore_pitching_result_hold_abv_()
with self._option():
self._boxscore_pitching_result_save_()
with self._option():
self._boxscore_pitching_result_save_abv_()
with self._option():
self._boxscore_pitching_result_blown_save_()
with self._option():
self._boxscore_pitching_result_blown_save_abv_()
self._error('no available options')
@tatsumasu()
def _boxscore_pitching_stat_line_(self): # noqa
self._token('<font color="#000000">')
self._short_name_no_result_()
self.name_last_node('player_name')
def block2():
self._boxscore_pitching_result_stat_()
self._closure(block2)
self.name_last_node('result_stats')
self._innings_pitched_number_()
self.name_last_node('ip')
def block5():
with self._group():
with self._choice():
with self._option():
self._decimal_number_()
with self._option():
self._not_a_number_()
self._error('no available options')
self._closure(block5)
self.name_last_node('statistics')
with self._optional():
def block8():
self._scoresheet_index_()
self._closure(block8)
self.name_last_node('scoresheet')
self._token('</font>')
self.ast._define(
['ip', 'player_name', 'result_stats', 'scoresheet', 'statistics'],
[]
)
@tatsumasu()
def _scoresheet_index_(self): # noqa
self._pattern('[A-Z]{1}[0-9]+')
@tatsumasu()
def _boxscore_pitching_total_line_(self): # noqa
self._token('<font color="#FF0000">')
self._token('Totals')
self._innings_pitched_number_()
self.name_last_node('ip')
def block2():
self._decimal_number_()
self._closure(block2)
self.name_last_node('statistics')
self._token('</font>')
self.ast._define(
['ip', 'statistics'],
[]