Frequently Asked Questions
What is the point of Boxscore Junkie?
The point is to have a quick and clean look at live MLB action. I don't know the inner workings of ESPN.com or CBSSportsline.com, but it just feels like their live boxscores are just a touch slow. They have to pad their pages with ads and they present lots of other data to cross market the rest of the sports world, not to mention their own website. They've tried to implement AJAX to allow refreshes to occur as frequently as possible, but it still felt slow. After discovering the real-time data source, I had to try my hand at creating a live game site to see if I can make it faster.
My next task is to record all of this data for my own analysis and to create tools for people to use to make their own judgements about players. This is really for hardcore fans that like looking at stats to determine trends, understand strengths and weaknesses of players, and go a bit deeper than what a traditional boxscore will provide.
Where did you get the idea for the site?
I was inspired by the use of Sportvision's Pitch f/x system, which has been implemented in MLB to track pitch data regarding location and movement. As a monster baseball fan and a web developer, I was drawn to the possibilities of creating a site to utilize this information. As I was discovering how the Pitch f/x data was recorded and what it meant through blogs and baseball sites, Google released their App Engine product where anyone could create an application and host it using their service. I always look for new things to learn, so I decided to teach myself Python and create a basic site leveraging this real-time data being generated about my favorite sport.
How does the site work?
This site retrieves XML data from a MLB domain which is basically acting as a simple web service. The application marshalls and unmarshalls the XML into objects and formats the object data into HTML templates. The key here is that the data is updated very frequently, so the application allows you to set various refresh rates so you can watch all the MLB games at once, or follow a particular game.
What technologies run Boxscore Junkie?
Boxscore Junkie is hosted through the Google App Engine (GAE) and uses Python libraries, some Google APIs, and Django Templates.
