Example #1
0
def getScore(match):
    page = urllib.urlopen("http://isburning.me/srobomatches/%s.txt" % match)

    for line in page.readlines():
        team, string = line.strip().split(" ")
        score = parser.fsm(string)
        yield (team, score, string)
Example #2
0
def getActualResult(string):
    return parser.fsm(string)
Example #3
0
def getActualResult(string):
	return parser.fsm(string)