/usr/lib/python2.7/dist-packages/MLBviewer/mlbStats.py is in mlbviewer 2015.sf.1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #!/usr/bin/env python
import json
import urllib2
import datetime
import httplib
import time
from mlbError import *
from mlbConstants import *
from mlbHttp import MLBHttp
class MLBStats:
def __init__(self,cfg=None):
self.data = []
self.mycfg = cfg
self.last_update = ""
self.date = datetime.datetime.now()
self.season = self.date.year
self.http = MLBHttp(accept_gzip=True)
if self.mycfg is None:
self.type = 'pitching'
self.sort = 'era'
self.league = 'MLB'
self.sort_order = 'default'
self.team = 0
self.season = self.date.year
self.player_pool = 'QUALIFIER'
def getBirthdate(self,player_id):
bUrl = 'http://mlb.mlb.com/lookup/json/named.player_info.bam?sport_code=%27mlb%27&player_id=' + str(player_id)
try:
rsp = self.http.getUrl(bUrl)
except urllib2.URLError:
self.error_str = "UrlError: Could not retrieve statistics"
raise MLBUrlError,bUrl
try:
tmp = json.loads(rsp)
except Exception,error:
raise MLBUrlError,bUrl
bdate_str=tmp['player_info']['queryResults']['row']['birth_date']
ddate_str=tmp['player_info']['queryResults']['row']['death_date']
out = []
ts=time.strptime(bdate_str,'%Y-%m-%dT00:00:00')
out.append((ts.tm_year,ts.tm_mon,ts.tm_mday))
if ddate_str != "":
ts=time.strptime(ddate_str,'%Y-%m-%dT00:00:00')
out.append((ts.tm_year,ts.tm_mon,ts.tm_mday))
else:
out.append(None)
return out
def prepareStatsUrl(self):
self.url = 'http://mlb.mlb.com/pubajax/wf/flow/stats.splayer?page_type=SortablePlayer&game_type=%27R%27&player_pool=QUALIFIER&sport_code=%27mlb%27&results=1000&recSP=1&recPP=50'
self.league = self.mycfg.get('league')
if self.league.upper() in ( 'NL' , 'AL' ):
self.url += '&league_code=%%27%s%%27' % self.league.upper()
self.type = self.mycfg.get('stat_type')
self.sort = self.mycfg.get('sort_column')
self.url += '&stat_type=%s&sort_column=%%27%s%%27' % (self.type,
self.sort)
self.season_type = self.mycfg.get('season_type')
if self.season_type == 'ANY':
self.url += '&season=%s' % self.mycfg.get('season')
else:
self.url += '&season='
self.url += '&season_type=%s' % self.season_type
self.sort_order = int(self.mycfg.get('sort_order'))
if self.sort in ( 'era', 'whip', 'l' ) and self.sort_order == 0:
self.url += '&sort_order=%27asc%27'
elif self.sort_order == 0:
self.url += '&sort_order=%27desc%27'
else:
self.url += '&sort_order=%%27%s%%27' % STATS_SORT_ORDER[int(self.sort_order)]
self.team = self.mycfg.get('sort_team')
if int(self.team) > 0:
self.url += '&team_id=%s' % self.team
self.url = self.url.replace('QUALIFIER','ALL')
self.active_sw = int(self.mycfg.get('active_sw'))
if self.active_sw:
self.url += '&active_sw=%27Y%27'
def prepareTripleCrownUrl(self):
if self.type == 'pitching':
self.url = 'http://mlb.mlb.com/lookup/json/named.leader_pitching_repeater.bam?results=5&season=2014&game_type=%27R%27&leader_pitching_repeater.col_in=era&leader_pitching_repeater.col_in=w&leader_pitching_repeater.col_in=so&leader_pitching_repeater.col_in=name_last&leader_pitching_repeater.col_in=team_abbrev&leader_pitching_repeater.col_in=player_id&sort_column=%27era%27&sort_column=%27w%27&sort_column=%27so%27&sport_code=%27mlb%27'
else:
self.url = 'http://mlb.mlb.com/lookup/json/named.leader_hitting_repeater.bam?results=5&season=2014&game_type=%27R%27&leader_hitting_repeater.col_in=avg&leader_hitting_repeater.col_in=hr&leader_hitting_repeater.col_in=rbi&leader_hitting_repeater.col_in=name_last&leader_hitting_repeater.col_in=team_abbrev&leader_hitting_repeater.col_in=player_id&sort_column=%27avg%27&sort_column=%27hr%27&sort_column=%27rbi%27&sport_code=%27mlb%27'
def preparePlayerUrl(self):
self.url = 'http://mlb.mlb.com/lookup/json/named.sport_%s_composed.bam?' % self.type
self.url += 'game_type=%27R%27&sport_code=%27mlb%27&sport_code=%27aaa%27&sport_code=%27aax%27&sport_code=%27afa%27&sport_code=%27afx%27&sport_code=%27asx%27&sport_code=%27rok%27&sort_by=%27season_asc%27'
self.url += '&sport_%s_composed.season=%s' % (self.date.year, self.type)
self.url += '&player_id=%s' % self.player
def getStatsData(self):
#raise Exception,repr(self.mycfg.data)
self.type = self.mycfg.get('stat_type')
self.triple = int(self.mycfg.get('triple_crown'))
self.player = int(self.mycfg.get('player_id'))
if self.player > 0:
self.preparePlayerUrl()
elif self.triple:
self.prepareTripleCrownUrl()
else:
self.prepareStatsUrl()
try:
rsp = self.http.getUrl(self.url)
except urllib2.URLError:
self.error_str = "UrlError: Could not retrieve statistics"
raise MLBUrlError,self.url
try:
self.json = json.loads(rsp)
except Exception,error:
raise MLBUrlError,self.url
#raise MLBJsonError,error
if self.player > 0:
self.data = self.parsePlayerStats()
elif self.triple:
self.parseTripleStats()
else:
self.data = self.parseStats()
def parsePlayerStats(self):
out = []
if self.type == 'hitting':
results = self.json['sport_hitting_composed']['sport_hitting_tm']
try:
totals = self.json['sport_hitting_composed']['sport_career_hitting']['queryResults']['row'][0]
except KeyError:
totals = self.json['sport_hitting_composed']['sport_career_hitting']['queryResults']['row']
self.last_update = results['queryResults']['created']
# else pitchers
else:
results = self.json['sport_pitching_composed']['sport_pitching_tm']
try:
totals = self.json['sport_pitching_composed']['sport_career_pitching']['queryResults']['row'][0]
except KeyError:
totals = self.json['sport_pitching_composed']['sport_career_pitching']['queryResults']['row']
self.last_update = results['queryResults']['created']
if results['queryResults']['totalSize'] == '1':
# json doesn't make single row as list so tuple it for same effect
results['queryResults']['row'] = ( results['queryResults']['row'], )
for year in results['queryResults']['row']:
# neat but confusing to have minors mixed in
if year['sport_code'] == 'mlb':
out.append(year)
totals['season'] = 'Tot'
totals['team_abbrev'] = 'MLB'
totals['team_id'] = 0
( totals['birthdate'],
totals['deathdate'] ) = self.getBirthdate(self.player)
out.append(totals)
return out
def parseStats(self):
out = []
self.last_update = self.json['stats_sortable_player']['queryResults']['created'] + '-04:00'
try:
for player in self.json['stats_sortable_player']['queryResults']['row']:
out.append(player)
except KeyError:
return out
return out
def parseTripleStats(self):
out = []
|