Source code for nhlscrapi.scrapr.eventsummrep

from nhlscrapi.scrapr.reportloader import ReportLoader


class EventSummRep(ReportLoader):
[docs] """Retrieve and load event summary report from nhl.com""" def __init__(self, game_key): super(EventSummRep, self).__init__(game_key, 'event_summary') def parse(self):
[docs] r = super(EventSummRep, self).parse() return r and False