Codeception

Musings & ramblings of a Pythonista

Cricinfo api (unofficial) for Python

Recently I started developing a Python library for accessing live information from ESPN Cricinfo like live scores, innings details and player profiles. Currently, it only fetches live match information using a simple Python iterator.

# instantiate
matches = CricInfo()
# iterate though matches
for match in matches:
    # match title
    print match.title
    # a short desciption for the match
    print match.description
    # url to live scorecard
    print match.link
    print match.guid

I wish ...

Continue Reading...