Source code for nhlscrapi.scrapr.shotsummrep

from nhlscrapi.scrapr.reportloader import ReportLoader


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